Readit News logoReadit News
playing_colours commented on What I gave up to become an engineering manager   emdiary.substack.com/p/wh... · Posted by u/kiyanwang
MEMORYC_RRUPTED · 2 years ago
Tangentially related: I've been struggling with the decision to go for the technical track or the management track in my current org. I'm lucky to work in a company that has a technical ladder (though one can certainly argue that everything above staff isn't really realistically achievable). Certainly has my preference.

But being in Western Europe, most companies don't have this, and with the current state of the industry, with somewhat regular lay-offs, if I have to change jobs and want to stay an IC, I'll basically have reached the plateau of where I can get career-wise. The only way to get past that barrier is becoming an EM.

I hate to even have the thought, because, purely on principle, it's the worst reason to become an EM. But career-planning wise, I'd be crazy not to.

Anyway, your post is another argument in the column to stay on the technical track a bit more, we'll see what life brings :).

playing_colours · 2 years ago
As a Staff and higher engineer you may be paid on the level of EM or Director. So switching the career track as an engineer beyond senior in most cases will not lead to salary increase.

Second argument is the assumption that switching to management opens the doors to much higher salary ceiling. In theory, yes, but realistically there is a strong competition for high level positions, few of us reach those places, and there is a big chance that one will simply stuck at a Director level position till retirement. Think if you enjoy management so much that you are ready to replace ability and joy of building things with more meetings, budget discussions, and politics.

Particularly in Europe with our taxes the benefits of slightly higher income may not have a sensible impact on your life.

playing_colours commented on Book people think they know why 9-year-olds stop reading for fun   slate.com/culture/2024/05... · Posted by u/petethomas
RoyalHenOil · 2 years ago
If such things influence works of fiction, they must surely influence works of nonfiction just as much, if not more so — yet I never had a schoolteacher ask me to analyze nonfiction writings anywhere close to the depth I had to analyze novels.

It wasn't until the tertiary level that I first analyzed science writings and related philosophy writings to a similar depth (albeit for a different purpose), and discovered to my delight how many of them are written with a beauty and a kind of humanity that verges on poetry. It moved me in ways that fiction never has, I think in part because of the purity and honesty of my discovery — so unlike the trudging hours I spent miming proundness in school until I could no longer recognize it.

I am truly glad that nonfiction analysis was neglected in school, because it otherwise would have been robbed of all its spirit and magic, too.

Why do we force students to analyze text in this manner at the cost of killing their love for recreational reading? So many children, who once loved story time best of all, grow up to hate books and poetry. Yet they still love the search for meaning in cinema and music which, as yet, still remain mostly beyond the killing touch of involuntary study.

Is it any wonder literary analysis feels fake to so many people?

playing_colours · 2 years ago
Can you share any example of non-fiction literature with beauty and humanity? Thanks!
playing_colours commented on Covid infections are causing IQ drops and years of brain aging, studies suggest   cbc.ca/radio/quirks/long-... · Posted by u/luu
skrebbel · 2 years ago
The news trick really helps huh. We do it too and wow
playing_colours · 2 years ago
Have you tried autoimmune protocol diet? Anecdotally, but it may help.
playing_colours commented on The day I canceled my Spotify subscription   blog.raed.dev/posts/goodb... · Posted by u/Raed667
wolframhempel · 2 years ago
I believe, Spotify is pretty much the best thing ever. I understand the criticism - but to me, this is just a sign of how far we've come.

I was born in 1984 and, from a very early age, was really into Metal. That was a problem - since there were literally zero ways to discover new songs. The radio and MTV didn't play Metal. None of my friends shared my taste in Music. The listening stations at HMV & Co (remember those - the headphones hanging from the wall with 5-10 albums pre-loaded) never had Metal Albums.

My entire strategy was based on going to a record store and buying whatever had appealing cover art in the metal section. And I did this A LOT. The entire backwall of my room was taken up by a stereo and an ocean of CD stands.

That was expensive. Really expensive. At somewhere around $15-20 dollar for an Album, buying an Album a week took up about all my allowance - and most of the measly income from side jobs I've made as an adolescent.

Would you have told me back then, that for just 11$/month I could have all the music. ALL OF IT. And I would have a super knowledgeable entity that suggests new stuff to me. And I could just listen to a track or two without buying an Album. And it wouldn't take up space. And it didn't have CDs that could get scratched - I think I would have fainted.

Long story short - yes, Spotify isn't perfect - but dear god, is it (and related services) amazing relative to what I had when I was tiny.

playing_colours · 2 years ago
I was lucky to have a few friends sharing my passion for metal. Anyway there were quite a lot of magazines about metal music. They really helped me to discover new styles, bands, and releases.

Oh how I enjoyed reading the reviews of the new albums back then! Some journalist were very talented in describing the music in tasty details and I was longing for the moment, when I buy and listen to the long awaited CD.

playing_colours commented on Ask HN: With all the layoffs – how are you?    · Posted by u/uptownfunk
md1348 · 2 years ago
Do you have tips on building a network? As an introverted developer at a non-tech company in a third-string city, I find few in-person opportunities to talk shop with thoughtful programmers. When it comes to the internet, I feel like I don't have anything valuable to add to the conversation.
playing_colours · 2 years ago
If you have motivation and time, find a niche, a project you are interested to dig into. Spend a month on learning about it, write some code. Then contact OSS contributors working in that area, show interest to learn and contribute. It may work. Good lick!
playing_colours commented on Databases and why their complexity is now unnecessary   blog.redplanetlabs.com/20... · Posted by u/adamfeldman
ebiester · 2 years ago
This was a very similar conversation that the team at my last job had. Our data were customer-facing so it was a slightly different problem, but the question of "our application cares about what the present state is, but our analytics cares about trends and point-in-time" is a more universal problem.

We used Debezium and Change Data Capture + Outbox patterns in some cases, and solely outbox patterns in others. (See https://debezium.io/blog/2020/02/10/event-sourcing-vs-cdc/ ) - You then can use the change events to do the analysis. That solves your "log all actions" problem. It's still a lot of work to put together the analysis (a tool like DBT helps) but it is a solved problem with enough labor at that point and doesn't disrupt the actual application.

If I was starting from scratch on an application today that I thought might have analytics needs in the future, I would get this early on even if I didn't need it yet.

playing_colours · 2 years ago
Did you roll out your own implementation of Outbox pattern? It is an important pattern to address potential data inconsistencies, but I did not see yet a good scalable implementation of it.
playing_colours commented on Architecture Antipatterns   architecture-antipatterns... · Posted by u/simonharrer
playing_colours · 2 years ago
Apart from the patterns that are obviously good or bad by definition, most of the patterns and architecture decisions have their pros and cons, and the focus is on understanding, discussing those tradeoffs, and going with tradeoffs that a team / company prefers to deal with. Monolith vs. microservices, synchronous vs. asynchronous communications, small events vs. fat events - the list can go on, there are no silver bullets or clearly right choices.
playing_colours commented on Ask HN: What are you passionate about at the moment?    · Posted by u/kurtdev
denvaar · 2 years ago
Learning about Information Theory.

It’s pushing me out of my comfort zone. For example, leading me to improve my math skills in order to understand some of the concepts and notations that are used in research papers. Also gives me some context into learning C, a language which I consider low-level as a web developer, and it’s been fun to have to think about things like memory management, along with other things I don’t generally need to consider. It gives me an appreciation for when I’m writing high level code like Elixir or JS, etc.

Compression, which I’d say is an application of information theory is just really interesting to learn about for some reason.

playing_colours · 2 years ago
What sources for learning do you use?
playing_colours commented on Singapore: Right to own a car costs $76,000. And that doesn't include the car   cnn.com/2023/10/05/asia/s... · Posted by u/Tomte
gerikson · 2 years ago
You can get along quite well in Denmark without owning a car. Hence, car-owners are proportionally not as big a voting bloc as in the USA.
playing_colours · 2 years ago
It is true for Copenhagen, but I wonder how it feels to families living in rural areas.

u/playing_colours

KarmaCake day879April 11, 2012View Original