HN user

statenjason

1,055 karma
Posts35
Comments90
View on HN
www.youtube.com 2y ago

Reverse Turing Experiment with AIs [video]

statenjason
2pts0
support.google.com 2y ago

Chrome Shopping Insights and Price Tracking

statenjason
1pts0
eng.uber.com 4y ago

Data Race Patterns in Go

statenjason
307pts186
www.bmwusa.com 5y ago

BMW will discontinue 3G ConnectedDrive in February 2022 [pdf]

statenjason
1pts0
www.google.com 5y ago

Gmail app on Android is down

statenjason
6pts2
developers.facebook.com 5y ago

End of Official Support for Facebook SDK for React Native

statenjason
3pts1
support.google.com 6y ago

Chrome – How do I remove the puzzle piece?

statenjason
1pts0
github.com 6y ago

Yarn 2.x and forward – our goals

statenjason
2pts0
medium.com 9y ago

React Function-as-Child Components

statenjason
1pts0
www.youtube.com 11y ago

W3Schools is just... Better

statenjason
17pts2
www.kickstarter.com 11y ago

Rails Clips: Build an API with Rails Video Series

statenjason
2pts0
ss15-yourstory.divshot.io 11y ago

YourStory – Tell your story the way it was meant to be told

statenjason
1pts0
leafo.net 12y ago

Lapis – A Lua, Moonscript Framework built on OpenResty

statenjason
164pts46
jeremyevans-pres.heroku.com 12y ago

Give-and-Go with PostgreSQL and Sequel

statenjason
2pts0
wekeroad.com 13y ago

EmberJS Confuses Me

statenjason
291pts137
thechangelog.com 13y ago

The Changelog - Relaunched Member Supported.

statenjason
3pts0
docs.google.com 13y ago

8th Grader's Survey About Software Dev

statenjason
1pts0
readwrite.com 13y ago

4 Hard Questions For Enterprise Developers Who Want To Get Ahead

statenjason
5pts0
irrelinvent.com 14y ago

5th Ave Frogger

statenjason
3pts0
arstechnica.com 14y ago

Google offers $1 million reward to hackers who exploit Chrome

statenjason
50pts9
www.youtube.com 14y ago

FubuMVC Development Timeline Visualization

statenjason
1pts0
blog.guykawasaki.com 14y ago

How to Be a Demo God (2006)

statenjason
30pts1
antirobotrobot.tumblr.com 14y ago

The Software Stack and Latency

statenjason
28pts0
brandonhays.com 14y ago

Learning to Program, Part I: How I did it

statenjason
3pts0
www.indiemusicbundle.com 14y ago

Indie Game Music Bundle (Pay what you want)

statenjason
79pts48
leahy.senate.gov 15y ago

Protect IP Act

statenjason
3pts0
jxs.me 15y ago

Websockets using Ruby EventMachine

statenjason
1pts0
www.visualeconomics.com 15y ago

All the Things BP Could Buy

statenjason
1pts0
www.cnn.com 16y ago

Dollar should be replaced as international standard, U.N. report says

statenjason
1pts0
jxs.me 16y ago

Tail Recursion in Haskell

statenjason
1pts0

Aider as a non-agentic coding tool strikes a nice balance on the efficiency vs effectiveness front. Using tree-sitter to create a repo map of the repository means less filesystem digging. No MCP, but shell commands mean it can use utilities I myself am familiar with. Combined with Cerebras as a provider, the turnaround on prompts is instant; I can stay involved rather than waiting on multiple rounds of tool calls. It's my go-to for smaller scale projects.

I tried Hurl after Insomnia went the way of Postman. The highlights you list were the strong drivers for testing it out. Where Hurl fell short was composing requests. Example: X.hurl response has authToken. Y.hurl uses authToken. Z.hurl uses authToken. There's no import ability[1], so you've got to use other tooling to copy X.hurl into Y.hurl and Z.hurl.

Ultimately settled on Bruno. It's backed by readable text files[2] as well. The CLI works for scripting. And the GUI is familiar enough that I've managed to convert Postman holdouts at my dayjob.

[1] https://github.com/Orange-OpenSource/hurl/issues/1723

[2] https://docs.usebruno.com/bru-language-samples.html

I use both.

Restic for various machines to hourly backup on a local server. Rclone to sync those backups to S3 daily.

Keeps the read/write ops lower, restores faster, and limits to a single machine with S3 access.

I migrated to Alpine for my laptop this year after an extended attempt of NixOS. For development, I’ve found I’m more productive in that I don’t go down the rabbit hole of finding the “Nix way” of using a language/tool. The speed of apk is refreshing for my older machine, and APKBUILDs are intuitive after my past experience with Arch PKGBUILD.

Drew DeVault has a decent write up on Alpine that’s worth a read. https://drewdevault.com/2021/05/06/Praise-for-Alpine-Linux.h...

That loaded fast.

Also, seeing the network request for background gradients takes me back to an era of CSS I don't miss. Anyone remember the hacks for drop shadows and rounded corners?

Lena 5 years ago

Came here to recommend "Fall; Or, Dodge in Hell" as well. I recently finished it. While Stephenson can get long-winded, it was a thought provoking story around how brain simulation is received by the world.

Will check out Bobiverse. Thanks for the recommendation!

If Not SPAs, What? 6 years ago

Displaying a loading spinner in under 50ms while waiting for a 500ms request to complete doesn't necessarily build a strong relationship.

SPAs can start off with the good intention of being low-latency and responsive. But when you're backed by a web server, you still have to account for it though optimistic rendering, prefetching, and loading states. Getting it right can be an excellent UX, but it's easy to get very wrong.

What Is Nix? 6 years ago

What is Nix?

Nix is a powerful package manager for Linux and other Unix systems that makes package management reliable and reproducible. It provides atomic upgrades and rollbacks, side-by-side installation of multiple versions of a package, multi-user package management and easy setup of build environments.

What is NixOS?

NixOS is a Linux distribution with a unique approach to package and configuration management. Built on top of the Nix package manager, it is completely declarative, makes upgrading systems reliable, and has many other advantages.

[1] https://nixos.org/

It Just Works 11 years ago

You can run a bridge, but then it's another machine to set up and maintain. How are security and Chrome updates handled? A cron job? What if that fails? Suddenly the simple Chromebook is more complex.

I wouldn't mind running that hack myself, but there's no way I'd drop it on someone who couldn't debug if something went wrong.

It Just Works 11 years ago

I've suggested ChromeOS to family members that use facebook, email, and limited spreadsheets. Ultimately, I backtracked when they asked about printing. Telling them they have to buy a new printer that's Cloud Print compatible is a tough sell, especially if they've purchased one within the last year.

I have found that Chrome Boxes are excellent machines for demoing web products at tradeshows. Cheap, relatively hardened, fast enough, and sync bookmarks and settings.

We started using dokku just before 0.2.0 released for hosting our apps. One place it initially lacked was process management. If you wanted anything outside of your 'web' process in your Procfile, you were out of luck. I wrote a couple plugins[1][2] to handle that.

It worked alright for single sever deployments. When attempting to scale to a multi-server setup, dokku wasn't the right choice. I went down the rabbit hole of docker orchestration on top of CoreOS, but eventually backed out to go with Cloud66[3].

[1] https://github.com/statianzo/dokku-shoreman [2]: https://github.com/statianzo/dokku-supervisord [3]: https://www.cloud66.com/

We use it for event storage in the event sourced parts of our app.

For the rest of our data, we're currently migrating off of Mongo to Postgres due to an experience similar to the OP's.