HN user

mankeysee

25 karma
Posts0
Comments29
View on HN
No posts found.

Fucking modern web dev piece of shit where you can't even ctrl+F among the big list to find what you were seeking. Guess at least it covers a decent breadth of styles.

what chance do the rest of us have?

A huge and very easy opportunity. Current software is not just unoptimized, it is antioptimized to the neck. Any idiot could do far better than current "state of the art" if he is raised with prioritizing the correct things and understanding useless layers and crap for what it is.

used extra blubber layers to simplify their life

"simplify" lmao

Or rather to create an artificial market and justify their pay. More deeply, it is a symptom of our economic system that forces to do such things for having a living.

Point is, most normal computer usage absolutely should NOT require a 10TB SSD and 256GB ram. It didn't for providing the same/more functionality a few years ago, why does it suddenly require these days?

More importantly spending 99% of the time on self-inflicted non-problems that come with using the web as application platform. For example that anyone can open any url anytime...that alone leads to so many problems related to security (user isn't supposed to be able to see/edit/etc this part) and flow (this page shouldn't be visited before filling a form in this other page, and or if we randomly visit there it would error out crazy, what if user deletes their session, what if network is lost which can happen literally any time in the applications life etc) and then of course theres the matter of anything that would be a trip to ram/local hard disk becomes a networked trip to a distant server.

just old PC with Core i5.

with possibly 8 gigs of RAM?

Thats still WAY faster than most machines being used in the wild.

Sorry, your SV bubble is showing.

It's absolutely ridiculous how some content based websites require several MB of js to function. And the devs say this is because it is 'easier' to write such apps. And if the thought of optimization even comes to their minds, its just adding another layer on top of this madness to manage the layers below, or saying its too hard. Of course it is hard if you start with an overcomplex solution in the first place and try to trim away stuff from it. How hard exactly is it to write some plain html and css, with js doing some optional improvements? Most problems of web development are self inflicted.

I was talking to someone once about how ridiculously bloated Imgur is and that I had to use Imgoat because of the slow internet I was experiencing then. Of course they were trying to make all kinds of excuses like imgur not having servers nearby etc. But of course the really simple fact couldn't get to their heads that Imgur downloads like what 2-3 MB maybe even more of crap minus the actual image whereas Imgoat is something like 500 KB. No amount of network optimizations and caches etc are going to get over this fact. And also, such optimizations are over and above the page download size improvements anyways. If Imgoat used such techniques it'd be even faster. Most importantly: both sites have the exact same and simple core function, yet one site is so many times more bloated than the other. I will let you derive your own conclusions as to what this means.

And imgur also has the typical horrendous js misuses such as scrollbar hijacking that makes absolutely no sense etc.

They'd probably keep it a secret if they manage to succeed (and slowly dole it out as per need and sell it at high present costs); of course unless a rival manages to do so as well and threatens "publicizing" the fact.

edit: The article does seem to cover this situation kind of.

Of course, thats the image they would love to present. And of course, why would they even have the actual people in the know making these presentations.

And it is very natural they'd be interested in Big Data and Artificial Intelligence. Even a fool could understand why.

Hey I'd comment on your stuff but those are completely out of domain of knowledge. And on big popular sites, getting attention to your content is mostly a matter of luck. Or if you care enough you can see the relation between votes and time of the day etc and use this knowledge to your advantage.

Why are strings made immutable by default in some langs (I have seen this mainly in java and python)? Nothing fundamentally requires strings to be so. Has some analysis been done indicating most string operations in software would benefit by immutable form rather than non-immutable form?