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 | |
# create thumbs | |
rm .thumb/*-thumb.jpg # 2>/dev/null | |
(for f in *.jpg ; do | |
b=`basename "$f" .jpg`; | |
s=`identify "$f" | cut -d" " -f3 | perl -nle ' | |
($width,$height) = split 'x'; | |
die "bad size" unless $width && $height; |
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
#!/usr/bin/bash | |
# package-emacs-master - Create Snapshot Binary Release Packages for Windows | |
# | |
# Copyright 2023 Corwin Brust <[email protected]> | |
# | |
# This program is distributed under the terms of the GNU Public | |
# License version 3 or (at your option) any later version. | |
# | |
function url_encode { |
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
#!/usr/bin/bash | |
# crude-ci - Inf loop running Emacs for Windows snapshot packaging | |
# | |
# Copyright 2023 Corwin Brust <[email protected]> | |
# | |
# This program is distributed under the terms of the GNU Public | |
# License version 3 or (at your option) any later version. | |
# | |
# the .private file exports SSH_KEY and SSH_USER, needed for rsync |
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
#!/usr/bin/bash | |
# package-emacs-master - Create Snapshot Binary Release Packages for Windows | |
# | |
# Copyright 2023 Corwin Brust <[email protected]> | |
# | |
# This program is distributed under the terms of the GNU Public | |
# License version 3 or (at your option) any later version. | |
# | |
# most likely things to edit |
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 <[email protected]> | |
;; X-URL: http://www.emacswiki.org/elisp/tidy.el | |
;; Time-stamp: <2002-09-30 13:16:23 kahlil> | |
;; Version: 2.12_patch1 |
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" |
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 |
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 <[email protected]> | |
;;; 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) |
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 <[email protected]> | |
;; 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. |
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 <[email protected]> | |
;; Maintainer: Mathias Dahl | |
;; URL: http://mathias.dahl.net/pgm/emacs/elisp/hide-region.el | |
;; |
NewerOlder