A simple bookmarklet to enable fullScreenMode in modern browsers.
- Copy
loader.js
code into a bookmark's location field.
/* | |
* jebaird.canvasImageRandomizer - simple "framework" to randomly place scaled, rotated, color overlayed images on an html5 canvas | |
* Jesse Baird <[email protected]> | |
* 5/14/2011 | |
* Copyright 2011, Jesse Baird | |
* Dual licensed under the MIT or GPL Version 2 licenses. | |
* http://jebaird.com/blog/html5-canvas-image-randomizer | |
* | |
* | |
* |
! | |
version 12.3 | |
no service pad | |
service timestamps debug datetime msec | |
service timestamps log datetime msec | |
no service password-encryption | |
! | |
hostname yourname | |
! |
<?php | |
/* | |
* Hosts to ip host | |
* | |
* @author Jesse Baird <[email protected]> | |
* @date 12/21/2012 | |
* | |
* Licensed under The MIT License | |
* http://opensource.org/licenses/MIT | |
* |
<?php | |
/** | |
* php drupal to jekyll exporter | |
* Jesse Baird <jebaird.com> | |
* | |
* http://jebaird.com/2013/05/17/durpal-export-to-jekyll-via-php.html | |
* | |
* This script exports blog and page types with the tags attached. It also sets the right url alias redirects | |
* blog types are saved in _post/ | |
* page pages aee saved in pages/ |
<style> | |
/* hide all options in the state field */ | |
select[name="state"] option { | |
display: none; | |
} | |
/* target the states we want to show via the value attribute */ | |
select[name="state"] option[value="ACT"], | |
select[name="state"] option[value="NSW"], |
test |
(function(){ | |
var regex = /[?&]([^=#]+)=([^&#]*)/g, | |
input, | |
match; | |
while( match = regex.exec( window.location.search ) ) { | |
input = document.querySelector('[name="'+ match[1] +'"' ); | |