Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
acdibble
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
19 ms
·
1.
▲
by
acdibble
2y ago
https://archive.ph/SOTUY
2.
▲
by
acdibble
3y ago
It’ll bundle the entire V8 engine. You can expect probably close to 80mb for a hello world app.
3.
▲
by
acdibble
4y ago
This is possible with type predicates, example: https://www.typescriptlang.org/play?#code/C4TwDgpgBAYg9nKBeK... docs: https://www.typescriptlang.org/docs/handbook/2/narrowing.htm...
4.
▲
by
acdibble
4y ago
HexFiend ( https://hexfiend.com/ ) works well for files of enormous size but is only a hex editor.
5.
▲
Use Universal Clipboard to copy and paste between your Apple devices
(support.apple.com)
2 points
by
acdibble
4y ago
|
0 comments
6.
▲
by
acdibble
4y ago
> 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 that, we'd be able to catch a lot more errors. M
7.
▲
by
acdibble
4y ago
Also known as "well-known symbols". https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...
8.
▲
by
acdibble
5y ago
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 rough and very MVP, b
9.
▲
by
acdibble
5y ago
This looks neat. Am I understanding it correctly that it's written in pseudocode?
10.
▲
by
acdibble
5y ago
Probably just a typo due to the topic of the thread, but esbuild is written in Go.
11.
▲
by
acdibble
5y ago
Deno linter: https://deno.land/manual/tools/linter Deno format: https://deno.land/manual/tools/formatter Deno bundle: https://deno.land/manual/tools/bundler No
12.
▲
by
acdibble
5y ago
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] https://hexdocs.pm/elixir/1.12/IO.html
13.
▲
by
acdibble
5y ago
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 for me is as easy as compiling an executable and puttin
14.
▲
by
acdibble
5y ago
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.
15.
▲
by
acdibble
6y ago
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 queue built in. Only the process itself can pop messages out of
16.
▲
by
acdibble
6y ago
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.
17.
▲
by
acdibble
6y ago
It's not just JavaScript with that issue... https://0.30000000000000004.com/
18.
▲
by
acdibble
6y ago
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://github.com/acdibble/til/blob&#x