Earlier quoted context omitted.
[flagged]
confused why coc is okay, dong is not okay.
Serious answers are flagged, so it shall remain a mystery.
71–80 of 109 posts
Earlier quoted context omitted.
Growing old is mandatory; growing up is optional.
Thank you for connecting 2 sayings of Murakami Haruki :) 1.痛みは避けがたいが、苦しみはオプショナル ( https://archive.ph/Ca9rE ) Now, I don’t know how representative this book is of Murakami’s novelistic style, but I wonder: Is this low-maintenance, attention-deficit prose part of Murakami’s attraction, especially among the young? Do people enjoy reading him for the same reason they persist in listening to music as blandly familiar as C…
If it hadn't been for Clapton, I probably never would've heard of Laylā bint Mahdī bin Saʿd bin Muzahim bin ʿAds bin Rabīʿah bin Jaʿdah bin Ka'b bin Rabīʿah bin Hawāzin bin Mansūr bin ʿAkramah bin Khaṣfah bin Qays ʿAylān bin Muḍar bin Nizār bin Maʿad bin ʿAdnan.
https://en.wikipedia.org/wiki/Layla_and_Majnun
Lagniappe: https://www.youtube.com/watch?v=EZ8magpNo10&t=93s
>>> from __future__ import braces File " ", line 1 SyntaxError: not a chance For those interested in how this (hilarious) error text came to be, it's been hardcoded in cpython since 2001! https://github.com/python/cpython/commit/ad3d3f2f3f19833f59f... The author, Jeremy Hylton, is now a Principal Engineer at Google working on AI search quality. It's quite remarkable that in 24 years, a single person's career has gone…
It's always so cool to see this kind of Easter eggs. So sad that they're not as common as they used to be.
https://marc.info/?l=python-dev&m=130991276326041&w=2
In 2024 suddenly everyone is grown up and corporate and has never done anything wrong.
Earlier quoted context omitted.
Reminds me of `break rust;` causing the Rust compiler to emit an internal compiler error. I wonder which other languages have similar easter eggs.
Tcl really became “Enterprise-ready”[0] at this time. [0] https://stackoverflow.com/a/1026619
Earlier quoted context omitted.
Reminds me of `break rust;` causing the Rust compiler to emit an internal compiler error. I wonder which other languages have similar easter eggs.
This one in Haskell is coincidental, but used as a joke: ``` import Data.Function main = do let it = fix error print it ```
import Data.Function
main = do
let it = fix error
print itI used the ast rewriting stuff mostly before dicts were all ordered - replacing fist literals with an ordered dict call, which was actually useful.
I love how flexible python is. Most cursed thing I ever did was mutating strings in place, which led me eventually abusing mmap as well to write scripts that mutated themselves. Now I feel need to write lisp interpreter as a producer.
>>> from __future__ import braces File " ", line 1 SyntaxError: not a chance For those interested in how this (hilarious) error text came to be, it's been hardcoded in cpython since 2001! https://github.com/python/cpython/commit/ad3d3f2f3f19833f59f... The author, Jeremy Hylton, is now a Principal Engineer at Google working on AI search quality. It's quite remarkable that in 24 years, a single person's career has gone…
Reminds me of `break rust;` causing the Rust compiler to emit an internal compiler error. I wonder which other languages have similar easter eggs.
>>> from __future__ import braces File " ", line 1 SyntaxError: not a chance For those interested in how this (hilarious) error text came to be, it's been hardcoded in cpython since 2001! https://github.com/python/cpython/commit/ad3d3f2f3f19833f59f... The author, Jeremy Hylton, is now a Principal Engineer at Google working on AI search quality. It's quite remarkable that in 24 years, a single person's career has gone…
It's a misconception that the informal playful hobby hacking things are their separate world from real professional development.
Part of me says that python has not gone out of its way to expose preprocessor hooks for good reason, and reasonable adults should stay away from it. The other part wants nothing to do with reasonable adults anyhow. Such fun could be had.
Haha great hack. Something tells me I'll run across someone seriously using this in like 10 years...