- 10-threaded-video-verbose-log
- 11-threaded-video-backtrace
- 12-threaded-video-backtrace-full
- 15-threaded-video-retroarch.cfg
- 21-threaded-video-rgui-backtrace
- 30-start-core-content-after-startup-verbose-log
- 31-start-core-content-after-startup-backtrace
- 32-start-core-content-after-startup-backtrace-full
- 98-package-list
- 99-hwinfo
This file contains hidden or 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
-- This works: ghc -o h h.hs && ./h | |
-- | |
-- This does not work: ghci h.hs | |
-- Get the following error: ghc: <stdout>: hFlush: illegal operation (handle is closed) | |
import System.IO | |
main = do | |
putStrLn "hello world" | |
hClose stdout |
This file contains hidden or 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
;; Via | |
;; https://github.com/stumpwm/stumpwm/wiki/Tips-And-Tricks | |
(defun show-key-seq (key seq val) | |
(message (print-key-seq (reverse seq)))) | |
(add-hook *key-press-hook* 'show-key-seq) | |
;; Via Ticks and Tricks (above) | |
(stumpwm:add-hook stumpwm:*destroy-window-hook* | |
#'(lambda (win) (stumpwm:repack-window-numbers))) | |
(defcommand toggle-show-keys () () |
This file contains hidden or 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
[Personal] | |
source = imaps://winston%40ml1.net:[email protected]:993 | |
outgoing = smtp+plain://winston%40ml1.net:[email protected]:587 | |
default = INBOX | |
smtp-starttls = yes | |
from = Winston Weinert <[email protected]> | |
copy-to = Sent | |
[UWM] | |
source = imaps://weinertw%40uwm.edu:SeeYaLaterUWM%[email protected] |
This file contains hidden or 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
#!/home/winston/venv/ping_servers/bin/python | |
# pip3 install nbt mcstatus tabulate | |
""" | |
Ping servers in the servers.dat | |
Works on Mac, should work on Windows and Linux. | |
""" |
This file contains hidden or 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
While any text editor can save your files, only Emacs can save your soul |
This file contains hidden or 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
0xc 20190219.117 available melpa Base conversion made easy | |
2048-game 20151026.1933 available melpa play 2048 in Emacs | |
4clojure 20131014.2207 available melpa Open and evaluate 4clojure.com questions | |
@ 20181225.1438 available melpa multiple-inheritance prototype-based objects DSL | |
a 20180907.953 available melpa Associative data structure functions | |
aa-edit-mode 20170119.320 available melpa Major mode for editing AA(S_JIS Art) and .mlt file | |
abc-mode 20171020.1019 available melpa Major mode for editing abc music files | |
abgaben 20171119.646 available melpa review and correct assignments received by mail | |
abl-mode 20190403.904 available melpa Python TDD minor mode | |
abs-mode 20190404.2304 available melpa Major mode for the modeling language Abs |
This file contains hidden or 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 conf-portage-font-lock-keywords | |
'(("[ \t]+\\(-[0-9A-Za-z_-]+\\)" 1 diff-removed t) | |
("[ \t]+\\([0-9A-Za-z_+][0-9A-Za-z_-]+\\)" 1 diff-added t))) | |
(define-derived-mode conf-portage-mode conf-unix-mode "Conf[Portage]" | |
"Conf Mode starter for Portage files" | |
(conf-mode-initialize "#" 'conf-portage-font-lock-keywords)) |
This file contains hidden or 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
(define (path-join . args) (string-join args "/")) | |
(define HOME (getenv "HOME")) | |
;;(define raise-volume "amixer -c 0 sset 'Master',0 2dB+") | |
;;(define lower-volume "amixer -c 0 sset 'Master',0 2dB-") | |
;;(define mute "amixer set Master toggle") | |
(define raise-volume "ponymix increase 5") | |
(define lower-volume "ponymix decrease 5") | |
(define mute "ponymix toggle") | |
;; Quick and easy intel backlight adjustment. Does not call |
This file contains hidden or 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 winny/raise-or-create-window-system-frame (display) | |
"Raise an existing frame in the window system or create a new one." | |
(let ((frames (seq-filter #'(lambda (f) (frame-parameter f 'display)) (frame-list)))) | |
(if (null frames) | |
(make-frame `((window-system . x) | |
(display . ,display))) | |
(select-frame-set-input-focus (car frames))))) |