Skip to content

Instantly share code, notes, and snippets.

View Jesse-Millwood's full-sized avatar

Jesse Millwood Jesse-Millwood

View GitHub Profile
@equwal
equwal / fonts.el
Last active September 21, 2020 21:07
Selecting and trying out different fonts in Emacs.
;;; TL;DR
(set-face-attribute 'default nil :family "Hack");Must be the FULL name (search-fonts "Hack") for it.
(set-face-attribute 'default nil :height (* 13 10));13pt
;;; Also see: https://github.com/alphapapa/unpackaged.el#font-compare
;;; to easily compare lots of fonts.
;;; The purpose of this Gist is to help you select a font you like by trying it out in Emacs.
;;; Here is my custom Hack font: https://github.com/equwal/alt-hack0
;;; If you don't have the fonts, you can try:
;;; - Your package manager
@john2x
john2x / 00_destructuring.md
Last active April 23, 2024 13:18
Clojure Destructuring Tutorial and Cheat Sheet

Clojure Destructuring Tutorial and Cheat Sheet

(Related blog post)

Simply put, destructuring in Clojure is a way extract values from a datastructure and bind them to symbols, without having to explicitly traverse the datstructure. It allows for elegant and concise Clojure code.

Vectors and Sequences

@kracekumar
kracekumar / Writing better python code.md
Last active February 19, 2024 03:06
Talk I gave at June bangpypers meetup.

Writing better python code


Swapping variables

Bad code

@jlhg
jlhg / terminalrc
Created March 11, 2014 17:32
Zenburn colours scheme for Xfce Terminal http://slinky.imukuppi.org/zenburnpage/
# Zenburn colours scheme for Xfce Terminal. Copy and paste the following in ${HOME}/.config/Terminal/terminalrc:
ColorBackground=#404040
ColorForeground=#F6F3E8
ColorPalette1=#3f3f3f3f3f3f
ColorPalette2=#e8e893939393
ColorPalette3=#9e9ecece9e9e
ColorPalette4=#f0f0dfdfafaf
ColorPalette5=#8c8cd0d0d3d3
ColorPalette6=#c0c0bebed1d1