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/)NA
Posts
0
Comments
255
Joined
2 yr. ago

  • Yeah, buts it's just a pot still most of the time, unless it's raining. Then it's kind of a packed bed with super loose packing.

    I guess snow and hail are something completely different. Dunno what that would be called.

  • Both are happening.

    It's important to understand what went wrong so when you with on a fix, you won't make the same mistake.

    People can both bitch about politicians and also help fix the problem.

  • Yeah, that's a tough one.

    If you're young, that's just how it is right now. You're totally valid in feeling frustrated or inadequate but also know you're not doing especially badly compared to others in your position.

    If you're older, it just takes some people longer before the pieces fall into place. Right person wrong time kind of deal.

  • This person was actually convicted of trafficking opioids in an actual court in 2022, so it's not a random Canadian plucked off the street.

    That being said prisoners do still deserve basic human rights like healthcare and with people being arrested without due process now, just coming to the US shouldn't mean risking your life.

  • And you should wear it with confidence. Honestly had the most respect for people who are really cute out in public but then reveal their true gremlin selves at home when the makeup is off and they're in pajamas and a t shirt.

    Means they really worked for those good looks, which most people really need to do at my age.

  • Permanently Deleted

    Jump
  • The animals know there is a weird device there, they just sniff at it and keep going. Humans would probably investigate weird out of place things, especially in cities and more dense areas.

  • Sure, it's important to be aware of future potential issues, but there's a huge difference between I get the wrong answer when I ask a chatbot about my email vs remote code execution.

    Also, one is a general security vulnerability with email as a whole, like phishing you can get scammed regardless of your email client, vs improperly implemented features in a specific library. I don't think this is a reason to leave Gmail.

  • As far as prompt injection is concerned, I don't think it's a risk unless you're using some kind of agent to go though emails, which is not a Gmail specific thing.

    If we're taking about Google scraping your data the risk is more one of them having an incorrect profile on you, but running a conversational agent is quite expensive, I don't they would have that as a large scale part of their pipeline. Embedding and clarification models likely aren't instruction tuned so prompt injection won't do anything.

  • Only if you are piping those emails into something like an LLM assistant or search tool, especially if you're not checking the results. And in that case, it doesn't matter what email provider you use.

    I can see it maybe messing with search results when you look through your email, but again that's independent of email provider.

  • To me, there's two ways you could interpret that, one is what are the effects of magnetism which we learn on high school physics, the other other is why does magnetism have those effects which is more something you'd learn in an undergraduate physics or chemistry degree.

  • People who are smart in one or two domains often overestimate how smart they are in other domains. They develop a mental model, confirm it quickly, and never re-asses it.

    The issue with AI, is we're probably hitting our first real S curve with the current technology's performance but a lot of people who bet big are only see the exponential part and assuming there won't be a level off, or that the level of is far away.

    There is no Moore's law for AI.

    1. Machine code is less portable, as new CPU optimizations and instructions are released, its easier to update a compiler to integrate those in its optimizations than regenerate and retest all of your code. Also, if you need to target different OSs, like windows vs MacOs vs Linux its easier to make portable code in something higher level like python or java.
    2. Static analysis to check for things like memory leaks or security vulnerabilities like sql injections are likely easier to do on human readable code rather than assembly.
    3. Its easier for a human to go in an tweak code that is written in human readable language rather than assembly.