• 1 Post
  • 22 Comments
Joined 2 years ago
cake
Cake day: June 22nd, 2023

help-circle





  • The application is very resource heavy and is also designed for specific hardware, it can’t be run on the windows laptops we are provided. There are security concerns as well, which limit what I am allowed to do.

    Currently I’m using vnc viewer to open a shell where I can run applications like qtcreator and get a gui interface. I’m sure I could run a local ide and ssh into the vm with it, but I know that can be tricky getting proper code coverage for jump to references to work. I guess I’ll try it and see what happens!






  • I don’t feel like the H1B is as big of an issue as outsourcing is. The company that I was just laid off from also laid off all the H1Bs and outsourced pretty much every junior role to India. I’m hearing about this in a lot of other companies as well. While this is anecdotal, it seems to me that with the rise of remote work, it proved that out sourcing was very viable. India has a huge talent pool of highly skilled engineers, who can speak English and are willing to work for pennies on the dollar. I’m not sure where AI plays part in this. Perhaps, it allows those outsourced developers to provide higher quality code faster than ever before, but I have no way to prove that.

    Either way, it’s pretty much a blood bath in tech right now, not sure what to do myself. Considering going back to my old career.


  • Harris had more billionaire donors than Trump and she out-raised him almost by $700 million. Of course there was plenty of dark money floating around and Musk dropped a ton of money into Pennsylvania, but don’t act as if Biden and Harris were working class darlings. Calling out price gouging is all good and well, and realistically, there’s only so much the president can do legally to combat inflation, but he did have the bully pulpit and a little bit of lip service to price gouging was not enough obviously. He could’ve been out there daily essentially doxing these companies and their ceos putting the fear of God in them.

    Populism is a dirty word to the establishment, but both Trump and Bernie are populists. In fact, the first part of their message is essentially the same: America is going to shit, the Economy is terrible, and you’re getting fucked. The difference, of course, is that Trump points the finger at immigrants and others as the reason why this happening, while Bernie points the finger at the Oligarchs. The true power of populism is the threat of using the majority against the minority. It’s why it can lead to violence and mob rule.

    People want someone to pay for the pain they are feeling, Trump is doing that, although of course it’s completely misguided and fucked up. The Democrats are not willing to do that. At some point, they’re going to need a Teddy Roosevelt like figure who comes along and essentially says to them, “hey listen I know it’s crazy, but if we don’t do something about the wealth inequality and the ruling class, we’re all gonna get our heads chopped off.”


  • No one alive is probably fit to do the job, it’s an impossible task. Those who may come close, would probably never actually want it. And of those who remain who do want it ( which already might make them not worthy for the position) are probably not electable due to the forces of capitalism preventing such a candidate from getting elected.

    So what is left is simply a pragmatic choice of the lesser evil. Many people are acutely aware of this and have gotten over it. I suggest until you manage to enact some sort of drastic systemic change you get it over it as well.



  • 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.



  • 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.


  • Zionism was not started by Ottoman Jews, which were a very, very small minority in Palestine. The grandfather of Zionism was an Austro-Hungarian, Theodor Herzl. Before that there was a proto Zionist movement the Hovevei Zion which was created in response to pograms in the Russian empire. The Zionist movement was entirely created as a response to the treatment of European Jews by European powers.

    Living under sharia law and being treated as a second-class citizen (which all non-Muslims were) certainly was not ideal for Palestinian Jews, but hundreds of thousands of European Jews did not start streaming into Palestine because of that.


  • While I don’t totally disagree with you, nor advocate the position you are arguing against… I wonder what is the scientific definition of sanity? Is there a consensus on it? If it is a concept that exists outside the context of our society as you claim, then is it something objectively inherent in all humans regardless of their culture or circumstances? Or can its meaning change over time; can the standard of entrance be lowered or raised depending on current trends or the whim of the majority?


  • 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.