HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mumphster

no profile record

Submissions

JavaScript Systems Music

teropa.info
2 points·by mumphster·il y a 5 ans·0 comments

comments

mumphster
·il y a 4 ans·discuss
Do you have examples of slower code generated by typescript? TS is a superset of JS so it changing anything that has a large performance impact seems odd, but maybe I’m missing something here. The types aren’t even available at runtime, what’s the biggest slow down you’ve seen?
mumphster
·il y a 4 ans·discuss
Tauri does this as well, I use it for https://github.com/Ell/shortmon and get ~1-2 meg binaries with a react based ui
mumphster
·il y a 4 ans·discuss
People have pirated MMO backends since.. well a long time, mainly KMMO servers. Lineage 2 and Ragnarok Online had big servers running on leaked / hacked official server code for a really long time before emulators became more practical to update with more recent game content.
mumphster
·il y a 4 ans·discuss
Used extensively by Mullvad VPN for a lot of their infrastructure

https://mullvad.net/en/blog/2022/6/15/mullvad-is-now-continu...
mumphster
·il y a 4 ans·discuss
I think you understand wrong. https://nodejs.org/api/debugger.html Combined with chrome dev tools or an ide of your choice has been some of the best tooling I’ve used in any programming language
mumphster
·il y a 4 ans·discuss
It's actually easier than ever nowadays. Do a quick search on archive.org and you'd be surprised on what you can find.
mumphster
·il y a 5 ans·discuss
Are you saying that people playing video games are more energy intensive than literal warehouses full of GPU's running 24/7 mining ethereum? Nobody talks about that because it's a horrible comparison.
mumphster
·il y a 5 ans·discuss
Cool, yet another created in a vacuum CRDT, GUI, and text editor implementation written in rust.

This one is even worse because theres no actual examples or code

Hope the devs have fun writing this though! Rust is very enjoyable to work in
mumphster
·il y a 5 ans·discuss
You can solve 1k captchas for $1 at 80% success, they're trivial to bypass
mumphster
·il y a 5 ans·discuss
cobol (on mainframes, no clue if this applies elsewhere) is more than just a langauge, its a whole stack and set of tools for writing terminal UI programs basically that take inputs and do a lot of processing based on said inputs. You can easily run into cobol code that assumes (rightfully so in most cases) that people will be nice and not do bad inputs or try to do the equivalent of sqli. the attitude around safe and secure code just wasnt there when a lot of the cobol codebases ive ran into were initially written
mumphster
·il y a 5 ans·discuss
That applies if youre shipping a giant 15 meg blob of js (not saying some sites dont do this), a lot of the size also comes from css and other assets which still apply with shipping a wasm blob. I'm gonna guess that v8 can parse a 1-2 meg js file just as fast if not faster than the time it takes to download a 15 meg wasm blob or a 4 meg blob + decompress + parse outputted from golang. Like your last line says, shipping 15 megs of any kind of code makes no sense to me
mumphster
·il y a 5 ans·discuss
https://www.w3schools.com/css/css3_3dtransforms.asp
mumphster
·il y a 5 ans·discuss
A web app cant take advantage of native desktop UI patterns (file dialogues, tray, system menus) and APIs (native file handling, win32 access, sockets, etc etc) like electron. Electron apps are desktop apps.

People have been embedding webuis in crap forever and this is nothing new, except that chrome is a way better target to do so instead of old unupdated things like Qt webview and the like. See for example, steam which is just a web browser with some native ui around it.
mumphster
·il y a 5 ans·discuss
What's broken in node.js's design? Most new trading apps out there are also build on electron, or worse yet, some really gross java desktop ui thats even slower and eats up way more ram.

All of what you said is fud and unsubstantiated.