Skip to main content



The seemingly canonical way of detecting whether the C-u modifier was used on an interactive function call (when an actual nemerical argument wasn't provided) in #elisp feels... icky. #emacs


Nintendo in my email today: We have updated our terms of service. If you agree, do literally nothing. If you disagree, please jump through the hoops necessary to delete your account.

How is this legal?

reshared this






Me: I'm just going to specify these #org-mode table formulas so that they can be executed sequentially to update this whole table in a single pass.

org-mode: Hey bro, let me automatically sort those by position for you. You're welcome.

Me: 🤦‍♂️

#emacs








Wrapping my brain around using #org-mode as a spreadsheet. Is there a way to pass a range of cells as a vector to a custom function? Ideally, I'd like to embed this function into the file itself. #emacs

bjb reshared this.

in reply to Jonathan Lamothe

I like using org tables with org-babel like so:

#+NAME: test
| 1 | 4 |
| 2 | 5 |
| 3 | 6 |

#+begin src emacs-lisp :var test=test

(mapcar
'(lambda (r)
(mapcar '(lambda (x) (* x x)) r)) test)

#+end src

#+RESULTS:
| 1 | 16 |
| 4 | 25 |
| 9 | 36 |


in reply to Jonathan Lamothe

Okay, the problem seems to have been the charger. Still annoying, but less problematic.



I wonder how difficult it would be to introduce rudimentary namespaces into #elisp.

#emacs

Harald reshared this.

in reply to Jonathan Lamothe

Just learned about interned vs. uninterned symbols. Feels like this would be a big piece of this puzzle.


So, I absolutely can't afford to start yet another hobby, but I really want to get into book binding.
in reply to Jonathan Lamothe

Dane's law: There is not a hobby in existence that has any kind of an upper limit on how much money you can spend in it.

Fountain pens? Sure, there's the Platinum Preppy and Pilot Varsity, but also Momtblanc and Visconti!

Amateur Radio? Sure there's your $30 Baofeng, but also your $20,000 kilowatt at-home HF shack!

Drones? Sure, there's your $20 supermarket drone, but also tens of thousands of dollars super high performance FPV racing drones

Computing? $35 raspi vs at-home supercomputing cluster, just for giggles!



So, I've finally settled on a technique to keep shimmer inks from clogging my #FountainPens and it's working well, but it's not exactly condusive to writing in #teeline which is what I use 90% of the time these days.

reshared this

in reply to paradoxmo

@paradoxmo I'm currently using a TWSBI Diamond 580. As for the technique, I was basically just making a rookie mistake:


It looks like I wasn't moving the pen enough. As I would keep writing, the shimmer would collect in the feed until it just straight-up clogged. I didn't realize I had to periodically roll the pen around even while I was actively using it. This should have been obvious by the fact that my writing kept getting more and more, well... shimmery before the ink stopped flowing.

I'll try this approach in the future.

Rookie mistake, but in my defense, I didn't even know that shimmer inks were even a thing until late last year.






It always amuses me whenever I think about the fact that I got one of my favourite #FountainPens for free with a bottle of ink. It's even more amusing that I've never inked that pen up with that ink.

reshared this

in reply to Jonathan Lamothe

@jlamothe Ah it looks so fun! You've made me excited again about trying my sample. I got mine with the intention of using it for letters to my nephews . . . one of these years I will gift them a UV flashlight and then I can send them letters to read with it 😀




So, with this past #Inkvent calendar, I've found myself in possession of a bunch of shimmering inks. Problem is that they tend to clog my #FountainPens. Are there any inexpensive pens that handle shimmering inks well?
in reply to Jonathan Lamothe

"Are there any inexpensive pens that handle shimmering inks well?"
Well, there's dip pens. 😉
in reply to Jonathan Lamothe

I bought a few of those small plastic "Dinky Dips" ink containers- they come in three sizes. I can use my ink syringe to put some of my shimmer ink into a Dinky, add a drop or two of Gum Arabic (to help make it more dip nib friendly), and it's a better size--- you can use the dip nib to stir the ink each time you dip it in, since it's not that deep and the container mouth is wide (straight up and down shape). Inks stores well in it, the plastic cap screws tight. Just a thought!
in reply to Jonathan Lamothe

It looks like I wasn't moving the pen enough. As I would keep writing, the shimmer would collect in the feed until it just straight-up clogged. I didn't realize I had to periodically roll the pen around even while I was actively using it. This should have been obvious by the fact that my writing kept getting more and more, well... shimmery before the ink stopped flowing.

I'll try this approach in the future.

Rookie mistake, but in my defense, I didn't even know that shimmer inks were even a thing until late last year.



Why do I always find little stupid mistakes in my code shortly after publishing a release? It's almost like code review is beneficial or something.



I have successfully built my first #Emacs package. I want to clean it up a bit before I consider releasing it though. Also, while I can build a simple (single file) package, buildig a multi-file one is still eluding me.

When I try to install it, I get the following (less than helpful) error message:
Wrong type argument: stringp, nil

Is there a way I can get more detail on why this is failing?

reshared this

in reply to 🇺🇦 Myke

@🇺🇦 Myke Yes, it can be done that way as well.

That still doesn't negate the point that I want to know how to build a multi-file package.

Besides, sometimes I like to learn stuff just for the sake of learning it.

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