computational linguist more like bomputational bimgis

  • 0 Posts
  • 197 Comments
Joined 1 year ago
cake
Cake day: April 2nd, 2024

help-circle
  • sparkle@lemm.eetomemes@lemmy.worldDoing my part
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    6 months ago

    Obama is by far the best president we’ve had in the past few decades, but overall he still sucks pretty badly. He was the first presidential candidate who got more than a billion dollars in donations for the race, at a time where Democrats were guaranteed to win no matter who they picked because of Bush. He’s still “the establishment” that American voters hate so dearly.

    Democrats should run a candidate more like FDR (who won FOUR terms as president) or Harry Truman or Jimmy Carter. A social democrat, an actual leftist-adjacent candidate. I would say someone like Bernie Sanders, but that ship has already sailed long ago… Socialist policies are popular with average Americans when nobody tells them they’re socialist.

    Unfortunately, the Democratic party leaders are owned by corporate money so that’s not going to happen. We’re gonna keep getting stupid shit like Kamala’s “tough on crime” and “locking down the border” rhetoric, instead of “universal healthcare” and “zero-tuition education”.







  • Daniel Shaver?

    Bodycam video: https://youtu.be/VBUUx0jUKxc

    In August 2018, Brailsford was reinstated by the Mesa Police Department, staying for a further 42 days in what the department described as a “budget position”. The department agreed to reimburse Brailsford for medical expenses related to his post-traumatic stress disorder – the result of his shooting of Shaver and the resultant criminal trial. The reinstatement allowed Brailsford to apply for “accidental disability” experienced during the course of work. As a result, Brailsford was unanimously approved to be retired on medical grounds. Brailsford was also given a pension of $2,500 per month. The fact that Brailsford was ultimately medically retired instead of remaining fired was only revealed to the public in July 2019.

    He just fucking executed him in the hallway and walked over his body, and he gets rewarded?



  • The past participle of a verb is used as the passive participle (e.g. indicates the passive voice, where the patient of the verb is the subject and the agent is the indirect object). “She was killed” or “He was eaten” is in the passive voice, while “I died” or “I killed” is in the active voice. It’s normally supposed to be preceded by an auxiliary verb (in this case “be”), but news titles omit the copula among other things.





  • sparkle@lemm.eetoLemmy Shitpost@lemmy.worldWhat if?
    link
    fedilink
    arrow-up
    23
    arrow-down
    1
    ·
    edit-2
    11 months ago

    What do you mean women don’t like a FOSS privacy-oriented user experience? Don’t they like going through 500 pages of documentation when Gentoo breaks only to realize all along that the problem was fixed by turning the computer off and on again?

    What do you mean men don’t like that either?? What kind of place is this?!



  • For a lot of English speakers, the “had” and “have” in contractions is completely omitted in certain contexts. It’s more prevalent in some dialects (I’m in the south US and it’s more common than not). Usually “had” is dropped more than “have”.

    Also, English can drop the pronoun, article, and even copula for certain indicative statements. I think it’s specifically for observations, especially when the context is clear.

    looking at someone’s bracelet “Cool bracelet.” [That’s a]

    wakes upsigh Gotta get up and go to work…” [I’ve]

    “Ain’t no day for picking tomatoes like a Saturday.” [There]

    “No war but class war!” [There’s]

    “Forecast came in on the radio. Says there’s gonna be a hell of a lot of rain today.” [It said -> Says/Said]

    “Can’t count the number of Brits I’ve killed. Guess I’m just allergic to beans on toast.” [I; I]

    “House came tumblin’ down after the sinkhole opened up” [The]

    “I’d” can be “I would”, mainly if used with a conditional or certain conjunctions/contrastive statements (if, but, however, unfortunately). Also when preceding “have” – e.g. “I’d have done that”. Because “I had have” doesn’t make sense, nor does “I had <present tense>” anything. “I’d” as in “I had” is followed by a past participle.

    “I’d” is usually “I had” otherwise, forming the past perfect tense. But in “I’d better”, it’s a bit confusing because “had better” is used in a different sense – the “had” here comes from “have to” (as in “to be necessary to”) and can be treated as both a lexical verb and an auxiliary verb. “had better” is a bit of a leftover of more archaic constructions.






  • sparkle@lemm.eetoTechnology@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    11 months ago

    It would be a pain for developers, but firefox and chrome using a gig of ram to view webpages and play videos is horrendous even with isolated design.

    That can’t be helped. Hard to explain well without knowing how much CS you’re familiar with, but basically in order to guarantee security/user safety you have to sandbox each tab (basically running an entirely separate container program for each tab which constantly checks for illegal memory access to prevent it from being exploited), all separately running their own interpreters for javascript/typescript, HTML, CSS, all of which are very resource intensive (mainly javascript/typescript). There’s not really any getting around this, no matter how well you design your browser.

    Now, theoretically, with the growing popularity/advances in WebAssembly, and increase in usage of frameworks/graphics APIs like WebGPU, you could completely get rid of that sandboxing and completely get rid of the extremely slow javascript and html/css, in favor of completely using safe, compiled Rust programs. There’s active research using versions of WASM which only accept completely safe code (mainly safe Rust code) so using memory bugs generated from user error to access data in different tabs becomes impossible (aside from potential unaddressed bugs in Rust itself obviously) and you don’t need to sandbox each tab – the program practically sandboxes itself. Then you could potentially have browsers with thousands of tabs perform perfectly fine, assuming each of the websites is programmed competently.

    But that’s not going to happen, because billions of users rely on HTML/CSS and JS, and it’s not pretty to transition away from. Getting rid of it would be like getting rid of pointy shoes, or getting rid of US Customary Units in the US, it’s just not happening no matter how much benefit it would bring to users. It’s not so much of a browser company issue as it is everyone ever would complain and potentially trillions of dollars of damage would be done. Also frontend web devs can barely punch out a “hello world” program in JS so there’s no way most of them are gonna be touching Rust or Haskell or something.