View gist:2a39068166a68bce9a6aa390b42ff5c5
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
;;; tidy.el --- Interface to the HTML Tidy program | |
;; Copyright (C) 2001, 2002, 2003 by Free Software Foundation, Inc. | |
;; Emacs Lisp Archive Entry | |
;; Filename: tidy.el | |
;; Author: Kahlil (Kal) HODGSON <dorge@tpg.com.au> | |
;; X-URL: http://www.emacswiki.org/elisp/tidy.el | |
;; Time-stamp: <2002-09-30 13:16:23 kahlil> | |
;; Version: 2.12_patch1 |
View .gnus
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
;; ~/.gnus | |
(setq gnus-select-method | |
'(nnimap "gmail" | |
(nnimap-address "imap.gmail.com") ; it could also be imap.googlemail.com if that's your server. | |
(nnimap-server-port "imaps") | |
(nnimap-stream ssl) | |
(nnmail-expiry-target "nnimap+gmail:[Gmail]/Trash") | |
(nnmail-expiry-wait immediate))) | |
(setq smtpmail-smtp-server "smtp.gmail.com" |
View erc-countusers-mode
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
;;; erc-countusers-mode.el --- display a count of channel users in the mode-string | |
;;; Commentary: | |
;; TODO: return empty string if parted/disconnected | |
;; TODO: add to emacswiki files | |
;;; Code: | |
(define-minor-mode ncm-mode "https://www.emacswiki.org/emacs/ErcModeline | |
Add this to your .emacs to see the number of opped/voiced/normal members of the | |
current channel in the modeline:" nil | |
(:eval |
View defvar-maybe.el
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
;;; defvar-maybe.el --- maybe declare variables | |
;;; AUTHOR: Corwin Brust <corwin@bru.st> | |
;;; LICENSE: GPL2 or newer GNU Public License | |
;;; VERSION: 0.2 | |
;;; Commentary: | |
;; | |
;; A drop-in replacement for `defvar' that substities 'setq' during "DEVEL". | |
;; Place the following lines into a package you are hacking on: | |
;; (require 'defvar-maybe) |
View erc-frames-mode.el
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
;;; erc-frames-mode.el --- sequence erc setup -*- lexical-bindings:t -*- | |
;; Copyright (C) 2019 Corwin Brust | |
;; Author: Corwin Brust <corwin@bru.st> | |
;; URL: http://dpaste.com/3NFJV60 | |
;; Version: 0.1-pre | |
;; Package-Requires: ((emacs "26.0")) | |
;; Keywords: ERC IRC | |
;; This file is not part of GNU Emacs. |
View hide-region+.el
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
;;; hide-region.el --- hide regions of text using overlays | |
;; | |
;; Copyright (C) 2001, 2005 Mathias Dahl | |
;; | |
;; Version: 1.0.1 | |
;; Keywords: hide, region | |
;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com> | |
;; Maintainer: Mathias Dahl | |
;; URL: http://mathias.dahl.net/pgm/emacs/elisp/hide-region.el | |
;; |
View erc-burnt-toast.el
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
;;; erc-burnt-toast.el --- erc-match support for w32 notification center -*- lexical-binding: t; -*- | |
;; Copyright (C) 2019 Corwin Brust | |
;; Author: Corwin Brust <corwin@bru.st> | |
;; URL: https://bru.st | |
;; Version: 0.1-pre | |
;; Package-Requires: ((emacs "26.0")) | |
;; Keywords: irc erc burnt-toast |
View .emacs
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
;;; init --- Emacs startup script | |
;;; Commentary: | |
;;;; Corwin Brust <corwin@bru.st> | |
;;;; huge thankx to Aaron Bedra for http://aaronbedra.com/emacs.d/ | |
;;; Code: | |
(setq user-full-name "Corwin Brust") | |
(setq user-mail-address "corwin@bru.st") | |
;; https://github.com/wyuenho/dotfiles/blob/master/.emacs |
View gist:8445328
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
#!/bin/bash | |
################################################################################ | |
# | |
# shell script to fix ownership of all files under each entry in SEARCH_PATH | |
# | |
# Change SEARCH_PATH as needed. | |
# NOTE: script has no output if it does no work. | |
# | |
################################################################################ |
View statsd_init.sh
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
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: statsd | |
# Required-Start: $local_fs $remote_fs $network $syslog | |
# Required-Stop: $local_fs $remote_fs $network $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: control statsd | |
# Description: start/stop/restart statsd using nodejs forever |
NewerOlder