I’ve decided to attempt the #100DaysToOffload challenge.
I’ve written 33 pages of the 100 page goal.
I’ve decided to attempt the #100DaysToOffload challenge.
I’ve written 33 pages of the 100 page goal.
I wanted to count the number of pages tagged 100daysToOffload but couldn’t find a simple solution. ...
Including beautifully rendered equations is easy in Org Mode. ...
How do you buy a federal election? Through money laundering, by confusing correlation and causation and mindlessly parroting collective wisdom around housing affordability. View the post at LinkedIn, or Vifortech Solutions - Blog.
I always forget how to update the list of local projects for Quicklisp. ...
Leaders inspire you to follow; their actions make you aspire to be like them. ...
Sometimes you just want to see the files that are being ignored by git. ...
Removing untracked files from the working tree is easy with git-clean ...
Removing files you just added and committed to git is easy with git commit --amend ...
...
There are various discussions around the conflict between Org Mode and yasnippet and how to fix it. This is how I got them to play nicely together. You can read about my other Emacs configurations . (use-package yasnippet :init (defun yas/org-very-safe-expand () (let ((yas/fallback-behavior 'return-nil)) (yas/expand))) :hook ((emacs-lisp-mode . yas-minor-mode) (python-mode . yas-minor-mode) (org-mode . yas-minor-mode) (org-mode . (lambda () (make-variable-buffer-local 'yas/trigger-key) (setq yas/trigger-key [tab]) (add-to-list 'org-tab-first-hook 'yas/org-very-safe-expand) (define-key yas/keymap [tab] 'yas/next-field)))) :config (setq-default yas-snippet-dirs `(,(expand-file-name "snippets/" user-emacs-directory))) (yas-reload-all)) GNU Emacs 28....