Skip to content

Instantly share code, notes, and snippets.

View JnyJny's full-sized avatar
👽
👽

Erik OShaughnessy JnyJny

👽
👽
View GitHub Profile
@kconner
kconner / macOS Internals.md
Last active May 18, 2024 17:55
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@domtronn
domtronn / itunes.el
Created January 22, 2020 14:21
A package to control iTunes from Emacs using Applescript
;;; .itunes.el --- Package to interact with iTunes & Apple music from within Emacs
;;; Commentary:
;;
;;; Code:
(require 'dash)
(defvar -itunes-playlist "Emacs - temporary"
"The name of the playlist to create for temporary housing tracks.")
@jeroen
jeroen / config.site
Last active April 9, 2020 02:59
Building R on Solaris
## Copy this file into config.site ##
CC="cc -xc99"
CPPFLAGS="-I/opt/csw/include"
CFLAGS="-I/opt/csw/include -O -xlibmieee"
LDFLAGS="-L/opt/csw/lib"
F77=f95
FFLAGS=-O
CXX="CC -library=stlport4"
CXXFLAGS=-O
FC=f95