@pootriarch@eldritch.cafe
@pootriarch@eldritch.cafe avatar

pootriarch

@pootriarch@eldritch.cafe

24601: can't speak french™, so i let the funky music do the talking. j'aime : la musique pop, les transports en commun. not so much : réchauffement, haters.

avis femelles, mais sur l'internet le genre a peu importe. ne décroche que pour emma et paloma.

bookwyrm: https://book.dansmonorage.blue/user/emmadilemma · pixelfed: https://metapixl.com/pootriarch · 'ask to follow' is to deter bots, not you.

This profile is from a federated server and may be incomplete. Browse more on the original instance.

bloodwrites, to random

Pinterest is close to peak enshittification. Home feed is almost entirely ads now, and what isn't ads is completely irrelevant to my interests.

The one app where I want the algorithm, and it's completely fucked 🙄

pootriarch,
@pootriarch@eldritch.cafe avatar

@bloodwrites did you take time off from it and it forgot, or it just shat itself?

pootriarch, to random
@pootriarch@eldritch.cafe avatar

deleted_by_author

  • Loading...
  • pootriarch,
    @pootriarch@eldritch.cafe avatar

    @kingrat i was thinking about making an account on the main über-instance for more reach on a bigger public timeline, when i want it, but it doesn't seem well moderated. just clicking on public lists there's a load of what looks like attempted malware

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    deleted_by_author

  • Loading...
  • pootriarch,
    @pootriarch@eldritch.cafe avatar

    @theotherbrook england straightened out their side of the line too. now it goes england fast, which is something altogether different to europe fast except the different speed units impede direct shade

    jarg0n, to random
    @jarg0n@mastodon.online avatar

    that’s me. i am eggslut

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @jarg0n apparently i am not. they were shut when i tried to go

    katieonviolin, to random
    @katieonviolin@sfba.social avatar

    Upon actually driving our vehicles to our new house, the cabriolet is a fucken yacht and barely slips in among houses. The Golf R fills the garage like it’s an Escalade SUV. aaahhhhhhhhh ha ha ha this is fine

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @katieonviolin a buddy at college had an ancient crown victoria that he refused to get rid of. he called her vicky, we called her the land barge

    ocsweetest, to random
    @ocsweetest@mstdn.party avatar

    This rainy weather has me setting up my Christmas tree a week early.

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @ocsweetest i may exhume my holiday music early, the part i didn't already sneakily let in through the garage

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    my mind is blown. having grown up with the upbeat version of 'only love can break your heart', i read that the original was a slow waltz. 3/4 waltz to that?!
    https://songwhip.com/saint-etienne/only-love-can-break-your-heart

    saidsoftly, to random

    latest liquorix kernel appears to have completely broken amdgpu drivers. watch out if you're updating!

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @saidsoftly my father bought a kit car to tinker with when he was older. he caught the garage on fire, fire dept had to come. the wife did not let him have any more

    amberage, to random
    @amberage@eldritch.cafe avatar

    It's SO WEIRD to watch anglophone TV and hear people unironically refer to their fathers as "daddy". It feels so… fake? Cringe?

    On the one hand, yes, there is of course the cliché that "daddy" in kink is, for someone whose native language isn't English, that might well have been their first exposure to the word.

    But also: in my language, German, we have the word "Vater" (father) and "Papa" (dad), the former very stiff and formal, the latter informal and colloquial.

    Anything beyond that ("Vati", "Papi") is either a relic of old times ("Vati" evoking the 50s to me) or so overly diminuitive that it reminds one of toddler speak ("Papi").

    "Daddy"… doesn't really fit in anywhere. At most, it falls in the "sounds like toddler speak" category, akin to "Papi", as being one step above a baby's first "dada".

    Hearing grown people call their fathers "daddy" (happened to me today when I listened to "Papa Don't Preach" and paid attention to the lyrics for the first time) is extremely jarring. Even more so when it's fathers referring to themselves in the third person (in this Star Trek episode, Magnus Hansen says "daddy wants to talk to you" to his kindergarten daughter).

    Idk, just a funny bilingual experience. Anyone else get this?

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @amberage +1. i will say though that in 'daddy daddy, if you could only see' it does kind of work for me, in meter, and in her position of pleading for acceptance. but normally, yeah, cringe

    orko, to random
    @orko@sfba.social avatar

    Avo toast is a human right

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @orko global warming is coming for your avocado

    amberage, to random
    @amberage@eldritch.cafe avatar

    Just spent an hour tracking down a really weird bug wherein one of my arrays would get mutated, seemingly at random.

    So I had the array printed to the console at various points in my code. And that's when shit started to get really really weird.

    So I have two breakpoints, let's call them A and B. At both, I print the array to the console.

    Now, and this has to be an oddity of the browser: at point A the array is just fine, its values exactly as they should be. Because it's a long array, not all values are printed, but I can click on it to expand the view.

    If I do that, I get the completely mangled values I get at point B. I can only explain that as the browser not actually printing the full array to the console and compacting the view, but printing the incomplete array to the console and fetching the full values only later if the view is expanded (which renders the whole debugging pointless, but whatever).

    Anyway, after extensive debug logging, what do I find?

    So I have a function. That function takes an array as an argument and then, as functions do, does things to that array.

    Now, the way programming languages tend to work, you'd think the function, via that parameter, receives a copy of the array to work on.

    Haha.

    No.

    In this function, I have an array.forEach call that mutates this array (if you care to know: it replaces each value with the difference between the median and that value). Naive as I was, I assumed that since this was a local (to the function scope) copy of the array, I could do this.

    Haha. NOPE!

    The function operates on the actual array, for reasons beyond my understanding. In proper programming languages, you would write that as function myFunction(ref myArray) if you expressly wanted the function to work on the original array, but since this is JavaScript, we're doing unannounced open heart surgery on other people's arrays, I guess.

    AHHHHHHHHHHHH!

    I have half a mind to write a blog post about this, with more code examples, just to vent my frustration.

    Javascript… fucking Javascript…

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @amberage [evil snarl] javascript passes everything by value. if it's not a scalar type, that value is a reference to your thing. these are (taps sign) not pointers pointers are bad so js doesn't have them :sigil:​ 😡​

    jomc, to random
    @jomc@friend.camp avatar

    my book launch in new york (finally booked after three months of nail biting) will be held....

    :tetris_j: DECEMBER 4 @ WONDERVILLE :tetris_s:

    :ac_confetti:

    plz plz come (more soon)​:blobcheer:

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @jomc i would recommend boosting that list; i think that only people who have both of us as common linkage will see a reply, which is exactly nobody

    Rch, to random
    @Rch@geekdom.social avatar

    How am I supposed to actually do this?

    Asking for a friend.

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @Rch you've already done more than i have. just keep swimming

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    only at 3.30pm did he connect 'upset stomach' and 'world's largest burrito for lunch'

    mxtthxw, to random
    @mxtthxw@mxtthxw.art avatar

    Any time I see/hear any reference to small boats from the UK Government, I'm going to remind folks that they mean rubber dinghies. england shook by rubber dinghies. lol rubber dinghies.

    This is a rubber dinghy.

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @mxtthxw everytime i hear someone say 'small boats' i hear 'little boots'
    - remedy
    https://songwhip.com/little-boots/remedy

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    deleted_by_author

  • Loading...
  • pootriarch,
    @pootriarch@eldritch.cafe avatar

    @lydiaconwell if i knew sci-fi well enough i could come up with something snappy… but don't so can't

    Sheril, to mastodon
    @Sheril@mastodon.social avatar

    With new folks arriving on every day, a reminder that social media doesn’t have to look like anything we’ve experienced before.

    We get to build the fediverse. So let’s make it awesome ✨

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @catsalad i can't even look at linkedin anymore. all those people pretending to be self-important make my eyes water
    @Sheril

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    i'm sitting in the coffee shop in the castro that i've come to on and off as long as i've known how to get here. i assumed covid would kill them. but today they were talking about how to handle traffic flow when it's really busy, and that's just a nice thing to hear

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    i mask outdoors because the forecast is for heavy surveillance

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    so the information superhighway is mostly billboards with some tollbooths. ok

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    the trouble with social media, any social media, is that avoiding assholes takes a lot of work while finding them is effortless

    dalfen, to random
    @dalfen@mstdn.social avatar

    Max is owned by Discovery Inc. and now traded publicly as "Warner Brothers Discovery"--

    A "powerhouse" powerhouse that includes HBO, CNN, TBS, TNT and the huge film and TV studios of Warner Bros.

    /1

    Unlocked Article:

    https://www.nytimes.com/2022/04/08/business/media/discovery-warner-media.html?unlocked_article_code=1.7Uw.ScYX.cagj4e5c-1EX&smid=url-share

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @dalfen
    > immersive shared reality domes

    wtf, like a cone of silence?

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    the prompt: what is the you want that does not exist?

    answer 1: a wish list of electronics running grapheneos, a fork of android with security and privacy hardening

    answer 2: a that can plunge and snake itself

    pmonks, to showerthoughts
    @pmonks@sfba.social avatar

    I really don’t understand user-hostile infrastructure like this in SF’s public parks. The main argument I’ve heard is that it’s to stop certain classes of visitor from ruining other visitors’ experience, but stereotyping one specific user group (skaters, in this example) is just old-fashioned bigotry.

    Not to mention that this kind of (dubious) strategy isn’t even applied evenly. The worst experiences I’ve had in our public parks have almost entirely involved dogs, but I don’t see anti-dog infrastructure anywhere (heck, I don’t even see respect for, or enforcement of, existing dog regulations most of the time).

    pootriarch,
    @pootriarch@eldritch.cafe avatar

    @pmonks whatever i think of packs of skaters, this is a prior decade's problem. kind of like removing shoes at airports. potentially defensible for a moment in time, but now i just get a shell-shaped mound of ouch on my ass

    pootriarch, to random
    @pootriarch@eldritch.cafe avatar

    blonde toddler in a pram with henna tats of cartoon characters i don't know, clutching her little giraffe backpack. i nearly melted from the cute

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • kavyap
  • DreamBathrooms
  • khanakhh
  • mdbf
  • InstantRegret
  • magazineikmin
  • GTA5RPClips
  • modclub
  • rosin
  • Youngstown
  • slotface
  • everett
  • ethstaker
  • provamag3
  • thenastyranch
  • ngwrru68w68
  • tacticalgear
  • cubers
  • tester
  • Durango
  • anitta
  • normalnudes
  • osvaldo12
  • cisconetworking
  • Leos
  • megavids
  • lostlight
  • All magazines