Skip to content

Instantly share code, notes, and snippets.

@jakesnell
jakesnell / Metropolis+Demo.ipynb
Created March 2, 2017 00:08
Metropolis Demo in 1D
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakesnell
jakesnell / # opencv - 2016-04-29_09-24-39.txt
Created April 29, 2016 13:29
opencv (homebrew/science/opencv) on x86_64-linux - Homebrew build logs
Homebrew build logs for homebrew/science/opencv on x86_64-linux
Build date: 2016-04-29 09:24:39
@jakesnell
jakesnell / # opencv - 2016-04-29_09-16-15.txt
Created April 29, 2016 13:21
opencv (homebrew/science/opencv) on x86_64-linux - Homebrew build logs
Homebrew build logs for homebrew/science/opencv on x86_64-linux
Build date: 2016-04-29 09:16:15
@jakesnell
jakesnell / # opencv - 2016-04-29_09-00-16.txt
Created April 29, 2016 13:06
opencv (homebrew/science/opencv) on x86_64-linux - Homebrew build logs
Homebrew build logs for homebrew/science/opencv on x86_64-linux
Build date: 2016-04-29 09:00:16
2015-10-15 14:07:43 -0400
./configure
--prefix=/h/53/jsnell/.linuxbrew/Cellar/python/2.7.10_2
--enable-ipv6
--datarootdir=/h/53/jsnell/.linuxbrew/Cellar/python/2.7.10_2/share
--datadir=/h/53/jsnell/.linuxbrew/Cellar/python/2.7.10_2/share
--enable-shared
--without-ensurepip
MACOSX_DEPLOYMENT_TARGET=0
2015-10-15 13:33:04 -0400
make
install
MANDIR=/h/53/jsnell/.linuxbrew/Cellar/openssl/1.0.2d_1/share/man
MANSUFFIX=ssl
making all in crypto...
make[1]: Entering directory `/h/53/jsnell/.temp/openssl20151015-18012-12im6a7/openssl-1.0.2d/crypto'
make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule.
@jakesnell
jakesnell / gist:828b68eeaacab2e587b3
Created September 24, 2015 19:33
Exponential Fit
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
@jakesnell
jakesnell / mandel.jl
Created July 20, 2015 14:09
Mandelbrot Plot in Julia
using PyPlot
function mandel(z)
c = z
maxiter = 80
for n = 1:maxiter
if abs(z) > 2
return n-1
end
z = z^2 + c
@jakesnell
jakesnell / dropbox
Created October 23, 2014 19:07
dropbox setup
#!/bin/sh
# dropbox service
# Replace with linux users you want to run Dropbox clients for
DROPBOX_USERS="ubuntu vagrant"
DAEMON=.dropbox-dist/dropboxd
start() {
echo "Starting dropbox..."
for dbuser in $DROPBOX_USERS; do
@jakesnell
jakesnell / pkginit.jl
Created October 22, 2014 16:08
Package Init
Pkg.status()