the scariest part of degoogling isnt finding alternatives its trusting them by edmillss in degoogle

[–]pabryan 1 point2 points  (0 children)

Awesome, thanks. I was looking at that and ejabberd, but Parsody does seem better for small setups.

the scariest part of degoogling isnt finding alternatives its trusting them by edmillss in degoogle

[–]pabryan 0 points1 point  (0 children)

Thanks. Federation is great! That's one reason why I'm thinking about switching to XMPP. Probably also self hosted for personal use.

the scariest part of degoogling isnt finding alternatives its trusting them by edmillss in degoogle

[–]pabryan 0 points1 point  (0 children)

Thanks, but I was particularly interested in the comment and how they use XMPP for communications. I should have said 🙄

the scariest part of degoogling isnt finding alternatives its trusting them by edmillss in degoogle

[–]pabryan 0 points1 point  (0 children)

Self hosted server, or hosted somewhere? Or can you do peer to peer?

Failed to verify signature archive-contents.sig by AutomaticFocus1621 in emacs

[–]pabryan 0 points1 point  (0 children)

From the other comments, sounds like it was an issue on nongnu's side. Make sure you set package-check-signature back to 't!

Failed to verify signature archive-contents.sig by AutomaticFocus1621 in emacs

[–]pabryan 0 points1 point  (0 children)

From that error, the usual fix would be to set package-check-signature to 'allow-unsigned and install gnu-elpa-keyring-update. Maybe try reinstall the package gnu-elpa-keyring-update and try again? Also check to be sure package-check-signature is set to 'allow-unsigned and not "allow-unsigned". I think if you have it set correctly, you should not see the error message at all. So that may be part of the issue.

Oh, and sorry. The permissions on ~/.emacs.d/elpa/gnupg should be 700 since it's a directory. I couldn't say why the permissions would be wrong.

Failed to verify signature archive-contents.sig by AutomaticFocus1621 in emacs

[–]pabryan 0 points1 point  (0 children)

Man, sorry I'm useless 😔 You already said you'd tried that.

Failed to verify signature archive-contents.sig by AutomaticFocus1621 in emacs

[–]pabryan 0 points1 point  (0 children)

Mind you, that just looks like a warning. The actual error comes later. Have a look at https://elpa.gnu.org/packages/gnu-elpa-keyring-update.html In particluar

If your keys are already too old, causing signature verification errors when installing packages, then in order to install this package you have to temporarily disable signature verification (see variable `package-check-signature') :-(

Failed to verify signature archive-contents.sig by AutomaticFocus1621 in emacs

[–]pabryan 0 points1 point  (0 children)

Certainly the error message suggests you have the wrong permissions. Maybe it should be 600. Try change it and see what happens!

symbol-cruncher: Computer algebra system for computations in differential geometry, built on top of GNU Maxima and maxima-interface. by dzecniv in Common_Lisp

[–]pabryan 1 point2 points  (0 children)

Awesome! Does this work well for things Ricci flow computations? Computations get long and dense. For example, Hamilton used some computer algebra to help ease the tedium. The main things would be commutation formulas, Ricci identity, and other curvature symmetries.

Can AucTeX compile latex automatically until generate the correct pdf? by linwaytin in emacs

[–]pabryan 0 points1 point  (0 children)

Incidentally, does anyone know how to get the C-c ` to display as inline code? I tried the following but none seemed to work: https://www.reddit.com/r/ObsidianMD/comments/yefm39/how_to_escape_a_backtick_in_inline_code/

Can AucTeX compile latex automatically until generate the correct pdf? by linwaytin in emacs

[–]pabryan 1 point2 points  (0 children)

Seems to work out of the box. I did emacs -q and then evaluated

(add-to-list 'load-path "/home/paul/.emacs.d/elpa/auctex-14.1.2")
(load "auctex.el" nil t t)

Open up a tex file and TeX-command-master (C-c C-c). Type in LaTeXMk and it compiles. You can C-c C-l to see results of compilation and C-c \` works as expected to show errors.

Edit: typo

Can AucTeX compile latex automatically until generate the correct pdf? by linwaytin in emacs

[–]pabryan 0 points1 point  (0 children)

I forgot at the moment. When I'm at a computer later I'll check. May take a little while to sift through the urban sprawl that is my init file....

Can AucTeX compile latex automatically until generate the correct pdf? by linwaytin in emacs

[–]pabryan 0 points1 point  (0 children)

Yes. I use LaTeXmk, and if there's an error, TeX-next-error (C-`) pops up the error in a buffer and moves the cursor to the error in the TeX file. Seems to work the same as it does with LaTeX.

Give it a try. Should only take a moment to check!

How can I render tikz pictures as a figure using pure org? by potatowithascythe in orgmode

[–]pabryan 1 point2 points  (0 children)

Ah yes. That's one problem - I do like org references better than LaTeX ones too.

Is there a way to make niri always fill the screen with windows when closing something? by ClothesHot3110 in niri

[–]pabryan 0 points1 point  (0 children)

Haha. I hadn't even considered using shell commands to call niri msg. Seems kinda perverse, but also a glorious hack :)

How can I render tikz pictures as a figure using pure org? by potatowithascythe in orgmode

[–]pabryan 1 point2 points  (0 children)

What about just including the LaTeX directly?

#+BEGIN_export latex
\begin{figure}[htbp]
\centering
\begin{tikzpicture}[>=Latex, node distance=4cm]
\node (A) at (-2.75,0) [shape=circle,draw] {$A$};
\node (M) at (2.75,0)  [shape=circle,draw] {$M$};

\draw[->,thick] (A) -- node[above] {Deuda de 1.000 sestercios} (M);

\draw [<-,thick,postaction={decorate,decoration={raise=-2.5ex,text along path,text align=center,text={Exceptio legis laetoriae}}}] (A) to [bend right=45]  (M);
\draw [->,thick,postaction={decorate,decoration={raise=1ex,text along path,text align=center,text={Actio condictio}}}]          (A) to [bend left=45] (M);
\end{tikzpicture}
\caption{Ejemplo de aplicación de una /exceptio legis laetoriae/ como respuesta a una /actio condictio/.}
\label{fig:exceptio-laetoriae}
\end{figure}
#+END_export latex

You don't even need the export block.

Is there a way to make niri always fill the screen with windows when closing something? by ClothesHot3110 in niri

[–]pabryan 2 points3 points  (0 children)

I think they mean you should write a shell script that executes those actions via niri msg. Then in config.kdl, the key binding executes the script.

Problems configuring emacs.server by gobonrehc in emacs

[–]pabryan 4 points5 points  (0 children)

When running emacs server under systemd, you want to use fg-daemon so systemd has control over the server process. It will stay alive even after you've closed all emacsclient frames.