"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
Jump
Special military operation
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 100%

    Is it? Could you please enlighten me? I admit, I'm a bit ignorant of the politics over there.

    To me, it seems like it's a clear violation of a nation's sovereignty. As a US citizen, I can't imagine Mexico bombing us for private actors for distributing guns to the cartels, for example. Even if the government itself was responsible for distrubuting arms to the cartels (which actually may very well be the case), I still don't see the justification for bombing US apartment complexes.

    1
  • Photograph from 1892 of a pile of American bison skulls in Detroit
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 100%

    Definitely not a lie. Could possibly be a case of "parental incompetence," as my parents and grandparents were educated in, what I guess, similarly biased schools (or most likely, even more biased). I don't have a good relationship with my parents, and, perhaps surprisingly, my grandparents are more left-leaning than my parents. I grew up in rural NW Ohio, to be more specific; which used to be a swing state. Most of my peers were racist AF, and most of my past friends are now dead from drug overdoses. I'm, in no means, well traveled, but I'm guessing my life experiences aren't some rare anomaly.

    1
  • Photograph from 1892 of a pile of American bison skulls in Detroit
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 66%

    I remember my 4th grade teacher having us read one page about the Daughters of the Confederacy, the teacher briefly discussing the struggles of former slave-owners, and skipping the rest of the chapter on slavery due to "not having enough time." IIRC, even the textbook painted the Daughters of the Confederacy in a positive, or at least neutral light.

    I remember my 7th grade health teacher showing us a Christian anti-masturbation video for our sex-ed requirement. This was a rural public school in a northern state. Only other option was a private Catholic school, but my family wasn't Catholic, and my family wouldn't have been able to afford to send me there if they wanted to.

    I don't think I even knew about the trail of tears until the middle of high school; and definitely didn't learn about the motivation for hunting Buffalo to extinction.

    1
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Jump
    Special military operation
    Software Engineering Documentation Best Practice?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 12%

    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
    
    -6
  • Making GUIs, how do you pick?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 100%

    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.

    7
  • General population decline trends in the last years is actually a good news.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 100%

    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.

    2
  • Do you often write scripts to parse a codebase and get familiar with it?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 100%

    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.

    4
  • In this post, I wrote about the sad experience of having a friend use AI to wish me a happy birthday. https://robertkingett.com/posts/6627/ #AI #Blog #Blogging #Blogs @fuck_ai
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 25%

    I'm pro-AI, but not pro-AI in the sense of, "turn these bullet-points into a verbose email," and not pro-AI for personal communication like this. I hope this kind of stuff doesn't become common. It's like going in the opposite direction of "SMS language" (which I view favorably).

    -6
  • What languages/frameworks for small, very low usage apps on limited hardware?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 100%

    Python is quite slow, so will use more CPU cycles than many other languages. If you're doing data-heavy stuff, it'll probably also use more RAM than, say C, where you can control types and memory layout of structs.

    That being said, for services, I typically use FastAPI, because it's just so quick to develop stuff in Python. I don't do heavy stuff in Python; that's done by packages that wrap binaries complied from C, C++, Fortran, or CUDA. If I need tight-loops, I either entirely switch to a different language (Rust, lately), or I write a library and interact with it with ctypes.

    3
  • Editorial: The teen arrested in Georgia school shooting is not an adult, and shouldn't be treated like one
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 100%

    I don't think anyone is advocating for a "slap on the wrist." The U.S. criminal justice system is the most draconian in the West, and doesn't do "slaps on the wrist," unless you're in a particular economic or social classes.

    IMO, ideally, he would be sentenced for as long as it takes to rehabilitate him. Could be 5 years, 10 years, 30 years, or never, IDK, I'm not a psychologist. But, the U.S. prison system isn't really designed for rehabilitation either.

    10
  • The Irony of 'You Wouldn't Download a Car' Making a Comeback in AI Debates
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    31337
    Now 80%

    Production AI is highly tuned by training data selection and human feedback. Every model has its own style that many people helped tune. In the open model world there are thousands of different models targeting various styles. Waifu Diffusion and GPT-4chan, for example.

    6
  • www.theregister.com

    AI firms propose 'personhood credentials' to combat online deception, offering a cryptographically authenticated way to verify real people without sacrificing privacy—though critics warn it may empower governments to control who speaks online.

    27
    28

    I use Google Shopping (the “Shopping” tab on Google) to see if local stores carry certain products, what they cost, how far away each store is, etc. It seems to mostly search national or large regional chains, but it was still pretty useful. Is there any alternative to this (in the US)? The “nearby” function has unfortunately got shittier and shittier over the past year or so. It's gotten less “deterministic," just mixing results from local stores with e-commerce stores, further reducing usefulness.

    20
    1
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearTE
    Television 31337 Now 94%
    Thoughts on "The Decamarone?"

    I don’t remember how I heard of it, but just binged-watched it over the past few days. Ratings seem a little bit above average, but I found it very enjoyable. I liked that the mood oscillates between modern comedy and tragic comedy; and that it seems to implicitely critique modern society. The series almost feels like an allegory (or perhaps I’m reading too much in to it).

    17
    3

    I've recently noticed this opinion seems unpopular, at least on Lemmy. There is nothing wrong with downloading public data and doing statistical analysis on it, which is pretty much what these ML models do. They are not redistributing other peoples' works (well, sometimes they do, unintentionally, and safeguards to prevent this are usually built-in). The training data is generally much, much larger than the model sizes, so it is generally not possible for the models to reconstruct random specific works. They are not creating derivative works, in the legal sense, because they do not copy and modify the original works; they generate "new" content based on probabilities. My opinion on the subject is pretty much in agreement with this document from the EFF: https://www.eff.org/document/eff-two-pager-ai I understand the hate for companies using data you would reasonably expect would be *private.* I understand hate for purposely over-fitting the model on data to reproduce people's "likeness." I understand the hate for AI generated shit (because it is shit). I really don't understand where all this hate for using public data for building a "statistical" model to "learn" general patterns is coming from. I can also understand the anxiety people may feel, if they believe all the AI hype, that it will eliminate jobs. I don't think AI is going to be able to directly replace people any time soon. It will probably improve productivity (with stuff like background-removers, better autocomplete, etc), which *might* eliminate some jobs, but that's really just a problem with capitalism, and productivity increases are generally considered good.

    213
    57
    https://archive.ph/JRatV

    As the energy transition inches through the ‘issue attention’ cycle, a wiser approach should emerge.

    -21
    3

    Any tips on growing corn in central Texas? Is it even practical? I sowed some corn in February, and they only grew 3ft. and looks like I might have a few very small corn cobs. The last time I tried to grow corn was in Ohio, and used the 3 sisters method, which worked pretty well. But idk wtf to do in central Texas.

    4
    3
    www.cnbc.com

    Summary: Meta, led by CEO Mark Zuckerberg, is investing billions in Nvidia's H100 graphics cards to build a massive compute infrastructure for AI research and projects. By end of 2024, Meta aims to have 350,000 of these GPUs, with total expenditures potentially reaching $9 billion. This move is part of Meta's focus on developing artificial general intelligence (AGI), competing with firms like OpenAI and Google's DeepMind. The company's AI and computing investments are a key part of its 2024 budget, emphasizing AI as their largest investment area.

    244
    45
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHO
    Home Improvement 31337 Now 91%
    Mount electric sub-panel over lapped hardie board siding?

    I'm out of room for breakers in my main breaker box, so would like to add 6-breaker sub-panel to install mini-splits, an outdoor electrical outlet, lighting, etc. What's the correct way to mount an exterior sub-panel on a house with lapped hardie-board siding? I suppose the easiest thing would be to drill holes in the siding then attach the panel with screws to a stud and the exterior sheathing, but I don't know if that's a proper way to do things. I also suppose I could somehow cut a rectangular hole in the siding and mount the subpanel directly on the sheathing. I'm not sure how to prevent water intrusion in that case (is some kind of flashing needed, or is just cock ok?). Seems like it would be hard to cut a clean rectangle in lapped fiber-cement siding on a vertical surface.

    10
    3
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebear31
    Now
    24 544

    31337

    sh.itjust.works