Viewing profile — acdibble
acdibble
HN member- Joined
- Mon, Apr 20, 2020, 7:43 AM UTC
- HN karma
- 36
- Public activity
- 20 items
- HN profile
- View on Hacker News ↗
About acdibble
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #41311555
https://archive.ph/SOTUY
-
comment
Comment #36607617
It’ll bundle the entire V8 engine. You can expect probably close to 80mb for a hello world app.
-
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..…
-
comment
Comment #34154354
HexFiend ( https://hexfiend.com/ ) works well for files of enormous size but is only a hex editor.
- story
-
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…
-
comment
Comment #32834998
Also known as "well-known symbols". https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...
- comment
-
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…
-
comment
Comment #29797004
This looks neat. Am I understanding it correctly that it's written in pseudocode?
-
comment
Comment #28616442
Probably just a typo due to the topic of the thread, but esbuild is written in Go.
-
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…
-
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…
-
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 …
-
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.
-
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…
-
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.
-
comment
Comment #22934155
It's not just JavaScript with that issue... https://0.30000000000000004.com/
-
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…