Live data from Hacker News

Viewing profile — dabears

dabears

HN member
Joined
Fri, Jul 22, 2022, 1:17 AM UTC
HN karma
9
Public activity
12 items

About dabears

No profile information was provided.

Recent public activity

  1. comment
    Comment #44689976

    Hello! I was curious if you would happen to have any advice or particular comp sci papers you would point as aspiring compiler developer towards. I think I'm sort of who you're tal…

  2. comment
    Comment #41088168

    I was tired of feeling slowed down by grepping in large Ruby code, and the artificial boundary gems create requiring a `bundle open` to keep digging. I created my own Ruby LSP to s…

  3. comment
    Comment #37137083

    The real trick is doing both. Code that reads like a short story while including error handling and edge cases. This is achieved in a practical way by first keeping it as simple as…

  4. comment
    Comment #36950610

    I'm curious what you're really trying to say here and why feel the need to compare yourself to your peers in such a way. Do you feel like you wasted those years because your peers …

  5. story
    Show HN: Fuzzy Ruby Server – Go to Definition for Ruby

    Ruby language servers today are largely missing features like Go To Definition because most Ruby code lacks type definitions. Fuzzy Ruby Server accepts that uncertainty and creates…

  6. comment
    Comment #36318223

    I made a Ruby LSP because of this problem. It's not perfect but incase it's helpful for you. It can parse a large project with all of its gems in a few minutes. That data is indexe…

  7. comment
  8. story
    Show HN: Fuzzy Ruby Server, go-to definition for Ruby

    Hello! I work in a large Ruby codebase and have had a lot of frustrations with the existing tooling. Solargraph is far too slow, and the rest of the Ruby language servers don't sup…

  9. comment
    Comment #33112436

    This is my workflow as well, it's great. Github is configured so merging a PR into master will automatically produce a squashed commit. My rule of thumb, always rebase unless you h…

  10. comment
    Comment #33101339

    Inotify can drop events when there is a burst of file changes. You can bump up the max number of queued events though. For example, if you're watching a git repo and switch to an o…

  11. comment
    Comment #33052665

    Just have to say thank you so much for CoffeeScript! It was pivotal in my career and has brought me a lot of joy :)

  12. comment
    Comment #32187403

    Ideally you have a reliable Change Data Capture (CDC) mechanism like a Binlog Reader. Debezium, for example, can write directly to a queue like Kafka. A Kafka consumer picks up the…