Yeah but like, what new features do apps have which weren’t available in those times? Embedded videos maybe? Doesn’t justify the bloat.
- 0 Posts
- 20 Comments
Cratermaker@discuss.tchncs.deto Programming@programming.dev•Why Java endures: The foundation of modern enterprise development3·2 months agoI used to think C# was like Java but with fresh ideas. I still do, but Kotlin gives it a run for its money. The type system is pretty great. For example, you can use the Elvis operator to return early if something is null, allowing you to use a non-null type afterwards. In C#, nullable annotations feel more “grafted on”, and there are some weird quirks and footguns that Kotlin avoids by being a little smarter about it.
You might enjoy learning vanilla js and making a site with as few deps as you can get away with. Or a lightweight framework like svelte or preact. The browser stack is definitely some weird shit but it’s still somewhat approachable if you dig under the abstractions that most web devs never venture beyond. It definitely helped me cut through all the manufactured noise.
Cratermaker@discuss.tchncs.deto Programming@programming.dev•Goodbye SASS, welcome back native CSS111·5 months agoGood riddance, I say. Web dev is infested with layers upon layers of tools that attempt to abstract what is already fairly simple and straightforward to work with. We’re beyond the days of needing to build buttons out of small image fragments, and JS is (slowly) becoming more livable in its raw form. I welcome anything that keeps the toolchain as simple as possible.
Cratermaker@discuss.tchncs.deto Programming@programming.dev•It's probably time to stop recommending Clean Code @ Things Of Interest26·10 months agoThere’s nothing quite like the unique pain of navigating an unfamiliar codebase that treats abstraction as free and lines of code in one place as expensive. It’s like reading a book with only one sentence per page, how are you supposed to understand the full context of anything??
Cratermaker@discuss.tchncs.deto Programmer Humor@lemmy.ml•Came back to learn you have job security3·10 months agoThey probably got stuff done, just not the things you left half implemented code for…
Software devs in general seem to have a hard time with balance. No comments or too many comments. Not enough abstraction or too much, overly rigid or loose coding standards, overoptimizing or underoptimizing. To be fair it is difficult to get there.
Cratermaker@discuss.tchncs.deto Programming@programming.dev•How to conduct a software audit?4·1 year agoMaybe the word “audit” is incorrect? If they didn’t provide you any guidelines, I’d definitely recommend asking. But it’s possible they’re just looking for your perspective on best practices and possible improvement ideas, more like a general code review.
Cratermaker@discuss.tchncs.deto Programmer Humor@programming.dev•Probably the wrong meme format5·1 year agoInteresting, yeah. I inherited a Blazor project though and have nothing positive to say about it really. Some of it is probably implementation, but it’s a shining example of how much better it is to choose the right tool for the job, rather than reinventing the wheel. For a while I was joking about setting the whole project “ablazor” until we finally decided to go back to a React/C# ASP.NET stack. If you’re thinking of using Blazor still, though, I think two fun things to look into are “linting issues with Blazor” and “Blazor slow”. I’ve heard people praise it, but they tend to be those who consider themselves backend devs that occasionally get stuck making frontends.
Depending on the software, you still get to think about garbage collection!
Nothing wrong with being an EMT who does all those things as hobbies, unless the capitalist pigs to whom you sell your hours demand more than their fair share…
Cratermaker@discuss.tchncs.deto Technology@lemmy.ml•Reddit Advised to Target at Least $5 Billion Valuation in IPO82·1 year agoI’ve already left, but seeing them marching towards an IPO makes me even happier with my decision. I just fear that the mountains of helpful troubleshooting and advice on Reddit will be locked away forever soon, while the rest of the web falls to SEO and AI-generated nonsense text…
I wrote a json prettifier a couple months ago with just a couple lines of code. I thought it would take a while but ended up taking like 10 minutes.
Shout out to the yt channel Ahoy for making some of the most sleepable video game videos, like this one: https://youtu.be/9F9ahZQ7oP0?si=AzP9X_vq-o96gPD_ Also great when you’re not sleeping!
Cratermaker@discuss.tchncs.deto Programming@programming.dev•Hi, I want to start programming but dunno where to start and which language to learn4·2 years agoJust ordered a copy!
Cratermaker@discuss.tchncs.deto Programming@programming.dev•Hi, I want to start programming but dunno where to start and which language to learn8·2 years agoThis is the book that started it all for me 5 years ago. Now I’m a software engineer!
Cratermaker@discuss.tchncs.deto Programming@programming.dev•What are your programming hot takes?11·2 years agoIdk, I don’t see a problem with saying a new language is unintuitive. For example, in js I still consider the horrible type coercion and the “fix” with the triple-equals very unintuitive indeed. On the flip side, when learning C# I found the multiple ways of making comparisons to be pretty intuitive, and not footguns.
Cratermaker@discuss.tchncs.deto Programming@programming.dev•What are your programming hot takes?27·2 years agoNothing like trying to make sense of code you come across and all the function parameters have unhelpful names, are not primitive types, and have no type information whatsoever. Then you get to crawl through the entire thing to make sense of it.
If you think that’s bad, don’t think about how many important communications in the world happen completely verbally.
Yeah, he was bamboozled as soon as he agreed to allow multiple separate files. The challenge was bs from the start, but he could have at least nailed it down with more explicit language and by forbidding any exceptions. I think it’s kind of ironic that the instructions for a challenge related to different representations of information failed themselves to actually convey the intended information.