Skip to content

Instantly share code, notes, and snippets.

View dparnell's full-sized avatar

Daniel Parnell dparnell

View GitHub Profile
@dparnell
dparnell / keybase.md
Last active August 29, 2015 14:02
Keybase github proof

Keybase proof

I hereby claim:

  • I am dparnell on github.
  • I am danielparnell (https://keybase.io/danielparnell) on keybase.
  • I have a public key whose fingerprint is 5F58 9856 FF9C FF9F 2F26 D979 91BD EE9B FE5D A372

To claim this, I am signing this object:

@dparnell
dparnell / Gemfile
Last active August 29, 2015 14:04
Crash V8 if you leave it running long enough
gem 'therubyracer'
@dparnell
dparnell / plasma.lisp
Created April 1, 2018 01:25
GLSL plasma using Common Lisp
(ql:quickload :cffi)
(ql:quickload :cl-opengl)
(ql:quickload :cl-glfw3)
(defpackage #:plasma
(:use #:cl #:glfw #:alexandria))
(in-package #:plasma)
(export '(run))
@dparnell
dparnell / install_docker.sh
Created January 12, 2023 03:49
Install docker on Oracle Linux 7.9
#!/bin/bash
# Tested on Oracle Linux 7.9, 11th, Jan 2023
if [ "${UID}" -eq 0 ]
then
yum install -y yum-utils
yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
sed -i 's/$releasever/7/g' /etc/yum.repos.d/docker-ce.repo