This is a little scary.
#ocaml #bash #claudecode
This is a little scary.
#ocaml #bash #claudecode
For those who don't know, a marathon is 26.2 miles (42.2 km).
#running #California #wow #youDeserveIt
www.runnersworld.com/news/a706418...
This painting could have been a photo.
See also: "this meeting could have been an email"
#art
I solved sex differences. You're welcome.
TIL in English it's pronounced E.D., like the Exdra Derresdrial alien in that movie.
LinkedIn gives us this single-line interface to compose messages on mobile. I believe this is a nod to 'ed', the standard line-oriented text editor for Unix systems. ๐ฅน
Congenital insensitivity to pain exists in humans (rare: ~1 in a million) and it seems not fun at all. See en.wikipedia.org/wiki/Congeni....
Regarding pain and suffering and whether this or that creature experiences it:
We experience pain because it increases our odds of survival. I'm not gonna say you should be thankful for it but it's important to realize that without feeling pain you'd most likely be long dead.
I mean stop anthropomorphizing animals, especially when the lesson is about optimizing things that are not necessarily centered around you.
Why do they call it "boiling the frog" when they could simply say "local minimum entrapment"?
Culinary note: frogs are better fried than boiled.
Very well. Then its fork or knockoff shall be called "ogre".
J'aime bien la tactique de faire plusieurs enfants et de choisir son successeur librement plutรดt que de bรชtement laisser la place ร son fils aรฎnรฉ. C'est un grand pas en avant pour la monarchie.
Why should these AI previews of paintings in a living room be avoided for serious/non-American artists?
It makes the painting look like a decorative piece. But there's nothing wrong about being decorative! The problem is it makes the painting's value cheaper than the already cheap living room.
The provided examples of nonmatching input distribute as follows:
1 ","
1 "-"
2 "\n"
2 "\t"
4 "@"
4 "["
5 "'"
5 "|"
5 "\128"
14 "\r"
22 "\\"
213 "\000"
756 ""
I ran it on the 1028 files ending in 'lexer.mll' on GitHub and got an error rate of 51.4% (529/1028).
Thanks! It's my first contribution to the core OCaml distribution. Never too late!
My exhaustiveness check for ocamllex was merged today and will be part of OCaml 5.6 ๐
About 50% of all mll files out there are affected and raise the exception 'Failure: empty token' on some input. An example of such input is now provided at compile time. github.com/ocaml/ocaml/... #ocaml
Wow, lightning. This is a once-in-a-year event here.
#bayarea #weather #climate #wow
Bro uses two different kinds of dashes in the same paragraph
Peace is not an ideal, it's a compromise.
#worldpeace #fuckyeah
Indent multiline text in #ocaml with this one weird trick the government doesn't want you to know:
val indent : int -> string -> string
let indent n str =
let prefix = String.make n ' ' in
str
|> String.split_on_char '\n'
|> List.map (fun line -> prefix ^ line)
|> String.concat "\n"
Il y a mรชme de la musique de Charles Aznavour au milieu !
A word from ChatGPT:
"Engineering conscience is what stops you from shipping something you wouldnโt want to maintain."
Pro tip: don't change your car battery just before going to a smog check ๐ (clears some records needed to pass so I'll need to come back)
Here's the result.
Follow me on Instagram for more frequent updates.
www.instagram.com/martinjambon/ #art
I filmed myself to prove I'm real or something.
#art
I think it's a dune error having to do with cyclic dependencies
tfw you realize each '=' in the value of an environment variable creates an extra variable
# Unix.putenv "a" "b=c";;
- : unit = ()
# Unix.getenv "a=b";;
- : string = "c"
#ocaml #posix #C