Results 34 comments of ht37

`dconf` setting didn't work for me in Fedora 34, with `gsettings` i had no problems: My Settings: _I removed `` and `` keyboard shortcuts that conflicts with remote emulation (X2Go/nomachine)_...

same here, where .dir-locals.el is ```elisp ((nil . ((eval . (setq-local org-roam-directory (expand-file-name "notes/net" (locate-dominating-file default-directory ".dir-locals.el")))) (eval . (setq-local org-roam-db-location (expand-file-name "org-roam.db" org-roam-directory)))))) ``` httpd server reports: ```elisp (request...

my settings: ```elisp ;; ---(org-roam)------------------------------------------------------------------------ ;; @see: https://systemcrafters.net/build-a-second-brain-in-emacs/5-org-roam-hacks/ (use-package org-roam :ensure t :init (setq org-roam-v2-ack t) :custom (org-roam-directory (file-truename "~/Dropbox/Local/data/org/net")) ;;(org-roam-completion-everywhere t) :bind (("C-c n l" . org-roam-buffer-toggle) ("C-c n...

rstudio on podman: workaround 2 -------------------------------------- ### description podman, in root-less mode, implements a different user-mapping than docker. In podman, the (outer) user running the container is mapped as user...

I'm working on a project template that supports rstudio (with git support) running in a rootless podman image. * https://gitlab.com/ub-dems-public/ds-labs/dve-sample-r ``` # to build images: ./build.sh setup ``` Here, [during...

Spurious `/usr/local/bin/python` link to system python is in this script * [scripts/install_python.sh#L28](https://github.com/rocker-org/rocker-versioned2/blob/master/scripts/install_python.sh#L28) To enable pip package installations that require recompilation (`Python.h`), `python3-dev` is also required

## about "system" python I think that the question related to `/usr/local/bin/python` symlink to `/usr/bin/python3` can be addressed simply moving the link to `/usr/bin` The reason may be historical ......

# TL;DR pyenv/poetry in rstudio PATH Now It seems to work ... Starting from ml-verse base image I noticed that nvidia/cuda PATH directories were correctly set. I didn't found any...

## environment references ... Trying to understand the reason why my settings get lost I found some fact that I didn't know. As a brief recap: 1. RStudio does *not*...

An interesting approach to project based org-mode todo/agenda management is taken by [Sylvain Rousseau](https://github.com/thisirs) * [org-context](https://github.com/thisirs/org-context) emacs package. I also use this setting: ```elisp (setq org-agenda-files "~/.emacs-agenda.txt") ``` where this...