Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)S
Posts
0
Comments
31
Joined
3 yr. ago

  • Agreed. If you are not incompetent, you will remember the stuff that you use often. You will know exactly where to look to refresh your memory for things you use infrequently, and when you do need to look something up, you will understand the solution and why it’s correct. Being good at looking things up, is like half the job.

  • Trump has historically underperformed in poles and because of the electoral college advantage that Republicans have, Biden probably needs to be at least up four or five points on him, which is what he was last election and it came down to 20,000 votes across several battle ground states.

    yes, Trump lied during the debate. Trump is the worst candidate in the history of the United States and him being elected president would be a catastrophe for democracy. Which is exactly why many people in the Democratic Party including - if reports are to be believed - apparently Barack Obama, are trying to have Biden pushed out right now. That Biden is now taking a cavalier attitude that “he’s going to give it his best shot, and if he loses, well he tried his hardest and that’s what counts”…when his own campaign has been framing this threat from Trump as being detrimental to democracy, is the height of hubris.

    There are numerous reports that they’ve been shielding him and his mental capacity for a long time now trying to drag him across the finish line. The cat is out of the bag, and it’s a pretty big gamble to assume more things are not going to happen between now and the election. Is that a bigger gamble than switching candidates? I don’t know but I think it is.

  • I’m sure some people want him to step down because they think he is senile and can’t do the job, but I would bet that most of us want him to step down because he’s not going to win. I’d vote for a literal dead body before I vote for Trump. I honestly don’t care who it is. All I care is it needs to be someone who will beat him. Biden was already trailing Trump and many polls and after that debate and the obvious mental state that he’s in, it’s not gonna get any better. Furthermore, no arguments about Trump’s mental state or anything about him matter. Trump is a monolith. He is what he is. He has the support he has and nothing will change that short of him dropping dead. So either Biden can beat him or he can’t and most of us think he can’t.

    Biden asked for that debate because he was behind in the polls and his unfavorable rating is abysmal. No president has ever been reelected with the approval rating Biden currently has. He shouldn’t even be polling even with Trump. He needs to be polling way ahead of him to have any chance of winning because of the way the electoral college works and favors red candidates.

    Him stepping down still probably won’t matter and Trump will probably win but at this point, I think a lot of people realize Biden has no chance, so even though a replacement candidate this late in the game is dubious proposition. It’s probably better than what we have right now? What he’s doing is trying to run out the clock to prevent the possibility of somebody being able to replace him, purely because of his ego.

  • I personally don’t think that’s the issue with the typing system. With vanilla js if I’m looking at a function that has say four parameters that are not trivial objects like strings but are actually complex (think dependency injection) it’s very difficult for me to know what these objects are other than reading through the code of the function.

    Actually, even if the parameters are simple, I’m not sure of that until I look into the function and see what it’s doing. This is a huge pain in the ass most the time, because I just wanna look at the function name its parameters and move on. However, that being said, most of this can be remedied with jsdocs and a good linter/lsp.

  • The real problem is that across the globe there is like 50 different implementations of it. Some places have a fucking half hour, or some goofy shit. Really fun handling time zones with that sprinkled on top.

  • Time zones are part of it, but also daylight savings is a real pain in the ass. And like you said it gets particularly complicated when you’re dealing with a system that deals with these things as an afterthought, which seems to be a lot of older libraries for time. For instance, the Java date utils are a nightmare and are now considered semi deprecated replaced by a new java.time api. That is, of course, no help for the ridiculous amount of things that depend on these stupid date utils and no one wants to spend the dev hours to refactor.

  • I thought Tail recursion just gets turned into an iterative loop by the compiler? Hence why you won’t get a stack overflow. And since in procedural languages you can just use a loop in place of a tail recursive function you would never run into this problem, right? At least this is how it was taught to me when I was learning about it in lisp.

  • I heard this somewhere: “You’re in an IVF clinic. It’s on fire and you enter a burning room. On a table is a large cooler with 5 thousand fertilized eggs, and there’s also a crying, injured five-year-old girl in the room. Which one do you save? You can only save one.” The answer for most people is obviously the 5 year old and it’s not a hard choice.

  • You would be able to tell by monitoring the network tab of the browser developer tools. If post requests are being made (which they probably are, though I’m too lazy to go check) while you are typing a comment, they are most likely saving work in progress records for comments.

  • I don’t know, when we start talking about power users my mind goes to developers and most seem to not like windows. At least that has been my experience. Most of us prefer unix based systems, primarily because we have to use it to interact with like almost every server anyway. And of course I’m not just talking about different Linux distos, Mac is essentially Unix based and is in heavy use in a lot of shops.