• 0 Posts
  • 168 Comments
Joined 1 year ago
cake
Cake day: July 11th, 2023

help-circle





  • The problem is, if one company dominates search, you have no way to evaluate whether they are doing it well.

    You could just go to other search engines and run the same queries and compare results.

    For example, I did a search on 6 different search engines earlier today looking for a specific Reddit thread related to an update to a certain Skyrim mod without quite naming the mod (because I couldn’t remember the exact name of the mod, and was hoping to find the Reddit thread to get the mod name or Nexus link). All 6 had the Nexus page for the mod itself within the top 3 results, and all of them but Google and Yandex had the Reddit thread in question on the first page.



  • There’s an argument to make that digital data is by default a post-scarcity sort of thing and that in a post-scarcity environment communism is the only reasonable system. But we don’t operate in a post scarcity environment for physical goods and services, and there’s really not anything we can point to historically that suggests a communist takeover doesn’t do terrible things to availability, quality and variety of food available.


  • Schadrach@lemmy.sdf.orgtoMemes@lemmy.mlAR15's are not Hunting Rifles.
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    3
    ·
    2 months ago

    While you can hunt with an AR-15, it’s not the best rifle for the task.

    It’s not the best rifle for any task. But it’s a good enough rifle for most tasks, and between real AR-15s and the various clones they are cheap, in common calibers, and have accessories widely available.

    Which is why it’s the most common rifle in the US by a fair margin.

    It being the most common rifle in the US by a fair margin is in turn why it’s so often used in public mass shootings, as those are usually done with weapons of convenience rather than something bought for purpose. Likely also why the guy who shot Trump used one.

    If a public mass shooter wanted the best gun for the job, they’d get something closer to a PS-90 (the civilian version of the P-90 which is a military rifle designed for urban combat).






  • You misunderstand the dynamic. Most GOP voters are going to vote and are going to vote for the Republican, regardless of how awful that Republican is. Voting is a civic duty and party above all are kinda core ideas for them.

    Dem voters are a lot more flighty in general. Any barrier to voting no matter how small (even having to rise from the couch) impacts Dem voters more than GOP ones.

    There are more Dem voters than GOP ones except maybe in very red states. It’s about turnout - US voter turnout is God awful and it’s worse among Dems than GOP.

    That’s why the debate was so bad for the Dems, because it’s not about whether or not it pulls voters to Trump but about what it does to Dem turnout.



  • Now-now it’s Reddit - he might have posted on one of the subs that people monitor with bots and silently autoban you from other subs for having ever participated in the offending sub. So he might very well have been Perma banned from 7 other subs for the comment, whether it was up voted, downvoted or totally ignored.


  • That analogy was chosen for a reason. Ada was originally developed by DOD committee and a French programming team to be a programming language for Defense projects between 1977 and 1983 that they were still using at least into the early 2000s. It’s based on Pascal.

    It was intended for applications where reliability was the highest priority (above things like performance or ease of use) and one of the consequences of that is that there are no warnings - only compiler errors, and a lot of common bad practices that will be allowed to fly or maybe at worst generate a warning in other languages will themselves generate compiler errors. Do it right or don’t bother trying. No implicit typecasting, even something like 1 + 0.5 where it’s obvious what is intended is a compiler error because you are trying to add an integer to a real without explicitly converting either - you’re in extremely strongly-typed country here.

    Libraries are split across two files, one is essentially the interfaces for the library and the other is it’s implementation (not that weird, and not that different than C/C++ header files though the code looks closer to Pascal interface and implementation sections put in separate files). The intent at the time being that different teams or different subcontractors might be building each module and by establishing a fixed interface up front and spelling out in great detail in documentation what each piece of that interface is supposed to do the actual implementation could be done separately and hypothetically have a predictable result.