HN user

Corvus

135 karma
Posts3
Comments64
View on HN

Google Pixel watch. I had a Garmin fitness tracker and a Pixel phone, and had difficulty transferring my fitness metrics to Sheets. So why not combine the two?

I'll tell you why; the Pixel watch manages to combine all the disadvantages of a fitness tracker and a smartphone. Now I have to log in to my watch, the display is too small to read anything on, and I can't increase the font size. The Android fitness app is a walled garden inside a walled garden, and I still can't transfer my metrics to Sheets.

For over a year there was a fake trail that went through a mountain in Google Maps from a ski hill to a waterfall. Local SAR would regularly have to rescue people trying to take the trail; I think at least one person was killed there.

People had long been trying to remove the fake trail from Maps, contacting Google, posting signs at the trailhead saying there was no trail to the waterfall, all to no avail. The fake trail was at last removed in November 2023: https://www.cbc.ca/news/canada/british-columbia/google-maps-...

A much-better “Kitchen of the Future” article was posted on TreeHugger in 2021. Decrying kitchen designs by people who don't cook, the article referred to a lesson by the USDA about applying experience from the US Army to home kitchens; the video is available at https://youtu.be/2N9RCQjPqh4.

It introduces the now-common idea of a “work triangle”; organizing everything needed to cook a meal around a single station.

We had a situation like that once because of circular dependencies; services that needed another service to start. “How is that possible?” you ask. Code reviews; “take that code out and get the data from an existing service.”

We hard-coded data into a base service, pushed it to production, restarted services that depended on it, then services that depended on those services, etc.

There is a rather obscure book titled "If Hemingway Wrote Javascript" by Angus Croll https://www.goodreads.com/book/show/21487480-if-hemingway-wr... that contains literary reviews and source code in a variety of programming languages.

It's hard to describe this book; look at an excerpt at https://blog.honeypot.io/if-hemingway-wrote-javascript/. The source code actually runs and really does capture the writing style and idioms of the purported writers. I remember a factorial program by "Richard Feynman" that used numeric approximations that was just brilliant.

There was a discussion about this a while back at a Tetra Society meeting; http://www.tetrasociety.org/.

One idea I thought promising was audio games and household assistance delivered through devices like Google Home and Amazon Echo. They could be programmed and controlled though a natural-language API like Inform7, which is used for interactive fiction.

I do not know of any working tools for developing these, but I heard of a BBC experiment called "The Inspection Chamber" that allows playing audio games solely through voice. There is an article at https://www.bbc.co.uk/taster/pilots/inspection-chamber

One of the most memorable experiences of my life was building a small 2D RPG named Dungeon Of Despair from the book "Game Scripting Mastery" https://books.google.ca/books/about/Game_Scripting_Mastery.h... by Alex Varanese.

The game teaches you to build a simple game for Win32 from scratch. The graphics would be pretty dated now, but the scripting system for enemy AI and quests is a Turing-complete programming language. I learned more from that book than from my compiler course in university.