No.1 (Untitled), 1948 #markrothko #abstractexpressionism
Posts by laura
é
se aqui já é uma fortuna, não imagino aí
nao tenho diagnostico (nem de sim nem de nao) mas cozinha pra mim só com timer
identidade visual é saber qual música iria estar tocando antes de dar play no vídeo haha
praticamente um morreu de "pá nela"
Thiê-de-banda
Next hipster goal: learn Dvorak
I have to say: I love how mac is easy to go and connects well with iOS
But I'm falling again for Linux on how easy is to configurate things
And I'm not even with a gui, I'm building a server
I believe it was more than 10 years that I didn't type "dd" or "umount" on a terminal hahah
Installing a Linux using a flash drive
I can't remember what was the last time I've done it
(Yes, I sold my soul to macOS a decade ago)
Tec tec tec tec tec
A split mechanical keyboard with some keys not assembled
Hipster achivement unlocked
Awesome talk from professor @felienne.bsky.social !
I think I never thought about it so clearly about this, but some of these thoughts have been in my mind at some point
translating a brazilian meme/saying:
you've just rented a triplex in my mind
dank je professor!
Also a lot of real world problems we solve today use maths discovered decades or centuries ago. Back then this math was "useless"
I'm really anxious for the Banach-Tarski apples!
Merged!!!
Officially contributed to a very important emacs library! 🥹
:D
Pic of a desk with a few coins, a paper with marks suggesting future spots for the coin in an album
Numismatic Saturday
completely steven-wilsed
Emacs lisp implementation of semigroup and monoid. A few examples running with string and a custom type for complex numbers
screenshot of this section https://github.com/viglioni/l-el/blob/main/docs/breaking-changes.org#examples
First breaking change in l.el!!!
Added arrow syntax and direct values on pattern matching (like in elixir)
github.com/viglioni/l-el 1.0.0 is live
#emacs #lisp #elixirlang
Screenshot of this page https://github.com/viglioni/l-el/blob/main/docs/api.org#list_of showing list_of and list_of_instances
Now l.el has a way nicer type system for pattern matching :D
Even with list checks (elixir doesn't have it 👀)
to be release today or tomorrow, but the code is there already
github.com/viglioni/l-el
screenshot showing a few tests of lcomp, for instance: (lcomp (l x -> (length x)) (reverse __) #'cdr)
After some time without touching l.el, I finished the compose macro that allows my custom lambda notation and placeholder!
((lcomp
(l x -> (length x))
(reverse __)
#'cdr) '(1 2 3 4))
which translates to
(funcall (lambda (x) (length x))
(reverse
(cdr '(1 2 3 4))
#emacs #lisp