nbrempel
|
8 months ago
|
on: Show HN: Stacklane – GitHub App for Stacked PR Clarity
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 :)
nbrempel
|
8 months ago
|
on: Show HN: Stacklane – GitHub App for Stacked PR Clarity
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.
nbrempel
|
1 year ago
|
on: Show HN: I made a free, hosted static site generated with Rust and SvelteKit
Yeah, I'd like to offer paid features such as custom domains, private domains, etc. For now, the cost is pretty low to serve text out of GCS.
nbrempel
|
1 year ago
|
on: Fred: Software Development Job Postings on Indeed in the United States
It would be nice if we could see the last 10 years.
nbrempel
|
1 year ago
|
on: Using SIMD for Parallel Processing in Rust
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!
nbrempel
|
1 year ago
|
on: Show HN: A web debugger an ex-Cloudflare team has been working on for 4 years
We've started using this. It's fantastic! Great work. Thank you :)
nbrempel
|
2 years ago
|
on: Doks – Build a Docs Site
nbrempel
|
2 years ago
|
on: Cloudflare Registrar now supports .dev domains
Too bad they don’t support custom name servers.
nbrempel
|
2 years ago
|
on: Fish Folk – open-source Bevy game
Bevy looks really interesting. I’d love to experiment with gamedev using the framework.
nbrempel
|
3 years ago
|
on: Domain Names as Handles in Bluesky
Domain handles are a feature but not a requirement.
nbrempel
|
3 years ago
|
on: Contexto: Find the Secret Word
I played contexto.me #168 and got it in 29 guesses and 6 tips.
13
8
14
nbrempel
|
3 years ago
|
on: First Impressions of Bluesky's Brand New iOS App
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 @[email protected].
nbrempel
|
3 years ago
|
on: Serving 250k developers with one support engineer
Very impressive!
That growth curve is amazing.
nbrempel
|
3 years ago
|
on: Ask HN: What should I do to learn computer science fundamentals?
nbrempel
|
3 years ago
|
on: Ask HN: Is Heroku Being Sunset?
nbrempel
|
4 years ago
|
on: Tesla Safety Score Beta
Insurance companies will love this!
nbrempel
|
4 years ago
|
on: Show HN: With a 9-5 job and 2 kids I have finally finished my first MVP
Love this! Minor nit: days to expiry for expiring tomorrow shows (2) and presumably (1) for options expiring today. I think usually this is denoted 1 and 0 (DTE)
nbrempel
|
4 years ago
|
on: Show HN: With a 9-5 job and 2 kids I have finally finished my first MVP
Counter point: as someone who plays with trading options as a hobby I instantly knew what this is!
nbrempel
|
4 years ago
|
on: Show HN: I made a community sourced fitness routine database
nbrempel
|
4 years ago
|
on: Show HN: Instant Vitals – Easily track your Web Vitals metrics
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
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 :)