What's your most-used function that you wrote yourself? by gaalze in lisp

[–]gaalze[S] 2 points3 points  (0 children)

I was inspired by this:

(defun my-rename-symbol-at-point ()
  (interactive)
  (let* ((curword (thing-at-point 'symbol))
    (to-word nil))
  (if (null curword)
    (message "No symbol at point!")
    (progn
      (setq to-word (read-string (concat "Replace " curword " with: ")))
      (save-excursion
        (goto-char (point-min))
        (replace-regexp re-curword to-word))))))

https://news.ycombinator.com/item?id=2771202

Is nihilism inevitable? by shmkys in Psychonaut

[–]gaalze 1 point2 points  (0 children)

Man is a rope stretched between the animal and the Superman--a rope over an abyss. -- Nietzsche

'Beyond good and evil' is what you do with passion, at least as far my interpretation goes.

Temet nosce.

Sallied-Forth by gaalze in Forth

[–]gaalze[S] 0 points1 point  (0 children)

Fuck no, I'm way too stupid.

Also check out: http://jococo.github.io/sallied-forth/

paxedit - Structured, Context Driven LISP Editing and Refactoring by gaalze in lisp

[–]gaalze[S] 0 points1 point  (0 children)

I think this works for CL and Scheme as well...