I have also experience close to burnout and recovered multiple times, in the process I have lost very precious relationships, and entire years were spent in darkness. I also have friends who have been in tech for close to ten years, and are close to burning out though they would never admit to such. This is the nature of the beast, all things that appear glamorous on the outside ( Hollywood, Finance, Tech, many nonpr…
This sounds so American to me. I grew up in Eastern Europe and general attitude towards work, life, and friendship is so much different. Some of the best friendships I've made were at the companies I worked for. I've seen cases where people make so good friendships at work that it even makes them postpone switching jobs to move up the career ladder. Work is not everything in your life. Work is important for sure, but…
Extremely disillusioned with technology. Please help
551–560 of 754 posts
Re: Extremely disillusioned with technology. Please help
#552I'm having similar issues, and i think i found a way out: stop playing their game. Don't make enterprise software. Don't write unit tests. Don't accept pull requests. Simply write software for yourself and have fun doing it. Forget refactoring code into modules, just fucking code. Don't worry about deployment with k8s, just copy the Python script to your production folder and run it. Fuck all that shit about git bran…
> Don't make enterprise software. Don't write unit tests. Don't accept pull requests. Simply write software for yourself and have fun doing it. Forget refactoring code into modules, just fucking code I've found a really nice perspective on this recently: An app can be a home-cooked meal [1] It's okay to build things that aren't popular, that don't scale, or that aren't economically viable, for the delight of a few us…
Re: Extremely disillusioned with technology. Please help
#553Earlier quoted context omitted.
I agree with the OP comment, and also with this one. It is important to understand two things in coping with the state of the world in my opinion. 1) The reality is you need to find validation and fulfilment outside of work, because in our current society you are just a drone. 2) Don't be depressed because it seems like this is how it's always been. It hasn't. Our work culture is broken. People never used to be so fa…
> Working the land, being close to home, running a family business, belonging to a small town of people you all known, having the social safety net of many people that are close to you and your family, being an independent contributor in the town's economy, etc. etc. This is how things were a few hundred years ago. Let’s not overglamorize rural poverty. This life came with 20–40% infant mortality and a very high rate…
Re: Extremely disillusioned with technology. Please help
#554Earlier quoted context omitted.
I’m talking about rural Mexico up through the 1960s, within the living memory of elderly people (with some of the features I mentioned persisting today or only recently changing). The US South was like this at least through the first few decades the 20th century (after WWII the US Federal government made a tremendous effort to bring jobs and infrastructure to underdeveloped parts of the country), as were many parts o…
The past was fairly horrible, of course, but we've definitely lost elements of it which were good. For example, commerce where both parties know and care about each other on some level like you might find in a farmers market or similar. Remnants still exist, but the mass market replacement, supermarkets, are missing a lot that was once better in the past. We've certainly vastly exceeded any previous material lifestyl…
There are farmers market around my area and my impression is that, if anything, people selling there can be more dishonest than the big chain stores - i.e. they will try selling a batch of bad apples, because they're not wealthy and they just need the money. Whereas big chains have quality standards and will just throw away bad food.
Re: Extremely disillusioned with technology. Please help
#555I have also experience close to burnout and recovered multiple times, in the process I have lost very precious relationships, and entire years were spent in darkness. I also have friends who have been in tech for close to ten years, and are close to burning out though they would never admit to such. This is the nature of the beast, all things that appear glamorous on the outside ( Hollywood, Finance, Tech, many nonpr…
This sounds so American to me. I grew up in Eastern Europe and general attitude towards work, life, and friendship is so much different. Some of the best friendships I've made were at the companies I worked for. I've seen cases where people make so good friendships at work that it even makes them postpone switching jobs to move up the career ladder. Work is not everything in your life. Work is important for sure, but…
Re: Extremely disillusioned with technology. Please help
#556Earlier quoted context omitted.
While I dabbled with python and Delphi for a bit,my first real development was on Salesforce platform with their proprietary language called Apex. The first thing every developer learns on thos platform is that your code has to have at least 75% test coverage before it can be pushed to production.Testing was inevitable and ultimately part of anything I had to write. With time,I started reading more and more about dev…
But what do you do if your initial codebase is crap. You literally cannot test until you refactor 50% of it into something semi-sensible.
Re: Extremely disillusioned with technology. Please help
#557I'm having similar issues, and i think i found a way out: stop playing their game. Don't make enterprise software. Don't write unit tests. Don't accept pull requests. Simply write software for yourself and have fun doing it. Forget refactoring code into modules, just fucking code. Don't worry about deployment with k8s, just copy the Python script to your production folder and run it. Fuck all that shit about git bran…
> just do whatever you want in the moment, bit by bit I thought we were talking about technology. You gave a recipe for spaghetti.
Engineering has its place. But you can also make art with an engine lathe, and doing just that every now and again can be a balm to the soul.
Re: Extremely disillusioned with technology. Please help
#558Earlier quoted context omitted.
I agree with the OP comment, and also with this one. It is important to understand two things in coping with the state of the world in my opinion. 1) The reality is you need to find validation and fulfilment outside of work, because in our current society you are just a drone. 2) Don't be depressed because it seems like this is how it's always been. It hasn't. Our work culture is broken. People never used to be so fa…
> This is why the working-from-home trend that I hope COVID will kick-off is going to be a good thing. While we may still be working for the same companies, having a tighter integration between work and home is actually good for our mental health. Alternatively, it extends the reach of companies further into the home environment, and may exacerbate the existing trend for people not to switch off, which in turn makes…
Re: Extremely disillusioned with technology. Please help
#559Earlier quoted context omitted.
The thing that unit tests are really good for is providing a safety net when you make changes. And I love them. I have a few multi-year projects that sit and do their thing for months at a time with no changes; when I come back to them with a client request, the test suite is awesome for making sure that whatever I just changed didn't break something else (alternatively, the tests point out an assumption I made when…
> The thing that unit tests are really good for is providing a safety net when you make changes In all projects I have worked on, extensive unit tests were not a safety net against regressions, but a safety net against change.
Heh, yeah, that's fair, although I think there's some nuance in terms: accidental changes (to things that were working) is a form of regression in my mind. Depending on how the codebase is structured, changing the tests to match the new desired behaviour might be trivial or might be excruciatingly complicated. These days (mentioned elsewhere in this discussion) I'm working on more embedded stuff, and the only time I'm generally writing unit tests are for things that shouldn't change.
As an example, last year I was working on a custom LoRaWAN stack. As I was building out the various pieces, I was writing tests to verify that the output from generally-pure functions came out as expected. (This packet) + (This key) = (This encrypted packet). Those kinds of tests help a ton for catching stupid mistakes.
Re: Extremely disillusioned with technology. Please help
#560I wrote nearly this exact message in my mood journal today. I haven't had it quite as bad as the author, but I'm extremely, and it feels like permanently, burned out of working for a business/corporation. I fundamentally hate it. I walked out of my first corporate job after a month and now that I'm on my second, all I can think about is walking out. I hate it. I hate it so much. Every single day feels like I'm ruinin…