HN user

ne8il

60 karma
Posts0
Comments29
View on HN
No posts found.

Let's say I'm a manufacturer of widgets, and instead of buying an off-the-shelf CRM I decide to have the resident IT whiz on the team vibe-code a custom solution for our needs. Now I'm a manufacturer of widgets AND a CRM SaaS shop, responsible for software maintenance/deployment/reliability/feature roadmap/bug remediation. I guess the idea is that AI agents will take care of all of those things too - to which I guess my perspective is "good luck! I hope that works out."

I just finished a green wood post-and-rung chairmaking class last week. The posts are split out and steam-bent, while the rungs are dried in a makeshift kiln (a box with a heat lamp). The posts are then above ambient humidity, while the rungs are dried below it. As the entire chair equals out, the posts will dry out and compress onto the tenons of the rungs, which will swell up a bit and lock in place. We did use glue but you don't really need to. Neat stuff.

The article in question is specifically about using Next.js to do what you are saying (generate static HTML files from a set of React components). He also mentions using Astro for it.

I've been on Qulipta (a CGRP drug) daily for about a year now. It started working pretty much immediately, and I cannot think of a single side-effect in use, other than that you will have a withdrawal period pretty much immediately if you miss a dose.

Before that I've used Rizatriptan to treat rather than prevent (works well, but can cause brain fog, mood swings and GI issues). In order to get approval for the CGRP I had to try lower-cost drugs like Verapamil (a calcium channel blocker) which had no effects at all, positive or negative, and Topiramate, which is the single worst medication I've ever used. Compared to all of those, the CGRP is a miracle and has been life-changing.

"The Sediments of Time" by Meave Leakey is fascinating both from her life and her family history.

"Kindred: Neanderthal Life, Love, Death and Art" by Rebecca Wragg-Sykes is great.

"Almost Human" by Lee Berger is about one particular discovery rather than human origins as a whole but is an entertaining read - there was an accompanying PBS special (NOVA?) that's worth watching as well to really understand the scale of some of the caves they were in.

Brendan (the maker of these) is a fascinating, very smart guy. He's a very talented woodworker and wrote a great book on James Krenov. I was lucky to take a class he taught a few years ago, and I enjoy following his Instagram page to see the new projects he has going on.

You hear a lot from long-time woodworkers that this is unnecessary, as they are perfectly capable of using a table saw safely with just the riving knife/splitter and proper technique. Which is anecdotally true, but hard to accept with the actual data of 30k injuries a year. So it's not a question of _if_ there's a cost to society here, it's a question of _where_ we put the cost: up-front on prevention, or in response to injury in the healthcare system. Is the trade-off worth it to force all consumers to spend a few hundred dollars more for a job-site table-saw, if it means the insurance market won't have to bear several thousand for an injury? I'd say yes.

It's worth watching "Jodorowsky's Dune" if you haven't to see the direct-line connection - Jodorowsky happened to see "Dark Star" playing at a film festival while out in California and wanted whoever did the special effects to come work on his doomed "Dune" adaptation. He hired O'Bannon, who came out and met future Alien collaborators HR Giger and Moebius. It's fair to say Alien would not have happened, (or would not be the Alien we know now), if not for Dark Star.

Clustertruck (https://www.clustertruck.com/) is a regional entity somewhere between a restaurant and a ghost-kitchen. Delivery-only and a wide variety of meals, but they own their own app and don't list elsewhere. They check off the bullet points you mentioned.

The food is good but expensive, especially with delivery fees and tips. They've had to close a few locations over the years, so it's not a slam dunk in every city and I assume the margins are still slim.

I had the same situation recently - a single German cockroach chilling on the front of our dishwasher. Being sufficiently terrified by reading r/whatisthisbug and the like, I had a pest control company out the next day to treat. They could find no signs of infestation and I haven't seen a single one since (and we did set out traps to monitor). The Orkin guy who came out said it's not uncommon for a lone individual to venture into a home.

If it's like https://www.merge.dev/ (another "Unified API") then the idea is they provide an abstraction layer to the other API. You build against one generic spec for a given entity ("Person", "Company", "Ticket", etc), hook up to the API, and whatever platform-specific model is squished into that generic model. You end up with only one integration to cover all instances of "CRM systems" or whatnot. Obviously you also have some vendor lock-in, but it is less work than building multiple integrations for each new $product on the market.

I think you will find those two novels similar to his other work. Also, there is a book in the Border Trilogy between "All the Pretty Horses" and "Cities of the Plain" - "The Crossing".

"Suttree" doesn't come up as often as his other work but is my personal favorite. There are some darker moments but it's a very funny book - a lot of "Charles Portis"-esque conversations and encounters.

I know this article is more about "maker spaces" than "wood shops", but there is also somewhat of a renaissance in traditional hand-tool woodworking going on. A new community shop opened in Toronto which is based entirely on hand tools: http://www.theunpluggedwoodshop.com/. I'd like to see more people realize they don't need $1000s of high tech machines to build the same types of furniture we've done by hand for centuries.

Lodash 4.0.0 is out 11 years ago

I haven't looked over the changelog/breaking changes for 4.0.0, so this may not encompass everything there, but there are a few changes you need to be aware of. How hard it is depends on which functions you use currently, but I doubt it would take more than an hour of find-replace work. They are listed here : https://github.com/lodash/lodash/wiki/Migrating The ones that affected me the most were the changes to the overloaded _.first, _.last, etc, but YMMV.

Lee Valley / Veritas and Lie Nielsen have helped usher in a renaissance of well-made tools. Their planes and saws are arguably better than any produced during the 'golden age' before WWII. There are cheaper options from abroad available (WoodRiver, Quangsheng, etc) but I like spending the extra money knowing its supporting good, customer-focused companies who care about the craft.

(But I also like finding/restoring old Stanley planes when possible, which is cheap and ethically satisfying).

- It is a lot simpler than D3 - It works best when your use case fits into the explicit examples given here : http://dimplejs.org/examples_index.html - If you are wanting something from the advanced examples, you should be proficient in javascript and understand d3 already - If you want something not in the examples at all, you should really understand d3.

It's pretty quick to get up and running with it, you can always get access to the underlying d3 selections to do more complicated operations, and the main developer is fairly accessible through stackoverflow questions or github questions. There are some gotchas I've run into but nothing that has made me consider switching. We evaluated a few different libraries before choosing it.

I can't speak for performance really because we don't have huge datasets. For ordinary business data (not looking at 1000s of points on a chart), it's fine.

We evaluated Rickshaw and Dimple (http://dimplejs.org/) for awhile (to migrate some custom charts initially built with D3.Chart http://misoproject.com/d3-chart/). We went with Dimple and I've been very pleased with it. There is ample documentation, the source code is readable, and the developer behind it is responsive to questions and issues. Also, it's very easy to get access to the underlying axes/series/legends/etc if you want to do more complicated work not provided out of the box and are familiar with d3. I would highly recommend it if you're looking for a d3 chart library.

We've been running a client side SaaS on the Closure library/tools/compiler for a couple years now. You are right that it is not widely used outside Google (and certainly not as popular as Angular) but it is well-tested and there are some people out there using it for production work.