

I’ve enjoyed bandcamp’s writeups. They seem to be written by real people.
I also sometimes peruse the “who else bought my favorite album this month?” listing. Find some gems and wild cards there.
I’ve enjoyed bandcamp’s writeups. They seem to be written by real people.
I also sometimes peruse the “who else bought my favorite album this month?” listing. Find some gems and wild cards there.
Other people have good answers already. Chiefly to ask questions and talk through your reasoning.
But also I’ve noticed the difficulty of interview questions varies wildly. Some places would give dynamic programming problems I’m terrible at. Others would give trivial "find the largest number in this array of integers, in python. Don’t worry about efficiency. " problems.
I used to use the beginning of clutch’s psychic warfare. The first track is some low murdering, and then it comes in hard with X-ray visions. Always woke me right up.
I also used slothrust’s “like a child hiding behind your tombstone” for a while. That also starts a little quiet and then ramps up. Never hated the song, somehow. https://slothrust.bandcamp.com/track/like-a-child-hiding-behind-your-tombstone
Now I just have one of the default alarms and I kind of hate it.
A nightmare. I’ve never had anything quite that bad, but I’ve had plenty of work experience where management is making bad decisions and has no accountability.
My current role is hourly, so I’m happy to shut the laptop exactly 8 hours into the day. Pays a lot less, sadly.
I just assume big businesses are run by idiots.
If Microsoft had their shit together, they could’ve made something like Steam. That’s just printing money.
Use a dedicated data type or library. Some languages also have something like python’s Decimal type
>>> .1 + .2
0.30000000000000004
>>> Decimal(".1") + Decimal(".2")
Decimal('0.3')
Yep. Open your browser’s console and do .1 + .2
and you get 0.30000000000000004
.
One of the reasons not to use floating point when working with money.
Executive function.
I don’t know but it seems like a lot of people around me are just in a haze. Probably some of it is ADHD.
I went back to windows for a few months on the newer desktop. I installed mint and discovered it had a lot of problems with the hardware. HDMI, Ethernet, WiFi, and various downstream things didn’t work. I fixed some of it with help from forums and such, but eventually I went back to windows.
But a couple months later, I tried Pop!_OS and that has worked perfectly out of the box. No regrets.
I decided I was done with reddit. I never used apps so I just signed out of my account and never went back.
Booleans work in any order. A and B
is the same value as B and A
Unless you’re interpreting the phrase as “have your cake and then eat it too”? Which I never did before, but that would make your objections make more sense to me.
No one would go if they weren’t getting paid.
I don’t know I’ve met some boot lickers that would work for free.
I think sometimes in an informal context it’s worthwhile to realize the other person is not a credible source arguing in good faith. The amount of effort it takes to discern and counter bullshit is way more than the effort to just make shit up. Sometimes you don’t want to spend an hour researching to refute someone’s lies.
In that case, “You’re a dishonest person arguing in bad faith” is appealing, reasonable even, despite attacking the person instead of their statements.
Apparently Vanguard has a whole proxy voting system that I left on the defaults!
Solidarity doesn’t have to mean they like have a club with a secret handshake. Their goals are aligned, and they tend to work towards those goals, even without explicit coordination. It’s rare to see anyone in the ownership class work against those interests. You don’t see a lot of the owners saying “we should give people more time off” or “we should let the workers have a say”. It’s pretty consistently “we should squeeze people for more money”. It makes the news when ownership is like “We’re going to pay people more”, and it doesn’t make the news when labor is like “i’ll just work a little more off the clock to catch up”.
Contrast with labor, where people are often undermining their interests. Being anti-union, voting against regulations that would protect them from exploitation, giving away labor for free.
Solidarity doesn’t mean they’re all in love and never squabble. But it does mean that they will prioritize their class’ interests, especially if it’s in conflict with labor.
I assume rich people often keep enough shares to control who sits on the board, and thus who is the CEO. There’s a lot of people sitting on multiple boards, folks know each other, blah blah blah.
Also many shareholders aren’t really involved. I don’t even know how it works if you own shares through Vanguard or something. I’ve never been asked to vote on company policy.
From what I’ve seen in start-up land, leadership is a lot of in-group bro times. It’s all gut feel. Shouldn’t expect rational, honest, decisions from them.
The rich have class solidarity. They’re not going to casually fuck each other over like that.
Nice! I got about two remorts in, but haven’t played in a while. It’s a pretty solid mud.
I’ll always have a soft spot for Project Bob, which I think shut down. Diablo-style items and a very fast paced combat system. Alas. Time marches on.
Product owners say, "We want to change the site so users see a list of all the other users on their team with access to this project "
Okay. Do some thinking. Going to need the backend to return that information to the front end. Decide what URL that should be under (api/v1/projects/users, maybe?).
Now we make the backend actually do that. Create a new file for this endpoint. Update the routes file so that url points to this file. Write the handler class.
Does this endpoint take any particular input? We know who the caller is for free from the framework. We only want to return info about one project or all projects? Make that decision. Update URL if needed.
Write the code to get the other users on the projects in question. Maybe that’s SQL, but might also be ORM (code from a framework that generates SQL based on objects). Decide what information we actually need. Package that up and send it back. The specifics depend on language and framework.
Write automated tests for this. Make sure it works for
Realize this needs to paginate. Go back and change the handler code to do that.
Realize due to some quirk of how permissions work, someone can be on the project twice. Talk with the team about if we should just decide that here, or try to fix the root problem. Probably the former.
Add deduplication code, then, and test cases.
Open this up for code review.
Start the front end work.
Make a dummy page first and update your API calling code to know about this new route, assuming you don’t have that auto magically set up somehow. Make sure it calls it and gets a response.
Realize that staff users technically have access to every project in the system. Ask product if that’s how they want that to behave. If no, figure out what you all want that to do instead.
Do a bunch of react work to make the page pretty, put the response in the right UI elements with links to the right place. Realize the response you’re sending back makes building the links annoying because you didn’t send some part of it, so you’d need to make another request to the backend for every link. That sucks. Update the backend to include the user’s team-id that is for some stupid reason still in the URL. Comment on code review.
And now I’m tired of writing.
Edit: I hit submit before I was done. Finished now. Edit: fix typo