To build CGMiner with nvidia cuda toolkit installed:
CFLAGS=-I/usr/local/cuda-5.0/include LDFLAGS=-L/usr/cuda-5.0/lib64 ./configure
make
| .;oxkkkkkkxo;. | |
| '::c:,..........,:c::' | |
| ;cc'....................'cc; | |
| .lc............................cl. | |
| lc.......lxxl........cxkl.........cl | |
| ,d........OXXXXO......kXXXX0..........d, | |
| cl........cXXXXXXc....;XXXXXXo..........lc | |
| :l.........lXXXXXXl....:XXXXXXd...........l: | |
| .x...........KXXXXK......0XXXXX,............x. | |
| o,. ....'xKKx'.......dKKk,..... ..,o |
| // ==UserScript== | |
| // @name Clean Google links | |
| // @namespace http://manschutz.com/stuff/greasemonkey | |
| // @description clean links in Google search result page (remove "onmousedown" attribute). | |
| // @include http://www.google.com/search?* | |
| // @include https://www.google.com/search?* | |
| // ==/UserScript== | |
| (function() { | |
| var links = document.getElementsByTagName('a'); |
| /** | |
| * Button with Arrow | |
| */ | |
| body { | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height:100%; | |
| } |
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAeREofD8195guCSmn9MHJ3W8GLavAxfAP5DFlWCJZW6CBJuHtClnCKUWa1cqk3o7n322SPXh97fLonizMYqouzbiXsNsmK4ixwOWHbHSbkNQeLpCHhd/C09Zc3fL5HqjUNo+pC4lT/Mv1uF4GSWI6uyDwGQ2zWfmpMJ1CZ9hlcJdP1rcBuR97poc/PpwE65S1dR9rCB2t82yv+nP/aIk5FDPMTv2zulI34B6Gl9C7w2qklomF8BR29mUQpP/I6C9SEm6byuKNsw5T41soGsBsDldAs5CnGhsmmKqxp0j1rOySC3rWjIZ7tS0KnUnvmygXG3kL6iFZ3uCRkhvcFsn7 manschutz@manschutz-desktop |
| <input type="date" min="2010-08-14" max="2011-08-14" value="2010-08-14"/> |
| def generate_password | |
| # Our consonants and vowels | |
| c = %w(b c d f g h j k l m n p r s t v w x z ch cr fr nd ng nk nt ph pr rd sh sl sp st th tr lt qu dg) | |
| v = %w(a e i o u y oo ei ie ) | |
| s = ['!','@','#','$','%','^','&','*','(',')','-','_','=','+','{','}','|','\\',']','[',';',':',',','.','/','?','>','<'] | |
| f = rand%2 == 1 | |
| parts = [] | |
| word = [] | |
| 5.times do | |
| word << (f ? c.sample : v.sample) |
| def sentence(length = 5) | |
| wl = [] | |
| ws = [] | |
| File.open('/usr/share/dict/web2').each_line{ |s| | |
| s = s[0..-2] | |
| if s.length > 4 | |
| wl.push(s) | |
| else | |
| ws.push(s) | |
| end |
To build CGMiner with nvidia cuda toolkit installed:
CFLAGS=-I/usr/local/cuda-5.0/include LDFLAGS=-L/usr/cuda-5.0/lib64 ./configure
make
Part of a simple project for tuning a room's accoustics.... This script calculates a bunch of stuff. It uses require.js to load the modules.
| Before do |feature| | |
| @feature = feature | |
| @screenshot_step = 0 | |
| @screenshot_size = 1000 | |
| end | |
| Given /^a desktop browser$/ do | |
| @screenshot_size = 1024 | |
| page.driver.resize_window(1024, 720) | |
| end |