by mikewarot on 1/20/2022, 10:28:06 PM
by tedmiston on 1/20/2022, 6:21:17 PM
The frontend "stack" has become unnecessarily complicated in the last ~5 years.
by marcofiset on 1/20/2022, 9:02:00 PM
There's way too much bloat in modern web dev.
Not everything benefits from being a SPA (quite the contrary).
by josephcsible on 1/20/2022, 5:53:19 PM
The benefits of Kubernetes aren't worth its immense complexity in most organizations. If you want to put things in containers, just use Docker Swarm.
by labarilem on 1/20/2022, 8:00:35 PM
Some backend frameworks (of various languages) have way too much abstraction and configuration. This usually means coding a small non-standard feature takes lots of time. But coding only standard (e.g. CRUD) features is fairly quick if you don't have a big framework too.
Also, lots of developers never know what happens below that stuff. Don't get me started on how many people I've seen despairing over "configuration debugging".
Some really big projects can be exceptions to this line of thought. But most teams don't work on those really big projects.
by yen223 on 1/20/2022, 10:42:58 PM
There's not enough data in the practice of software engineering. A lot of software engineering "best practices" aren't backed by any kind of evidence.
by simantel on 1/20/2022, 5:38:19 PM
Most single-page apps shouldn't be single-page apps. Start with server-rendered HTML and forms. Maybe sprinkle in some jQuery or Alpine or HTMX if you really need to.
by genmud on 1/20/2022, 6:58:55 PM
I don't trust any software involved in safety critical applications that can be updated after manufacture.
To clarify, I find that engineers rely too heavily to let their users find bugs in the field and most engineers tend to think "oh, I'm sure it isn't a big deal, and if it is we can just update the firmware/software".
by tedmiston on 1/20/2022, 6:19:51 PM
Start with a monolith, not microservices.
by tmaly on 1/24/2022, 6:22:34 PM
Many of the problems frameworks are trying to solve were solved many years ago. People just like shinny new toys.
by moneywoes on 1/20/2022, 7:20:51 PM
Offshoring is a real threat to software development and salaries are going to drop in numbers reminiscent of 2001
by buzz_worthy on 1/20/2022, 9:18:27 PM
My current hot take is that RedwoodJS has solved most issues with web app development. It's so good to use.
by alexmingoia on 1/21/2022, 1:07:15 AM
Software can be shipped on time. Professionals meet deadlines. Deadlines are beneficial for creative work.
by zaphar on 1/20/2022, 7:21:26 PM
Most places build their software using incredibly subpar tooling. This will not change anytime soon.
by tored on 1/21/2022, 3:34:18 AM
Software & software development will suck this year too, exactly like last year.
by recursivedoubts on 1/20/2022, 9:19:24 PM
hypermedia is a better architecture for most web applications being built today
by type0 on 1/20/2022, 9:03:09 PM
There are no real Full stack developers
by asfarley on 1/21/2022, 5:17:48 PM
Most important software is done already.
by Parkeradam916 on 1/21/2022, 10:55:19 AM
Computer science
by krasicki on 1/20/2022, 7:50:58 PM
Watch your back.
1> Because no current OS is based on capabilities, no current OS can be trusted to secure an application. This void is being filled with containers and virtualization as a stopgap. Eventually, capability based operating systems could fix this, and become a trillion dollar market.
2> There should only be one logical task per line of code. The right density is that of basic or pascal. Clever use of compound assignments, macros, etc. cost more than their worth in the long run. It makes code harder to read, and easier to misunderstand, even when you're writing it.
3> Moore's law gave us a nice boost in hardware, but the ride is coming to an end. If your software doesn't distribute across cores, you're going to be stuck in the slow lane compared to that which does.
4> Accounts with usernames and passwords are going away. Capability tokens that can be revoked and renewed are going to be the next big thing. Think Flickr's guest pass to look at an otherwise private photo album, for example.