Live data from Hacker News

Viewing profile — acdibble

acdibble

HN member
Joined
Mon, Apr 20, 2020, 7:43 AM UTC
HN karma
36
Public activity
20 items

About acdibble

No profile information was provided.

Recent public activity

  1. comment
  2. comment
    Comment #41311555

    https://archive.ph/SOTUY

  3. comment
    Comment #36607617

    It’ll bundle the entire V8 engine. You can expect probably close to 80mb for a hello world app.

  4. comment
    Comment #35186874

    This is possible with type predicates, example: https://www.typescriptlang.org/play?#code/C4TwDgpgBAYg9nKBeK... docs: https://www.typescriptlang.org/docs/handbook/2/narrowing.htm..…

  5. comment
    Comment #34154354

    HexFiend ( https://hexfiend.com/ ) works well for files of enormous size but is only a hex editor.

  6. story
  7. comment
    Comment #33773349

    > Make ESLint type-aware. This seems to be something we keep banging our heads against -- we just don't have any way of knowing what type of value a variable contains. If we knew t…

  8. comment
    Comment #32834998

    Also known as "well-known symbols". https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...

  9. comment
  10. comment
    Comment #29895360

    Just this past weekend, I created a service for transferring files that is built on websockets ( https://qr.dibble.codes / https://github.com/acdibble/qr-transfer ). It's still rou…

  11. comment
    Comment #29797004

    This looks neat. Am I understanding it correctly that it's written in pseudocode?

  12. comment
    Comment #28616442

    Probably just a typo due to the topic of the thread, but esbuild is written in Go.

  13. comment
    Comment #28609200

    Deno linter: https://deno.land/manual/tools/linter Deno format: https://deno.land/manual/tools/formatter Deno bundle: https://deno.land/manual/tools/bundler Not sure about polyfill…

  14. comment
    Comment #28522157

    Elixir includes IO.inspect[1], which prints a value and then returns it. It makes it easy to insert this function into a pipeline without disrupting the existing logic[2]. [1] http…

  15. comment
    Comment #27207259

    I host a pet project Slack bot on a Digital Ocean droplet. You can compile an Elixir app into an executable that treeshakes the BEAM. I can't speak to memory usage, but deployment …

  16. comment
    Comment #26769796

    If you use fractional scaling on Wayland, Chromium-based applications will render blurry. Obviously it's a Chromium issue but it's been around for a while and is a bad experience.

  17. comment
    Comment #23251712

    If there is only one process running this GenServer, there will only be one instance of the job in the system. An BEAM process, and therefore a GenServer, has an atomic message que…

  18. comment
    Comment #23066403

    Is it essentially nand2tetris in game format? I tried making my way through that a couple times but maybe some gamification is just what I needed.

  19. comment
    Comment #22934155

    It's not just JavaScript with that issue... https://0.30000000000000004.com/

  20. comment
    Comment #22921966

    Also inspired by the same post, I set up a TIL repo. I went with a shell script where you pass the category and the filename and it creates the file and recreates the README: https…