HackerTrans
TopNewTrendsCommentsPastAskShowJobs

emnudge

no profile record

Submissions

Show HN: I vibecoded a language server for web assembly

github.com
1 points·by emnudge·6 months ago·0 comments

What Happened to WebAssembly

emnudge.dev
4 points·by emnudge·7 months ago·1 comments

Show HN: Live local log viewer with automatic syntax highlighting

github.com
2 points·by emnudge·2 years ago·0 comments

Logpipe: View and search your messy development logs with syntax highlighting

github.com
3 points·by emnudge·2 years ago·1 comments

Regexide

regexide.com
4 points·by emnudge·2 years ago·0 comments

Namecheap files suit against ICANN for removal of price caps

twitter.com
2 points·by emnudge·2 years ago·0 comments

comments

emnudge
·last year·discuss
Outside of making something - it’s very useful for setting up a quick project.

Stackblitz did this with Node (aka their Web Containers).

You could make a new project very quickly and prototype an idea. When finished, download it off the browser and deploy it.
emnudge
·last year·discuss
It’s to connect phone numbers to identities. Getting a physical sim in China involves going in person to a store where they keep your passport and a mugshot (you hold a paper with your number on it) in a database.

There’s no free WiFi without requiring a phone number. It allows the government to connect internet users to real identities.
emnudge
·2 years ago·discuss
This is a very interesting way of putting it.

The way I’ve explained it is “unserious surprise” which also fits with this.

https://emnudge.dev/blog/a-grand-theory-of-humor/
emnudge
·2 years ago·discuss
Having things "just work" can be really appealing. I once had an issue where my Linux distro of choice was having a tough time with my monitor orientation. I got quite a few linux gurus involved and none could figure it out. I'm sure it eventually would have worked, but that's not an experience I'm particularly fond of.

And then software that does exist will often have bugs for Linux that are overlooked due to how small the market is.
emnudge
·2 years ago·discuss
German would be helpful for me
emnudge
·2 years ago·discuss
Hey, HN!

Whenever I'm onboarded onto new codebases, I have a tough time finding my own debug logs when there are hundreds of logs from different systems all cluttering the terminal. It's hard to know where one log ends and another begins. It's just white text on a black background.

I started this a couple days ago, but it's already been useful for my work. After building it, I found out projects like this had already existed. There's a section on bottom of the readme comparing them.
emnudge
·2 years ago·discuss
I'm pretty sure he knows what Doordash is. I assume the thing that doesn't exist is ordering via a phone line, not an internet-based interface.

i.e. texting or calling a number in a specific way based on some standard tons of fast food places provide to make fast food orders without human interaction.
emnudge
·2 years ago·discuss
My previous understanding was that service would be stopped once you hit past the free tier.

Upon review, it does not look like this is the case. I have several very low traffic projects on which would have never been anywhere close to the free limit. However, if I get involved in a random spam attack, it seems I could be on the hook for several thousand dollars.

This is incredibly dangerous. Netlify is often used as a beginner friendly free tier for static hosting. Not as something that is cheap, but as something that is free. This is just an overall dangerous position to put people in.
emnudge
·2 years ago·discuss
If we’re doing self promo, I’ve got something similar but significantly smaller in scope:

https://github.com/EmNudge/watlings
emnudge
·2 years ago·discuss
I sunk a decent amount of time into WebAssembly over the past few months (I am the author of "watlings").

From my understanding, there are 3 answers here.

1. Most spaces do not need WASM. You don't necessarily see speed improvements since usually your JS and WASM (in the browser) are compiled into the same thing.

2. WASM is very good at bringing tools to new spaces. The biggest limitation here is in both tooling and education. It is not trivial to compile something like FFMPEG for the browser. Improvements to the WASI standard are helping here.

3. WASM is starting to see use in different spaces. For example, as a containerization format for efficient sandboxing.
emnudge
·3 years ago·discuss
That looks super useful! I wish I knew about this when first learning wat. This would make a great reference!
emnudge
·3 years ago·discuss
I really like Exercism! Unfortunately their exercise model is considerably more free-form where it teaches you considerably less and in much larger chunks. I think this is a great model for certain contexts, but the format I have in the repo is more similar to "rustlings" and "ziglings" where you're taught syntax and features alongside the code examples.

I don't know that their Wasm module is necessarily "broken", so I'm unsure whether my contributions would be welcome.
emnudge
·3 years ago·discuss
Author here!

My initial motivation to learn WASM (as someone from a primarily web background) was that I had a pretty poor understanding of WASM in general and so I had a lot of difficulty working with WASM builds in just about any capacity other than a heavy JS wrapper.

There are aspects to how WASM works that are quite different from other kinds of assembly formats that make learning the basics pretty important. e.g. how memory is requested, provided, grown. How functions are received and exported. Capabilities of tables.

A lot of this might be abstracted by massive wrappers, but you're losing a lot in perf and debugability when using them.