Skip Navigation

Posts
124
Comments
254
Joined
5 yr. ago

cultural reviewer and dabbler in stylistic premonitions

  • man cat

  • i'm not a physicist but iiuc orbiting the sun is actually pretty necessary 🤔

  • The retreat is scheduled for August 12–16 at a venue near Dublin, Ireland.

    The original version of the source article identified the location as the Powerscourt Hotel; in an act of journalistic cowardice (to be expected from a Condé Nast Publication) Wired later edited their article to remove that detail "to address a security concern raised by a Dialog representative".

    Esquire is unsurprisingly sticking with Wired's "near Dublin" description of the location, but fortunately it looks like some Irish media outlets (eg this and this) are reporting where it actually is so hopefully there will be some local opposition present.

  • For each participant, Dialog logs a membership status, every retreat the person has attended, a biography, a home city, and a private access token. WIRED is not publishing the tokens, which function as login credentials, or the personalized account links that contain them.

    This is an odd thing to say given that neither Wired nor their source ("the Swiss hacktivist maia arson crimew") appear to be publishing any of the actual data whatsoever, beyond the handful of mostly nonspecific references to it in the article text. (Eg, lots of sentences like "The website directory names sitting Trump administration officials, two US senators, six members of the Paypal Mafia, a former Middle East chief of intelligence, and a sitting ambassador to the United States, along with the founders and directors of many of the country's largest surveillance, data-broker, and advertising-data companies." - omitting names of any of these people.)

    Also, the linked archive says:

    Update 6/16/2026, 5:47 pm EDT: WIRED updated this article to correct a conflation of two people named Jeff Epstein. A small revision was also made to address a security concern raised by a Dialog representative.

    Someone helpfully had already made an earlier archive before that, so we can see what information Wired journalists Dell Cameron and Yulia Almazova removed at the request of a Dialog representative: where it now says "The retreat is scheduled for August 12-16 at a venue near Dublin" it originally said "The retreat is scheduled for August 12-16 at the Powerscourt Hotel outside Dublin".

  • He even managed to pull off cardassian with sideburns

    Combs did not ever play a Cardassian.

    Are you referring to his appearance on Voyager, where he played the vaguely-cardassian-resembling Penk?

  • Deleted

    Permanently Deleted

    Jump
  • don't threaten me with a good time

  • Deleted

    Permanently Deleted

    Jump
  • yep. (see my other comment in this thread)

  • Deleted

    Permanently Deleted

    Jump
  • another screenshot of a tweet, no link, no alt text, smh my head.

    imo science memes should link the science!

    Here is the paper from April which this tweet is actually referring to: https://royalsocietypublishing.org/rspb/article/293/2069/20252994/481340/The-phonology-of-sperm-whale-coda-vowels

    Unsurprisingly the tweet's characterization of the research as finding whale language "structurally comparable to Chinese" is an exaggeration; they are actually saying it is similar to tonal languages and then using Mandarin as one example of a tonal language.

    Human vowels consist of a sequence of glottal pulses produced by vocal folds. Whale codas consist of a sequence of clicks produced by vibrating phonic lips, which play a role similar to the human vocal folds [15]. In human languages, the frequency of glottal pulses corresponds to pitch—closely spaced glottal pulses give rise to a higher pitch, while more widely spaced pulses give rise to a lower pitch. In linguistics, tone refers to pitch as recruited to express linguistic meaning. Many languages use tone to distinguish between different words. For example, in Mandarin Chinese, the following four words differ only in their tonal contour, while having the same consonants and vowels [21]: high and level tone ma ‘mother’, rising tone ‘hemp’, falling-rising tone ma ‘horse’ and falling tone ‘scold’. The coda types can therefore be compared to human tone: ‘regular’ coda types can be compared to level tones, codas with ‘increasing’ ICIs to falling tones and codas with ‘decreasing’ ICIs to rising tones. (However, our analogy has a limit: while in human languages, different tones can be associated with different meanings, the meanings conveyed by sperm whale codas have not been established.) In figure 1, the ‘F0’ (fundamental frequency) of each coda is represented with a blue line.

    Beguš et al. [15] show that different coda vowel qualities can be instantiated on the same coda types and propose that coda type and coda quality are orthogonal [15]. This points to another parallelism between the sperm whale communication system and human language, as tone and vowel quality are often similarly orthogonal. For example, in Mandarin Chinese, the falling–rising tone may appear on any vowel, e.g. ma ‘horse’, ma ‘rice’ and ma ‘smear’. Orthogonality, in this case, is used to describe the independent mechanisms of production between the traditional timing or source features and the vocalic or filter features. In other words, the rate of vocal fold or phonic lip vibration can be independent of the shape of the resonant body (the vocal tract or the distal air sac), and both vowel types surface on several traditional coda types. However, while the production can be independent, there can still exist distributional patterns, where a vowel quality is more frequent on certain tones or some coda vowels are more common on certain traditional coda types. Our paper builds on Beguš et al.’s [15] findings and reveals further complexities within the system of sperm whale vocalizations.

    Here is an article about it: https://www.theguardian.com/environment/2026/apr/15/sperm-whales-alphabet-vocalizations-similar-humans ...which also links this other fascinating news from the same lab from back in March https://www.theguardian.com/environment/2026/mar/27/scientists-film-whale-giving-birth-other-whales-help-her ("This is the first evidence of birth assistance in non-primates")

    finally here https://xcancel.com/kuso_otoko/status/2062224294835540161 is the tweet this post is a screenshot of, where you can find people in the replies already making the predictable "met them at a very Chinese time in their life", "that's why japan hates them", etc jokes.

    i'm definitely not working in China's Cetacean Ops and trying to prevent the western world from finding out that whale speak is just super slowed down Mandarin, i swear

  • One shot rewriting the whole test suite

    tridge's blog post makes it clear that this was not "one-shotted" at all.

    You should read the whole thread

    I regret reading it; I'll assume in good faith that it wasn't LLM generated but it is ironically as confidently wrong as if it were.

    It almost (and should have) lost me when it started by quote-agreeing with someone else saying "rsync was basically done until the maintainer discovered vibecoding" - no, pay attention, it was not "basically done", there were/are a mountain of CVEs!

    But then this got my interest:

    This does not “translate tests into pytest” or a unit testing framework, it writes its own testing framework where tests are whole python scripts that redefine basic test functions in every script. Surely there would be a single way to “run rsync and get the results” - nope, well, there is, but then every test file will randomly redefine its own _run_and_capture function.

    tridge says he has used pytest on other projects and had good reasons not to use it here; I'm inclined to believe him.

    But the notion of every test defining its own way to invoke rsync sounded like a valid criticism, and an easy one to verify, so I checked: It turns out that there is in fact a common run_rsync function which is used by the majority of the tests. One test defines its own _run_and_capture function (which differs in that it writes the output to a file, for reasons I didn't investigate), and it looks like a few others invoke rsync other ways, but the majority of them use the common function.

    So, that rambling thread's sole concrete criticism of rsync's new python tests turns out to be false.

  • efforts to intervene, which range from removing perches to hormone treatment and surgery

    wtf :(

  • Deleted

    Permanently Deleted

    Jump
  • "lmao"?

  • Science Memes @mander.xyz

    quick explanation

  • TenForward: Where Every Vulcan Knows Your Name @lemmy.world

    Chain of burger restaurants

  • Programmer Humor @programming.dev

    AI errno(2) values

    www.netmeister.org /blog/ai-errno.html
  • TenForward: Where Every Vulcan Knows Your Name @lemmy.world

    "It is the year 2000. But where are the flying cars? I was promised flying cars. I don't see any flying cars. Why? Why?"

  • Comic Strips @lemmy.world

    come down from there - #pfsc

  • Comic Strips @lemmy.world

    shitty singularity - #pfsc

  • Opensource @programming.dev

    Clean Room as a Service: Finally, liberation from open source license obligations

    malus.sh
  • Leopards Ate My Face @lemmy.world

    Trump administration goes after Second Amendment rights in justifying Minneapolis shooting

    www.nbcnews.com /politics/trump-administration/trump-administration-second-amendment-rights-minneapolis-shooting-rcna255784
  • Not The Onion @lemmy.world

    Palantir CEO Says AI Will Somehow Be So Great That People Will Stop Immigrating

    gizmodo.com /palantir-ceo-says-ai-will-somehow-be-so-great-that-people-will-stop-immigrating-2000712148
  • Not The Onion @lemmy.world

    Trump Isn't the First to Be Gifted a Nobel Prize He Didn't Win—Joseph Goebbels Got One Too

    www.commondreams.org /news/machado-nobel-prize-trump
  • Science Memes @mander.xyz

    You don't have to use gyroelongation

  • Fuck AI @lemmy.world

    AI-authored code needs more attention, contains worse bugs

    www.theregister.com /2025/12/17/ai_code_bugs/
  • Not The Onion @lemmy.world

    Trump Designates Fentanyl as a Weapon of Mass Destruction

    www.whitehouse.gov /fact-sheets/2025/12/fact-sheet-president-donald-j-trump-designates-fentanyl-as-a-weapon-of-mass-destruction/
  • Fuck AI @lemmy.world

    "AI" gets an innocent man arrested; even after validating his Real ID card, cop discounts possibility of facial recognition false positive: "their software is pretty cool" and "our hands are tied"

  • memes @lemmy.world

    #NotAllGenAI

  • Memes @lemmy.ml

    #NotAllGenAI

  • Programmer Humor @programming.dev

    Strengthen your arguments with compelling programming book covers

    orlybooks.com
  • Golang @programming.dev

    Go proposal: Secret mode

    antonz.org /accepted/runtime-secret/
  • Not The Onion @lemmy.world

    Trump-backed crypto company promotes 'Shit Piss Skin Can' memecoin of its co-founder's rant "You can literally sell shit in a can, wrapped in piss, covered in human skin [...] people will buy it"

    gizmodo.com /trump-crypto-bitcoin-btc-price-shit-piss-skin-can-wlfi-2000692230