Readit News logoReadit News
bshimmin commented on I Found David Lynch's Lost 'Dune II' Script   wired.com/story/david-lyn... · Posted by u/BerislavLopac
deepnet · 2 years ago
Lynch's Dune is vibrant, transgressive and weird. Every detail is unsettling in the way only Lynch is. The scale invokes awe. Excited frisson and disgust overlap uncomfortably. The emotions evoked are grand and complex. It is a challenging film, a masterpiece.

Villeneuve's dune is an enjoyable film, it conforms to expectations, and easily lauded. As such it is somewhat anodyne and flat. It is only rich where it borrows from Lynch. The scale feels small like tilt-shift does.

bshimmin · 2 years ago
So many of the negative comments about Villeneuve's Dune in this thread are astonishing to me, but I will just pick this one: surely scale is something that Villeneuve does so brilliantly! From Arrival, though Blade Runner 2049, to his Dune, he has an amazing ability to make things seem vast (space ships, buildings, cities...) - it's almost a trademark of his work, to me, so colour me baffled that you would single this out for criticism.

(For context, I read and enjoyed the Dune books as a child, I've seen the Lynch film several times and find it broadly comical, I love Twin Peaks, and I think Villeneuve is arguably one of the best mainstream directors working right now.)

bshimmin commented on Millennium Bridge workers hang straw bales after ancient bylaw triggered   theguardian.com/uk-news/2... · Posted by u/6LLvveMx2koXfwn
bshimmin · 2 years ago
Here's the charity responsible for this bridge and several others in London: https://www.citybridgefoundation.org.uk/about/history Founded in 1122, which is quite something!
bshimmin commented on How would you say “She said goodbye too many times before.” in Latin?   latin.stackexchange.com/a... · Posted by u/micouay
academia_hack · 2 years ago
I'm really sad at how much Latin I've managed to lose since my school days. It's really an incredible language and this stack exchange post shows some of that versatility.

Because the words in Latin contain dense grammatical information in their spelling, you can be much more flexible with word order.

This gives classical poets the ability to do crazy things with word ordering to create "word pictures" where the structuring ordering of the words conveys some additional meaning. This can be done in English too, but classical Latin is almost made for it.

For example, Catulus 85:

"Ōdī et amō. Quārē id faciam fortasse requīris.

Nesciŏ, sed fierī sentiō et excrucior."

The translation Wikipedia gives is: "I hate and I love. Why I do this, perhaps you ask.

I know not, but I feel it happening and I am tortured."

But there is so much brilliance in the structure of the poem that translation cannot really encapsulate. The last word "excrucior" (I am crucified) references a relationship between the structure of the first and second line. Each verb on the first line has a "mate" on the second. For example: odi (I hate)<->excrucior (I am tortured), requires (you ask) <-> nescio (I know). If you draw lines connecting these mates to each other, they form a number of crosses - referencing the "crux" in "excrucior". The poem literally depicts the torture instrument that is Catulus' love.

Even more remarkably, this poem follows a strict metrical standard dictating the order of long and short syllables: https://en.m.wikipedia.org/wiki/Elegiac_couplet and it achieves this meter in part due to the use of elision in the opening of the poem, where two vowel sounds get merged due to the ordering of words. "Odi et Amo" is read as "Odet Amo" as the the love and hate crush together and evoke that sense of pressure and torment that underlies the couplet.

Classical Latin had so much capacity for structural complexity that is really remarkable. It's not just that you can say more stuff with less words, but that the allocation of information in the grammar allows for entirely different expressions than you could make if word order dictated meaning.

bshimmin · 2 years ago
Great comment! For anyone looking to learn a bit more about this, the "crossing" technique described above is called "chiasmus": https://en.wikipedia.org/wiki/Chiasmus

Another famous example is "Vivāmus, mea Lesbia, atque amemus" from Catullus 5 (there are several instances of it in this poem, in fact).

bshimmin commented on This time, it feels different   nadh.in/blog/this-time-it... · Posted by u/mad2021
jprete · 2 years ago
Apple was absolutely an industry leader before the 2000s. Which leaders exactly have been knocked off their perches?
bshimmin · 2 years ago
Yahoo ("once the most popular web site in the U.S.", according to Wikipedia)?
bshimmin commented on Majority of gig economy workers are earning below minimum wage: research   bristol.ac.uk/news/2023/m... · Posted by u/giuliomagnifico
Jupe · 2 years ago
Are "gig" workers considered independent enterprises themselves? Do they need to pay self-employment taxes?
bshimmin · 2 years ago
They are considered to be self-employed. If they're earning more than £1000 a year, then they need to file a self-assessment tax return with HMRC, and if they're earning more than a certain amount, perhaps £12500 a year, they will need to pay income tax on those earnings (plus national insurance).

Do most gig workers actually do these things? I have no idea.

bshimmin commented on Kchat: Persistent group chat in <50 lines using kdb+/k/q web sockets, JavaScript   github.com/srpeck/kchat... · Posted by u/telotortium
Avshalom · 2 years ago
N.B. https://code.kx.com/q/ref/dotz/ is doing the heavy lifting here.
bshimmin · 2 years ago
This is such a helpful comment - what looks, to the uninitiated, like line noise actually starts to make some sense now!
bshimmin commented on CoffeeScript for TypeScript   civet.dev/... · Posted by u/paulsb
bshimmin · 3 years ago
I'm slightly surprised no one has commented on the custom infix operators. I think if I encountered the example in the wild, I'd understand it was a clamp function based purely on the names, but if it were used for anything else I'd have to spend quite a lot of time puzzling over it. Perhaps they make more sense to Haskell people, though!
bshimmin commented on Pangram   en.wikipedia.org/wiki/Pan... · Posted by u/bryanrasmussen
tsm · 3 years ago
No 'm' either:

    (def phrase "Fjord zoologists quip jovially, waxing lyrical about xanthic lutrines")
    (require '[clojure.string :as str])
    (-> phrase str/lower-case distinct sort)
    ;; => (\space \, \a \b \c \d \e \f \g \h \i \j \l \n \o \p \q \r \s \t \u \v \w \x \y \z)
(edit: OP originally just mentioned 'k' but then ninja-edited in the 'm')

bshimmin · 3 years ago
You are right, I did - sorry. I wrote something similar in Ruby to check!
bshimmin commented on Silurian Hypothesis   en.wikipedia.org/wiki/Sil... · Posted by u/hosteur
bshimmin · 3 years ago
A word of warning: a few years ago, the related page at https://en.wikipedia.org/wiki/Out-of-place_artifact took me down one of the worst Wikipedia procrastination rabbit holes I've ever lost myself in.
bshimmin commented on Pangram   en.wikipedia.org/wiki/Pan... · Posted by u/bryanrasmussen
fortran77 · 3 years ago
Maybe, but it's not a pangram. ChatGPT is slippery. (There's no "k". I stopped looking there.)
bshimmin · 3 years ago
There's a "b" in "about", but there's no "k" or "m".

u/bshimmin

KarmaCake day5147October 26, 2013
About
Arbiter elegantiarum.

Also here if you want to pester me: https://shimmin.org/ben

[ my public key: https://keybase.io/benshimmin; my proof: https://keybase.io/benshimmin/sigs/7sXlzYQEXMO4kzH9Jkpbgm1LMiaOTvbU1R0DMaKdFg4 ]

View Original