chk
View scree_plot.py
This file contains 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
#!/usr/bin/env python | |
# coding: utf8 | |
# GistID: 8785541 | |
from __future__ import division | |
import numpy as np | |
import matplotlib | |
import matplotlib.pyplot as plt |
View big_O.py
This file contains 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
#!/usr/bin/env python2 | |
# GistID: 8910125 | |
from numpy import array, log, linspace | |
from matplotlib import pyplot as plt | |
# http://en.wikipedia.org/wiki/Big_o_notation#Family_of_Bachmann.E2.80.93Landau_notations # noqa | |
n = linspace(1, 100) | |
fn = log(n) / log(5) # log_5(n) | |
gn = log(n) / log(3) # log_3(n) |
View win_notify.py
This file contains 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
#!/usr/bin/env python | |
# coding: utf8 | |
# GistID: 8949940 | |
from os.path import abspath, expanduser | |
def on_modify(path, callback): | |
""" Watch a path for changes by write time, recursively. |
View optionModel.hs
This file contains 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
{-# OPTIONS_GHC -funbox-strict-fields #-} | |
{-# OPTIONS_GHC -fexcess-precision #-} | |
{-# OPTIONS_GHC -Odph #-} | |
{-# OPTIONS_GHC -O2 #-} | |
-- {-# LANGUAGE BangPatterns #-} | |
-- {-# LANGUAGE DoAndIfThenElse #-} | |
{-# LANGUAGE RankNTypes #-} | |
-- GistID: 8970316 |
View composable.py
This file contains 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
#!/usr/bin/env python | |
# coding: utf8 | |
# GistID: 11062517 | |
from __future__ import division | |
import functools | |
import inspect | |
class composable(object): |
View upload-to-bitsurge.sh
This file contains 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
#! /bin/bash | |
USER=tyree | |
FTPPASS= | |
HOST=john.bitsurge.net | |
SUBDIR="public" | |
if [[ "$1" == "-p" ]]; then | |
shift | |
SUBDIR="private" |
View gist:156021
This file contains 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
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; | |
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; | |
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; | |
CREATE SCHEMA IF NOT EXISTS `mydb` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; | |
USE `mydb`; | |
-- ----------------------------------------------------- | |
-- Table `mydb`.`pubmed` | |
-- ----------------------------------------------------- |
View gist:160239
This file contains 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
another change |
View gist:167645
This file contains 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
Section "Module" | |
Load "dbe" # Double buffer extension | |
SubSection "extmod" | |
Option "omit xfree86-dga" # don't initialise the DGA extension | |
EndSubSection | |
# Load "freetype" # This loads the font modules | |
Load "glx" # This loads the GLX module | |
EndSection |
OlderNewer