HN user

nbrempel

2,584 karma
Posts204
Comments173
View on HN
www.albiondatabase.com 4mo ago

Show HN: I built an interactive game database for Albion Online

nbrempel
2pts0
nrempel.com 8mo ago

Smaller Surfaces

nbrempel
3pts0
stacklane.dev 1y ago

Show HN: Stacklane – GitHub App for Stacked PR Clarity

nbrempel
8pts4
yaak.app 1y ago

Yaak 2.0 – Git, WebSockets, OAuth, and More

nbrempel
82pts21
textual.blog 1y ago

Show HN: Textual Writer – A simple browser Markdown editor

nbrempel
4pts0
textual.blog 1y ago

Show HN: I made a free, hosted static site generated with Rust and SvelteKit

nbrempel
4pts2
nrempel.com 2y ago

Using SIMD for Parallel Processing in Rust

nbrempel
124pts42
nrempel.com 2y ago

Parallel Processing with Rayon: Optimizing Rust for the Multi-Core Era

nbrempel
1pts0
yaak.app 2y ago

Yet Another REST Client?

nbrempel
3pts0
www.eno-writer.com 2y ago

Choosing Technology to Build On

nbrempel
2pts0
www.eno-writer.com 2y ago

Eno writer – revisiting the product roadmap

nbrempel
1pts0
www.eno-writer.com 2y ago

"killing it" / setting the pace / visualizing the code

nbrempel
2pts0
yaak.app 2y ago

Yaak: A Fun REST, GraphQL, and gRPC Client (Postman Alternative)

nbrempel
8pts0
www.eno-writer.com 2y ago

The iteration trap / conflicting edits / what do I know?

nbrempel
1pts0
nrempel.com 2y ago

Building Reactive Systems with Event-Based Architecture

nbrempel
9pts0
filamenthdl.com 2y ago

Filament – A Language for Fearless Hardware Design

nbrempel
87pts31
nrempel.com 2y ago

Atomic Commits: Enhancing Code Quality and Review Efficiency

nbrempel
2pts0
hex.tech 2y ago

Hex – Magical tools for working with data together

nbrempel
2pts0
nrempel.com 2y ago

The Art of Communicating at the Right Altitude

nbrempel
1pts0
www.eno-writer.com 2y ago

Document Versioning / Join Semilattices

nbrempel
2pts0
skip.tools 2y ago

Build SwiftUI Apps for iOS and Android with Skip

nbrempel
3pts0
github.com 2y ago

I made a small pub/sub library for Rust using sqlx/Postgres

nbrempel
3pts0
tildes.net 3y ago

Tildes – a non-profit community site driven by its users' interests

nbrempel
2pts1
github.com 3y ago

I made a handy little CLI for managing your hosts file

nbrempel
2pts0
nationalpost.com 3y ago

Trudeau says Canada is 'serious' about reviving nuclear power

nbrempel
17pts12
github.com 3y ago

Show HN: Sleek – I created a SQL formatter CLI in Rust

nbrempel
2pts0
prefix.dev 3y ago

Rattler: Conda from Rust

nbrempel
2pts0
blueskyweb.xyz 3y ago

Bluesky: Building a Social Internet

nbrempel
2pts0
www.ambient.run 3y ago

Ambient: The Multiplayer Game Engine

nbrempel
282pts141
www.rightwayup.net 3y ago

How to start a conversation in Greater Tech-Twitter

nbrempel
1pts0

Hey! Mostly just rebase out of habit actually, but I've been exploring --update-refs recently.

Two things come to mind that I don't love about `gt`:

- the philosophy of "every commit is a PR" falls apart sometimes. Sometimes I want to logically separate commits in a PR—but not every commit passes CI. This makes it easier to review. Or call out optional changes that can easily be dropped.

- It broke my workflow in a few ways. The one thing I notice the most is that I like to "pop" a commit into staged changes and make edits. So I can easily see a diff of what I'm editing. I expected `gt modify` to do this. So instead I git reset --soft, commit, and `gt submit`

Thanks for the comment :)

I use Graphite at {{ day job }} and it's pretty good. I strongly dislike having to use their git wrapper CLI `gt` though. git does already support this out of the box.

So instead, this uses git primitives and just drops that handy comment in Github to visualize the stack.

Thanks for reading everyone. I’ve gotten some feedback over on Reddit as well that the example is not effectively showing the benefits of SIMD. I plan on revising this.

One of my goals of writing these articles is to learn so feedback is more than welcome!

The article mentions running separate servers to be able to claim your own domain. However, in AT I believe you can simply add a TXT record. There is no need to run a server unless you want to.

Also, you can be @example.com if you want. You don’t need to be a user on a server like @me@example.com.

Hi everyone, my colleagues and I have recently been tackling Core Web Vitals [0] and we came up with an effective approach for identifying problems and improving our scores. Basically, we listen for web vitals metrics events in Chrome, convert any HTML elements to actionable XPath queries, and store the metrics in BigQuery.

We thought the community would benefit from a tool that does this so we spun the work out as an open source tool called Instant Vitals [1]. I hope others find this work helpful and we’re happy to receive feedback and contributions!

[0] https://web.dev/vitals/

[1] https://github.com/InstantDomainSearch/instant-vitals