chk
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 |
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) |
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. |
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 |
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): |
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" |
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` | |
-- ----------------------------------------------------- |
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 |
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