I've been struggling to explain the principle behind the "stupid questions" and your example illustrates the point perfectly. Thank you. I'll be shamelessly stealing this point from now on :)
Absolutely. As I get more and more senior, I found myself prefacing a lot of questions with "let me ask some stupid questions" to ask some broad questions or context of the meeting. It can be something seemingly obvious, what's important is it somehow breaks the barrier for others to ask questions. I used to say "I'm going to play my 'new guy' card one more time" when I'm new at a company, but this seems to work more generically, and tends to work in the team's benefit.
It's kind of boring but I'm learning k8s and argo-cd to figure out if I can do feature-branch deployment to a cluster.
like, it would be very cool to do something like have your feature branch be deployed to a separate pod in dev cluster, and have an ingress rule set up so that it points to that pod only.
So if your dev environment usually points to <some-app>.dev.example.com,
Deploy your feature branch to a dev cluster, but on a different pod. Then have it reachable to <some-app>.feature-branch-1.dev.example.com without touching main.
I think it's a neat idea and I'm sure it should be possible if I configure some istio settings.
It's all new thing and it's fun to have a direction towards learning
Just out of curiosity, what were the reactions like from what you saw? I had the opposite take from Reddit, which proved to be incorrect. So I'm just curious how you read(more correctly than me) the reactions vis-a-vis Reddit.
That's from Indeed. And, Indeed has fewer job postings overall [https://fred.stlouisfed.org/series/IHLIDXUS]. Should we normalize the software jobs with the total number of Indeed postings? Is Indeed getting less popular or more popular over this time period? Data is complicated
Look at that graph again. It's indexed to 100 in Feb 1, 2020. It's now at 106. In other words, after all the pandemic madness, the total number of job postings on indeed is slightly larger than it was before, not smaller.
I love hearing more about this, especially the historical context, but don't have a good java writeups/articles on this. Would you mind sharing some suggestions/pointers? I'd very much appreciate it.
A good starting point is Joshua Bloch’s Effective Java. He shares some stories there from Java’s early days, and - at least in passing - mentions some aspects of the String class’s history.
Ah, I certainly remember these anecdotes! What other resources would you recommend(even the tidbits) could there be for more modern Java? The original article like this one should be treasured.
String compression was one. tl;dr: the JVM supports Unicode for strings, but uses 1-byte chars for strings where possible (previously it was UTF-16), even though it's not actually doing UTF-8.
Depending on what sort of document you're looking for, you might like either the JEP: https://openjdk.org/jeps/254
(I think I saw a feature article about the implementation of the string compression feature, but I'm not sure who wrote it or where it was, or if I'm thinking about something else. Actually I think it might've been https://shipilev.net/blog/2015/black-magic-method-dispatch/, despite the title.)
Absolutely love it. Thanks a lot. A fancy hit me yesterday and I've been looking through JDK's String commit history to see little tidbits that I could grab.
Shipilev's website looks like a fascinating resource. I appreciate the pointer!