Search
58 results for “jlamothe”
-
Okay, my first #Emacs package is officially released. It was strongly inspired by @sorobanexam's work, providing practice tools for the #soroban. This is the first Emacs package I've ever released. It's probably not perfect, but I welcome feedback on how it can be improved.
I wonder if there is an overlap of more than say five people who are both soroban and emacs users. 🙃
Anyhow, it can be found at: codeberg.org/jlamothe/soroban
-
#phloggersGarage many / #100DaysToOffload #gopher #lambdaMOO
gopher://tilde.club/0/~screwtape/mootooter-002.txt
https://gopher.tildeverse.org/tilde.club/0/~screwtape/mootooter-002.txtFront page:
gopher://gopher.club/1/users/screwtape
https://gopher.tildeverse.org/gopher.club/1/users/screwtapeand I quote myself:
"
Today I most materially followed some of jlamothe's helpful moomails.In particular, I seem to have managed to break jlamothe's
room-connector at a crossroads (#66139), which is their intended room
connexion spot.I had to rejig my exits for suitability.
...
" -
I'm a bit worried that technical gremlins are eating https://anonradio.net:8443/anonradio (where is everybody) and I'm quite looking forward to ^ live interview. If you can, could you please boost over/in the next hour or so.
https://mastodon.sdf.org/@screwtape/113670481731400200
Yesterday's announcement toot:
https://mastodon.sdf.org/@screwtape/113666050682187320
#podcast #live #interview #lisp #medleyjoin #lambdaMOO to talk too
@interlisp @nosrednayduj @dougmerritt @jlamothe @alexshendi @rat @pkw @mdhughes @sacha @masinter @kentpitman @prahou
-
#lispyGopherClimate https://anonradio.net:8443/anonradio #live #liveNow
#climate #haiku https://climatejustice.social/@kentpitman/112913565394948819 @kentpitman and education.#music #10amusic https://10amusic.bandcamp.com #christchurch #aotearoa #nz
#gopher and friends - @mhd being linked to sunset by @jns
#lisp figuring out images in #mcclim briefly #commonLisp
#softwareIndividuals as pitched by sandewall et al#unix_surrealism #art @prahou https://lambda.moo.mud.org/
#lambdaMOO using #tinyFugue ??? Meetup in @jlamothe's paradise sushi
-
Has anyone ever successfully gotten #GtkAtlantic working on a #Mac? Tried to compile from source on Katy's laptop, but #homebrew complained about the OS being out-of-date, and I couldn't get #libtool working. #askfediverse
-
So after ensuring that everything is backed up, it looks like #Ubuntu has replaced #UNetbootin with with a tool that only lets you create Ubuntu boot disks. Canonical, I expected better of you.
-
So after ensuring that everything is backed up, it looks like #Ubuntu has replaced #UNetbootin with with a tool that only lets you create Ubuntu boot disks. Canonical, I expected better of you.
-
Does anyone know if there's a way for a web app to use a Mastodon account as a user authentication method, the same way you can use a Google or Facebook account? Being a decentralized service, is that a thing that could actually work? Bonus points of there's a #yesod package already in existence. #authentication #webapp #programming
-
I just discovered #Krita's colourise tool... and here I've been colouring the fill bucket and touching up with the brush like a sucker. 🤦♂️ -
I just discovered #Krita's colourise tool... and here I've been colouring the fill bucket and touching up with the brush like a sucker. 🤦♂️ -
I just discovered #Krita's colourise tool... and here I've been colouring the fill bucket and touching up with the brush like a sucker. 🤦♂️ -
I just discovered #Krita's colourise tool... and here I've been colouring the fill bucket and touching up with the brush like a sucker. 🤦♂️ -
I just discovered #Krita's colourise tool... and here I've been colouring the fill bucket and touching up with the brush like a sucker. 🤦♂️ -
I really wish #org-mode would allow me to specify a manual UTC offset in my timestamps. -
I really wish #org-mode would allow me to specify a manual UTC offset in my timestamps. -
I really wish #org-mode would allow me to specify a manual UTC offset in my timestamps. -
I really wish #org-mode would allow me to specify a manual UTC offset in my timestamps. -
In the year of our Lord, two thousand twenty-six, why are people still getting text encodings wrong?
I love #usenet.
-
In the year of our Lord, two thousand twenty-six, why are people still getting text encodings wrong?
I love #usenet.
-
In the year of our Lord, two thousand twenty-six, why are people still getting text encodings wrong?
I love #usenet.
-
In the year of our Lord, two thousand twenty-six, why are people still getting text encodings wrong?
I love #usenet.
-
In the year of our Lord, two thousand twenty-six, why are people still getting text encodings wrong?
I love #usenet.
-
Just spent almost an hour on the phone with #Primus (my ISP) trying to get them to honour the original deal I had with them.
Long story short: my bill's still going up, but now it's only $2.
Not a deal I would consider fair, but the extra $2 isn't worth my sanity.
-
CW: elisp help
Okay, so I wrote this hacky nonsense in my
~/.emacs.d/init.el, but it doesn't seem to be having any effect. The function in question seems completely unaffected.Perhaps this code is being evaluated before the original function is defined?
;; Mail hack (defvar jrl-mail-hack nil "Flag to prevent from overloading the function a second time") (let ((oldfunc (symbol-function 'message-unique-id))) (unless jrl-mail-hack (defun message-unique-id () (secure-hash 'sha256 (funcall oldfunc))) (setq jrl-mail-hack t)))
The idea is to hash the Message-ID header in outgoing mail because Gmail seems to have decided the original format looks like spam.
#emacs #elisp #AskFedi -
CW: elisp help
Okay, I need to do a hacky #elisp thing. Yes, I know it's terrible.
Basically, I have an existing
defun. Let's call itfoo. I need to replace it with a new function that calls the old one and transforms its output before returning it.I naïvely assumed I could do it like this:
(let ((oldfunc (function foo))) (defun foo () (my-transform (funcall oldfunc))))
...but this doesn't actually copy the old function, just a reference to the symbol, so it ends up locking itself in a recursive loop.I'm sure there's a way to do this.
#AskFediEdit: Got it. It's:
(let ((oldfunc (symbol-function 'foo))) (defun foo () (my-transform (funcall oldfunc))))
Edit 2: It turns out there's a cleaner way still.
See: aus.social/@carlozancanaro/116…Also, there's still something Gmail isn't liking. Looking at the differences in the headers between emacs and my other clients (whose mail does get through), the next most obvious difference is that the
Content-Typeheader doesn't specify an encoding. Whether this is the actual problem or not, I should probably fix that. I'm just working on how.
RE: aus.social/users/carlozancanar… -
Looks like I might have to figure out how to set up #DKIM. -
Looks like I might have to figure out how to set up #DKIM.