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/)
Posts
15
Comments
570
Joined
2 yr. ago

  • And most major U.S. media outlets are highly biased toward Israel for some reason. I don't know if I've ever seen the U.S. media this biased on an issue; I have to resort to small outlets like The Intercept or foreign media like Al Jazeera (which are biased in their own way), to stay informed. The only things comparable I can think of is the Iraq-WMD thing, and their perpetual bias against labor rights/for capital.

  • AI image generators have been around for a fairly long time. I remember deepfake discussion from about a decade ago. Not saying the image in discussion is though. I remember Alex Jones making conspiracy theories that revolved around Bush and lossy video compression artifacts too.

  • Perhaps. I guess the companies could use their campus equity in a beneficial way. Not sure how beneficial this is to most companies though. With the companies I'm thinking of, I'd guess campus equity is pretty minor (compared to their "human resources"). I may be wrong though.

  • The RTO push is designed to keep the commercial real-estate market from crashing. I've never seen any good proof of this, but believe it. I don't exactly know why CEOs of big companies would really care that much about commercial real-estate. Perhaps their large shareholders (hedge fund managers?) also own commercial real-estate and are putting pressure on CEOs? Perhaps at that level it's just a big club, and all the wealthy just help eachother out, out of solidarity? Dunno.

  • Most politicians seem like grifters and change positions to whatever is popular with their base or donors though. So, it does seem like this is a part of some grand-plan. I don't think many Republican politicians actually care about women's sports or who uses which restroom, yet they manufacture outrage and campaign on it. This kind of stuff was on no "normal" person's mind before media started focusing on it.

  • Restaurants often do get first-pick, but it's probably just because the producers or distributors can make more money selling to them rather than the grocery store. I.e. just another feature of capitalism. This happens with a lot of things, such as home builders and furniture makers getting first-pick on lumber. Now that I think back to when I used to work in fabrication, steel as well.

  • Humans used to live in socialist-like societies before agriculture. I.e. "primitive communism." I'd argue socialism is more aligned with basic human nature than capitalism.

  • Code should be self-documenting. That way it is never outdated. Here's an example of this similar to what you can expect to see in practice:

     
        
    def nabla_descent(X, y, theta, alpha, delta, nabla):
        m = len(y)
        for _ in range(delta):
            h = X.dot(theta)
            nabla = (1/m) * X.T.dot(h - y)
            theta = theta - alpha * nabla
        return theta
    
      
  • I (probably unreasonably) despise using web front-ends for desktop applications.

    GTK is OK. QT is very feature rich, but that adds complexity. Both can be cross-compiled to most systems and shipped with all the required libraries pretty easily.

    I haven't used it in a long while, but I remember liking Java Swing for some reason. Java should be "write once, run anywhere." But, cross-compiling isn't usually too hard, so not sure how much that matters. There's more modern frameworks for JVM-based languages now, but I haven't tried them.

    I've noticed Gradio is popular in the ML community (web-tech based, and mostly used for quick demos/prototypes).

    Edit: For web applications, I prefer Angular's more traditional architecture over React's hook architecture.

  • Permanently Deleted

    Jump
  • Not sure I agree that there will be less human labor "need." Ideally, we should strive for progress, and not just survive. I think there is infinite use for human labor.

    I agree with your second point.

  • Haven't tried Gemini; may work. But, in my experience with other LLMs, even if text doesn't exceed the token limit, LLMs start making more mistakes and sometimes behave strangely more often as the size of context grows.