This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
# X-Forwarded-Host # | |
Honor the `X-Forwarded-Host` header for the duration of a single | |
request in WordPress. | |
## Read Me First ## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun custom-org-kill-link-as-commit-message () | |
"Capture a stored link. Add it to the kill ring in a format | |
suitable for use as a version control commit message." | |
(interactive) | |
(call-interactively 'org-store-link) | |
(let ((link (car org-stored-links))) | |
;; A link is a (list URL DESCRIPTION) | |
(kill-new (concat (cadr link) "\n" (car link) "\n")) | |
(setq org-stored-links (cdr org-stored-links)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules | |
.#* | |
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Naive Primes | |
;;; | |
;;; Produce a sequence of primes using a naive trial-division | |
;;; algorithm. This is very slow, but easy to understand at a | |
;;; glance. It's useful for unit testing. | |
;;; | |
;;; Optimizations: | |
;;; | |
;;; + Only test odd numbers for primality | |
;;; + Only do trial division up to the square root |
OlderNewer