Maybe a consultancy of people who have seen and done it all before - Very selective of their clients.
I am retiring from tech to live offline
321–330 of 617 posts
Re: I am retiring from tech to live offline
#322Earlier quoted context omitted.
Yes it is. You don't need to announce whether you are using AI or not. Just keep doing your job, use AI when it pleases you and keep building manual code when you think that's better. That's what I do, I have never been asked if I use AI to write my code. If it's dumb code I use AI. If it's something that I want to craft I don't
Where I work % of code written by AI and AI spend is tracked all the way down to the individual person. It is obvious to me that this will be used in performance reviews in the future.
Re: I am retiring from tech to live offline
#323I have been at it for 20 years now and have started to feel my time is up as well As a lot of comments here highlights, the issue is not so much the tech but the politics, constant perf reviews, re-orgs, nonsense BS that is pushed top-down. This industry is taking a toll on you. My advice for anyone reading this that is starting your career: Live simply and save a lot. When I started my career I thought I would love…
I would take this advice a bit further even -- I don't think savings alone is the key, because inflation and de-dollarization are exponentially eroding purchasing power. The key is ownership of income-producing assets. In late-stage capitalism, the vast majority of people who work in exchange for wages will be members of the debt class; workers who manage to escape debt will still be living on a knife's edge where yo…
Re: I am retiring from tech to live offline
#324Earlier quoted context omitted.
Yep. Chad is great. Although, if anyone were to lead a cult, I figure it would be Chad, hopefully he doesn’t accidentally charisma himself into a cult leader situation.
Well he does say in the letter he wants to be part of an offline-only community, and is starting a magazine centered around it combined with Orthodox Christianity... this after talking about a community in India that kills outsiders and wanting to be like the Amish. Seems cult-adjacent
Re: I am retiring from tech to live offline
#325I plan to do the same eventually. I want to buy a shop and become a mechanic, primarily flipping cars, and doing actual repairs for a fair price. I need to get to the point where the business venture only needs to do a bit better than break even, and I'll quit this industry. After more than 20 years in tech, I've done a lot of cool things with smart people, but almost none of what I built still exists (every tech sta…
Re: I am retiring from tech to live offline
#326Best wishes. You are an inspiration.
Re: I am retiring from tech to live offline
#327Earlier quoted context omitted.
I could and did live frugally before I had kids. How can one continue living in a small apartment with lead and asbestos hazards is beyond me.
There is surely a spectrum between small apartment with asbestos and 5m$ house. I read on HN all the time that once you have kid it is unavoidable to spend 300k$ a year. But yet 99.9% of the world and the US manages to raise kids with a fraction of that income and they turn out mostly fine. (Before you ask, yes I have kids and yes we still live simply)
Re: I am retiring from tech to live offline
#328For those scratching their heads asking who is this guy and why should I care? He has been tackling the open source sustainability issue since launching gittip circa 2012. Since then millions of dollars have been raised for open source because of him. Sure it’s a drop in the bucket but he did it. Chad is a friend of mine. You can’t find a nicer person in tech than him. I hope this is temporary because he can still ma…
Re: I am retiring from tech to live offline
#329What's not completely clear from the post is what he dislikes with AI / technology. Does someone know?
Re: I am retiring from tech to live offline
#330Funny, if all goes well today is my last day as professional software engineer, after 20 years. I have enough savings to buy a modest cottage and to last me a year or two being frugal. After that it’s anyone’s guess, but I am beyond excited not having to program for a living any more, just on what feels meaningful, in complete autonomy. Projects lined up: a Erlang-like microkernel/runtime I have been designing for th…
> a Erlang-like microkernel/runtime I have been designing for the past 4 years, I don't want to step on your design process, but if you want to explore some microkernels to run beam, I can link you to mine and another one that I ran into recently. Asking before linking, because sometimes you'd rather not look.
2. I'm not exactly looking to recreate the BEAM. I'm building a message-passing microkernel built on my interpretation of capabilities: they replace PIDs in a way that they basically become akin to object pointers, with all the extensibility and security. It's a pretty wild prototype, with a ring-0 kernel that's less than 2k lines which only deals with paging and interrupts, and the userspace is one-scheduler-per-core and a stackless design on a linear address space. A design goal is MAXIMUM performance and simplicity: in most cases a sending a message to another capability is no heavier than a function call, unless the destination is currently busy.
Processes just export a
void handle(void *cap_private_state, msg_t message)
entrypoint instead of a main function. I just want to see where I can take this idea.