nitsky's comments

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: 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 | 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: 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: 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: 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: 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?
page 1