• 0 Posts
  • 108 Comments
Joined 11 months ago
cake
Cake day: August 2nd, 2023

help-circle










  • One important thing to realize is that different dialects of English have slightly different grammars.

    One place where different dialects differ is around negation. Some dialects, like Appalachian English or West Texas English, exhibit ‘negative concord’, where parts of a sentence must agree in negation. For example, “Nobody ain’t doin’ nothing’ wrong”.

    One of the most important thing to understanding a sentence is to figure out the dialect of its speaker. You’ll also notice that with sentences with ambiguous terminology like “he ate biscuits” - were they cookies, or something that looked like a scone? Rules are always contextual, based on the variety of the language being spoken.



  • No.

    There’s two types of grammar rules. There’s the real grammar rules, which you intuitively learn as a kid and don’t have to be explicitly taught.

    For example, any native English speaker can tell you that there’s something off about “the iron great purple old big ball” and that it should really be “the great big old purple iron ball”, even though many aren’t even aware that English has an adjective precedence rule.

    Then there’s the fake rules like “ain’t ain’t a real word”, ‘don’t split infinitives’ or “no double negatives”. Those ones are trumped up preferences, often with a classist or racist origin.


  • Precisely three third party candidates have won any EC votes in the last century: George Wallace, Strom Thurmond and Robert La Follete. Follete won Wisconsin, and the other two unsurprising only won states in the deep south.

    The likely “best case” scenario would be something like the 1912 election, which was essentially a three way race between former Republican president Teddy Roosevelt running third party against the incumbent Republican Taft, and the Democratic challenger, Willson.

    Willson won 41.8% of the popular vote, and 81% of of EC vote. Taft got 23% of the vote, and managed to carry Vermont and Utah. Roosevelt got 27% of the vote, and carried 6 states. Eugene Debs didn’t win a single state with his 6% of the vote - and its worth noting that the last time a third party candidate did as well as Debs was Perot, back in 96.

    A majority of the country voted for a current or former Republican president, yet the election was a land slide for the Democrat in the EC.

    Because of the structure of the EC, third parties are either irrelevant protest votes (such as the south protest voting for segregationists) or they blow up in your face. Why would this time be different?

    Edit:

    One significant problem with a pro-Palestinian third party revolt against Biden is that Democratic support for Palestinians isn’t anywhere near high enough for a universal revolt against Biden on that issue. It’d just be begging for a repeat of 1912.

    Netanyahu’s poll numbers are pretty rock bottom among Democrats, but a majority of older Democrats see Israel as a legitimate state with an unfortunately far right current government that’s going too far in their current war against a terrorist organization. They’re not looking for a free Palestine that stretches from the river to the sea.




  • Yeah, projects also exist in the real world and practical considerations matter.

    The legacy C/C++ code base might slowly and strategically have components refactored into rust, or you might leave it.

    The C/C++ team might be interested in trying Rust, but have to code urgent projects in C/C++.

    In the same way that if you have a perfectly good felling axe and someone just invented the chain saw, you’re better off felling that tree with your axe than going into town, buying a chainsaw and figuring out how to use it. The axe isn’t really the right tool for the job anymore, but it still works.


  • Pipoca@lemmy.worldtoProgrammer Humor@lemmy.mlSTOP WRITING C
    link
    fedilink
    arrow-up
    8
    ·
    edit-2
    5 months ago

    C is not how a computer truly works.

    If you want to know how computers work, learn assembly and circuit design. You can learn C without ever thinking about registers, register allocation, the program counter, etc.

    Although you can learn assembly without ever learning about e.g. branch prediction. There’s tons of levels of abstraction in computers, and many of the lower level ones try to pretend you’ve still got a computer from the 80s even though CPUs are a lot more complex than they used to be.

    As an aside, I’ve anecdotally heard of some schools teaching Rust instead of C as a systems language in courses. Rust has a different model than C, but will still teach you about static memory vs the stack vs the heap, pointers, etc.

    Honestly, if I had to write some systems software, I’d be way more confident in any Rust code I wrote than C/C++ code. Nasal demons scare me.