Skip to content

Instantly share code, notes, and snippets.

@jaytaylor
jaytaylor / zfs-on-oracle-linux-7.md
Last active April 6, 2022 06:18 — forked from RulerOf/zfs-on-oracle-linux-7.md
Installing ZFS on Linux on Oracle Linux 7

Installing ZFS on Linux on Oracle Linux 7

We're going to add ZFS support to our Oracle Linux installation. We'll just add the ZFS on Linux Repo, verify the binary signature from GitHub, install the files, ensure the driver loads properly, and verify that it's functional. We'll save things like array creation for another document.

This is mostly a transcription of the process from the CentOS/RHEL ZoL installation manual.

Install the repo file

Add the ZFSonLinux repo and verify the fingerprint.

Note — manual fingerprint verification is atypical but we'll do it anyway just for kicks.

@jaytaylor
jaytaylor / html5-demos.md
Created October 7, 2016 17:56 — forked from zenorocha/html5-demos.md
The HTML5 Amount of Awesomeness (work in progress)

The HTML5 Amount of Awesomeness

Rainbox Vomit

A collection of freaking awesome HTML5 demos (work in progress).

WebGL

@jaytaylor
jaytaylor / asana_dump.py
Last active August 29, 2015 14:03 — forked from gjlondon/asana_dump.py
Use Asana's "export project to JSON" function and copy-paste contents to an "X.json" file. *Note* Requires external library: "unicdecode", available from https://pypi.python.org/pypi/Unidecode
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Use Asana's "export project to JSON" function and copy-paste contents to an "X.json" file."""
import codecs
import csv
import json
import pprint
import re