Skip to content

Instantly share code, notes, and snippets.

View jamosaur's full-sized avatar
🖤

James Wallen-Jones jamosaur

🖤
View GitHub Profile
@jamosaur
jamosaur / cam.py
Created March 4, 2014 10:31
Raspi timelapse
import os
# Starting number.
fileNumber = 1
while True:
# Set a file number (00000000)
fileNumberSave = "%08d" % (fileNumber)
@jamosaur
jamosaur / responsive-height.js
Last active August 29, 2015 13:57
responsive section heights
$(function(){
$('.section').each(function(){
var sectionHeight = $(':first-child', this).height();
if(sectionHeight > $(window).innerHeight())
{
$(this).css('height','auto');
}
else
{
$(this).css({ height: $(window).innerHeight() });
@jamosaur
jamosaur / scss.watcher
Created May 7, 2015 13:23
scss watcher
arguments: --no-cache --update $FileName$:../css/$FileNameWithoutExtension$.min.css --style compressed -E "UTF-8"
output paths to refresh: $FileNameWithoutExtension$.min.css
@jamosaur
jamosaur / OS-X.md
Last active September 16, 2015 17:49

Things to install

General

  • 1Password
  • Airmail
  • Firefox
  • iTerm2
  • Little Snitch
  • mac2imgur
<?php $e=str_split(file_get_contents('i'));$f=0;$h=0;foreach($e as$i=>$d){$d=='('?$f++:$f--;$f==-1&&$h==0?$h=$i+1:null;}echo $f.' '.$h;
@jamosaur
jamosaur / day3.php
Last active December 3, 2015 09:57
<?php
$i = file_get_contents('i');
//$i = '^>v<';
$x = $rx = 0;
$y = $ry = 0;
foreach (str_split($i) as $n => $dir) {
switch ($dir) {
case '^':
($n % 2 == 0) ? $x++ : $rx++;

Keybase proof

I hereby claim:

  • I am jamosaur on github.
  • I am jamosaur (https://keybase.io/jamosaur) on keybase.
  • I have a public key whose fingerprint is C9B8 428B 2A40 BCDD 6DAE 1545 0B8D DFB7 2FD5 E6BF

To claim this, I am signing this object:

worker_processes 1;
error_log /usr/local/etc/nginx/logs/error.log debug;
events {
worker_connections 1024;
}
http {
include mime.types;
location ~ \.php$ {
try_files $uri = 404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}