• 0 Posts
  • 84 Comments
Joined 5 months ago
cake
Cake day: April 4th, 2026

help-circle

  • Why would a chef put in more effort to create what is arguably an inferior result?

    Because they saw someone get sick after eating “raw” steak once in nineteen dickety-two and don’t think it’s safe, or they read it in a magazine a very long time ago, and they don’t think it’s safe. “Raw” in this case would be any pink whatsoever. If you bake it long enough at the right temperature on a drip pan you get no pink in the middle and no char.

    Source: I’ve eaten a lot of shoe leather steaks in my life.



  • I agree with your sentiment, and that the world should work like your hypothetical.

    how could they possibly ever know

    Lawyers doing lawyer stuff. As to why, you said it:

    I made mega money and they found out

    We’d have to have real lawyers weigh in, but for the most part I think unless you found an undiscovered market then they won’t care. Programming isn’t unique in the respect that the tools you need to do world-changing work aren’t that different between what you might have at home versus a well funded computer science research lab, but you’re much more likely to stumble into a marketable app than you are a quicker FFT.


  • Another good one would be “Questionable Consent.”

    [from article ]We have just over two years to finish the work and I know you’re impatient.

    So, my evolving understanding of this is that it takes about that long for the first signs of autism to show up. So I have a few honest, unresolved questions.

    • With no ethics to slow us down we have to start witholding vaccines ASAP to hit the two year deadline. Is that correct?
    • MMR takes two shots to get full immunity. If the schedule is spread out and making the falsifiable assumption that vaccines cause autism, how long would it be before you could meaningfully prove it?
    • Again, with no ethics, you’d need for some of the population to get a placebo and some to get the real deal.
      • Is that correct?
      • Has a study that large ever been performed where placebo/real been kept track of over multiple doses?

    As it stands now I really don’t see how we get helpful data out of this.


  • I don’t get how anyone could EVER enforce a law or agreement or rule that says something I wrote at home on my device on my time is theirs.

    Check your employment terms. I’d wager the first step of that is seeing if you have a paper copy. I know I don’t for all the places I’ve worked or acquisitions I’ve been through.

    Something like an ALCU or Second Amendment Foundation that focused on nothing but that would be a nice-to-have. I think it overall destroys creativity in the industry.


  • Websites have to search for new revenue streams. They don’t just walk into a corner of the internet and think “drat, someone already has a forum for that!” and walk away. They come up with some unique twist people won’t have normally thought of and run with that until it stops working. See this guy’s comment below:

    With reddit they need to be able to show that their advertisers aren’t just serving ads to bots (although we’re seeing ads for bots now apparently). They have to prove a certain number of real human beings saw something thus the login requirement.

    Now, people used old reddit because new reddit sucks. New reddit just shows you the top few posts, and makes you expand replies, thus proving you’re something they can bill for. This also serves the purpose of pushing nuanced, long running discussion down to where people don’t see it. Just look at the cat picture, upvote it, and move on.

    And for the record reddit has been crap for a very long time. At least since whoever that lame ass admin was who went into the backend database and edited someone’s raw post, and if not then, then Victoria getting the axe should’ve been a red flag to everyone that you weren’t a member of reddit…not really. I know there were some local meetups in that timeframe. How awkward do you think the AMA local BBQ was? Do you think reddit cares?




  • How fucking weird. I genuinely don’t understand this

    Jeezus said so, that’s why.

    If you keep digging and playing an adult game of “why?” you eventually come to that “reasoning.” It’s ultimately why we can’t have nice things because religion falls to critical thinking skills, falls to history, falls to literature, and falls to the scientific method.

    It’s like any other group of people: it’s held up by people who’ve “paid their dues” and need younger people to buy into the system and feed it so the older folks can coast through the end of their life. The system is brutal to people who don’t conform. They usually end up expelled from the group and left without resources to build back up again. It’s why there are whole other support groups, as an example, to get people out of the LDS sphere of influence.

    And by the way, to you good people helping folks escape from the LDS: you would do well to read all the stories about whole chinese police departments working in North America, and what’s going on with Flock, and LLMs gathering up data, and it all being available for purchase. I hope your OPSEC is up to having that light shined on you.





  • Be careful with institutional ownership as a metric, as many if not most companies that are publicly traded will have high percentages of institutional ownership. Blackrock and Vanguard, for example, have many, many Mutual Funds and Exchange Traded Funds that are part of normal retirement savings practices without there being anything shady going on.

    MTCH fell out of the S&P 500 earlier this year which may be why Vanguard divested some going off what new_world_odor said. I can’t get searches to exactly line up on which iShares (the Blackrock ETF side of their house) hold MTCH. There are some funds that have charters about how they’ll track an index, so when it fell out of the S&P 500 those funds had to get rid of it or shift those shares internally.

    I wonder why they had such a huge drop, though. It looks like their stock shot up during COVID and is kind of falling back down to “historical” levels for something that went public in 2015.



  • Sure.

    For a while now, if you needed the time from your computer, and it was running UNIX or a variant, you’d use something like gettimeofday() (it’s clock_gettime() now) which would hand you seconds since the epoch at midnight January 1, 1970 in UTC and microseconds/nanoseconds depending. You’d take the seconds, wash it through localtime_r to adjust for the local time zone, and you’d have a struct you could feed to strftime() for formatting.

    So my beef with time formats, and what I presume ChickenLadyLovesLife’s beef is, is that when the time format is “wrong” for whatever reason, given the similiarity between the backends of modern time systems, it’s “wrong” for reasons other than technical limitations. You’ve got a count in seconds since the beginning of time, and a function that’s been around for decades that can do whatever stupid stuff you want. Military time, month printed out, day of week printed out, two character years, four character years, seconds, julian day, Doing something silly like day of year, hour of day, and am/pm (“%j %I %p”) is just as easy as something practical like a large fluffy timestamp, or a minimalist four characters military time (“%H%M”). The hard part was getting the time from the GPS or cell phone tower or wherever. The easy part is the time format. Windows also exists, and uses something similar. Modern programming with C++ or Python will have libraries (<chrono> and datetime, respectively) that work the same way, and both those examples use strftime() semantics.

    So, if you’re unhappy with the way your device prints out time, the reason behind it isn’t the clock part of it, it’s the display part. There was some rationale on Android’s behalf for adopting the hour over minutes style, but it wasn’t because their available horizontal character limit dropped from four (five if you count a colon) to two. Maybe they can get more data widgets displayed around the time in a little halo? I don’t know, I don’t use android stuff anywhere. If it was apple I’d assume they did UX testing about half height characters and readability.

    So, now to the “end goal” part of what I wrote before. The hard part is done and a solved problem, and most time formats work fine for what they do. tmux is giving me (“%H:%M %d-%b-%y”) which works fine, and my desktop environment (DE) is using (“%a, %b %d %H:%M”) which is fine. The other DE is using (“%b %d %H:%M”) which is fine. All perfectly usable, all used the three character representation of the month avoiding problems between dd/mm/yy or mm/dd/yy, and all of those are adjustable to an extent with two of the three kicking back to strftime() if I needed it. So what did android get when they paid developers to make the change to hours on top of minutes? Is there a study I missed that of a group of people who’d never seen a clock before and had no concept of time found the “%H\n%M” style more easy to read? If that’s true, then was it worth irritating the subset of people who are going to care about the change to pick up the other group? I personally don’t see a point in paying to make the change unless they’re expecting to make more money from it, which at the core of a lot of things in the world these days. Here’s something that worked fine, but now it’s being changed to work differently but no better.




  • There’s literally nothing for detectors to go on anymore.

    It’s harder for users as well. Even youtubers I’ve followed for a while have started using the recipe of having a ridculous thumbnail such as “WHY YOU SHOULD NEVER BUY THIS” with an arrow pointing to something. After a couple of times of catching me because I own one of the things the arrow is pointing to (and then watching a 10:01 long video not talking about the item in question) I decided not to fall for it. I noticed that discovery of a new channel got hard. They’re all following the recipe now since I guess youtube mandates it, so it’s the same bas relief thumbnails that seem like they pose a question and a video that doesn’t answer it. We’ll end up with a new Betteridge’s Law and the resource youtube once was is lost forever and we’ll stand around making dumb faces thinking how we’re all getting ripped off…