nitsky
|
1 year ago
|
on: M4 MacBook Pro
I'm waiting for OLED. Will purchase as soon as they do it.
nitsky
|
1 year ago
|
on: Stripe's Monorepo Developer Environment
What is?
nitsky
|
1 year ago
|
on: Helix: A post-modern text editor
To replace inside single quotes, you can do `mi'c`. There's nothing to restrict it to the current line, but you will see the selection before you hit c. That's the big benefit of the noun-verb model that Helix uses.
nitsky
|
1 year ago
|
on: Helix: A post-modern text editor
Helix is my daily driver. I love it! Kakoune's editing model, built in tree sitter and LSP, works great with zero config. My only gripes are I wish it had Kakoune's client-server model and collaborative editing.
nitsky
|
1 year ago
|
on: Social Security now expected to run short on funds in 2035, one year later
What action could be taken to fix it?
nitsky
|
1 year ago
|
on: Cloudflare R2 IA storage tier
Is the “data processing fee” any different from an egress fee in practice? Seems a little deceptive.
nitsky
|
3 years ago
|
on: Launch HN: Moonrepo (YC W23) – Open-source build system
Are you sure you can't have your cake and eat it too? You can have many configuration options, but give each one a sane default.
nitsky
|
3 years ago
|
on: Rust went from side project to world’s fastest growing language
> I optimize directly for the hardware I'm running on, which typically gives me 10-100x performance improvements. Controlling how memory is managed is critical.
What makes you think you can't control how memory is managed in Rust? Rust doesn't have "automatic" memory management, it has a compiler that can help ensure you are managing memory correctly, and force you to type "unsafe" when you are doing things it doesn't understand.
nitsky
|
3 years ago
|
on: Mold linker: targeting macOS/iOS now requires a commercial license
Anyone who writes C/C++/Rust, like I do, can benefit tremendously from Mold. I use it daily. Each time I hit save and need to run my program, Mold saves me about 10 seconds in linking time. That time adds up quickly, and prevents me from getting distracted.
nitsky
|
3 years ago
|
on: Fermyon Spin JavaScript and TypeScript SDK
I wonder how using a typical isomorphic React app performs on Fermyon using JS running with QuickJS vs on Vercel, Cloudflare Workers, or Netlify. Has the Fermyon team tested this?
nitsky
|
3 years ago
|
on: Ofcom letter on restrictions on internet services for “designated persons” [pdf]
No, in law the term “person” refers to both “natural persons” and “corporate persons”:
https://en.m.wikipedia.org/wiki/Legal_person.
Remember the political fight over the phrase “corporations are people”? Well, they certainly are “persons”.
nitsky
|
3 years ago
|
on: Show HN: A tiny WASM compiler and runtime for demonstration purposes
nitsky
|
3 years ago
|
on: Postgres WASM
Using IndexedDB, the forthcoming SQLite support in Chrome, or the browser filesystem components all might be good paths. Either way, what do you think about using WASI instead of Linux? I think it would reduce the overhead significantly.
nitsky
|
3 years ago
|
on: Postgres WASM
This is a really exciting milestone for WASM! Has anyone tried compiling postgres for wasm32-wasi and implementing a wasi-compatible interface for the file system and other OS bits postgres needs? I think that would be a big improvement.
nitsky
|
3 years ago
|
on: Hacking anything with GNU Guix
What in particular did you find strange and unconventional?
nitsky
|
3 years ago
|
on: Ruff – a fast Python Linter written in Rust
The goal of this project is to demonstrate that python can tooling can be made faster by writing it in Rust instead of Python. C++ and Haskell could be reasonable choices, but Rust has a strong combination of speed and type safety that make it a good choice for this application.
nitsky
|
3 years ago
|
on: Show HN: Devbox – Easy, predictable shells and containers
I think this attempt at clarification is just proving xvector’s point.
nitsky
|
3 years ago
|
on: Big changes ahead for Deno
Thanks. Any plans for supporting monorepos of first party NPM packages that teams already have?
nitsky
|
3 years ago
|
on: Big changes ahead for Deno
Hi Luca, can you provide a bit of detail on how this will be accomplished? Will Deno be analyzing an entire project’s npm imports simultaneously, rather than individually?
nitsky
|
3 years ago
|
on: Big changes ahead for Deno