LLM thoughts

This is what I like to tell people when they tell me they learned something from an LLM:

Pick an obscure subject about which you know a great deal. Now ask an LLM a bunch of questions on that subject and see how long it takes it to give you a wrong answer. Now ask yourself if someone who didn't know the subject as well as you do would have caught that mistake.

Finally, ask yourself: do you still trust the LLM?

Boyd Stephen Smith Jr. reshared this.

Is there a way in #emacs #org-mode to next quote blocks? The following doesn't seem to work.

#+begin_quote
This is a quote.

#+begin_quote
This is a quote within the quote.
#+end_quote
#+end_quote

Emacs is ignoreing the second #+begin_quote and just closing the quote block at the first #+end_quote.

Edit: So the solution I settled on was putting the nested quote in a drawer named :quote:. it's not an ideal solution, but for my purposes in this case it's... fine, I guess.

God help me if I ever need three levels of nesting.

So, somebody has registered an #LLM bot as a player on #LambdaMOO. I've banned it from the areas that I control, but can't ban it from public spaces.

How might I best go about messing with it? So far, I've just been feeding it lies when it asks me questions.

I've also already slipped a sign in its inventory that identifies it as as an LLM to anyone who happens to look at it.

reshared this

Does anyone happen to know if there's an easy way to get #emacs's nov.el package to display text using the #OpenDyslexic font? I was hoping there was a customization variable, but it seems not.

Perhaps I could run it in a terminal editor and change the terminal's font, but then I'd lose things like images.

I can hack something together if I really need to, I'd just rather not if there's a simpler solution available.

#a11y #books

Edit: I was able to do this through M-x customize-face

reshared this

in reply to Jonathan Lamothe

The media in this post is not displayed to visitors. To view it, please go to the original post.

As it happens, I was changing font on #Emacs just yesterday. M-x menu-set-font will open a font browser and let you choose, and it works. You can also select this from the 'Options' menu.

This however isn't 'sticky' -- next time you start emacs it will have reverted.

I found that

(set-frame-font "OpenDyslexic")

in my init.el works to change it persistently.

emacs problems

So, I've started a new job. In said job, I'm editing a document which I've spent a couple hours working on. This is all being done in a browser.

I reach a point where I want to search backward through the text for a name, so my #emacs brain says, "Easy peasey, that's just C-r", which I press... reloading the page.

It's at this point I have a minor heart attack, and consider myself lucky that their web app frequently saves my work.

I'm getting closer and closer to passing the entrance exam for this job. I also learned a little tidbit about why they're always hiring: apparently, "AI-generated" transcripts are inadmissible in US courts.* As much as they might like to, they legally can't replace this job with AI.

Combine that with the very small overlap between people capable of passing this exam and people actually willing to jump through those hurdles, and you have glut of available work.

* At least for now. Give the techbro billionaire class time to keep eroding the US legal system, and who knows?

So, there was a post on the fedi about a project Johnny Harris was working on. Some people in that thread seemed to think that he was untrustworthy, even going so far as to posit that he might be a CIA asset. I had no idea why they believed this, but it was echoed by more than one person.

I am familiar with Johnny's work. He always seems to do a good job of citing his sources (at least to my casual inspection). I asked about this distrust but received no response. Perhaps they thought I was sealioning?

So, I'm asking here: Is there an actual valid reason to distrust him that I'm simply not aware of, or is just stemming from the fact that he likes to shine light on things that some would rather not have light shined on?

Hey Fedi,

For those who don't know, my mother had a major #stroke a little over a month ago. We're very fortunate to live in a country (Canada) where we have free #healthcare, but as her discharge from the #hospital looms closer, we're having to raise funds to make #accessibility modifications to my parents' home so that she can return. Boosts are welcome (and appreciated).

gofund.me/a69e0cdc4

#a11y #MutualAid

Are there any #Lisp programmers out there who use a #ScreenReader? Given how messy Lisp can be to read without proper indentation (which I imagne wouldn't translate well on a screen reader) I can't see it is being an easy language to work in without being able to see it.

I've been thinking about a way to make an editor that lets you explore a Lisp program by walking through the forms in the program in a manner similar to the way one might navigate in a MUD. Is this a crazy idea, or one with some merit?

in reply to Jonathan Lamothe

Seemingly plain (lambda () ...) is a macro that expands to (function (lambda () ...)). #'(lambda () ...) uses a reader macro to expand to the same (function (lambda () ...)).

clhs.lisp.se/Body/m_lambda.htm

Function is a special operator that returns a function. It takes either a function name or a lambda expression. The second case is what is happening here.

clhs.lisp.se/Body/s_fn.htm#fun…

A lambda expression is a list of the symbol lambda, a lambda list, and a body.

clhs.lisp.se/Body/26_glo_l.htm…

This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.