Skip to content

Instantly share code, notes, and snippets.

View fetimo's full-sized avatar

Tim fetimo

View GitHub Profile
@fetimo
fetimo / localstorage-and-progress-meter.js
Created February 18, 2012 17:54
A quick way to attach a progress meter to checked inputs and store them locally
(function() {
var inputs = document.getElementsByTagName('input'),
j = inputs.length,
checkedBoxes = 0;
//adds click event listener to each input
for (var i = 0; i < j; i += 1) {
inputs[i].addEventListener("click", function(){changeState(this);});
if (inputs[i].checked == true) checkedBoxes += 1;
}
@fetimo
fetimo / Class Manipulation
Last active December 11, 2015 05:58
A simple collection of functions to add classes, remove classes, and toggle classes on elements.
var Class = (function() {
'use strict';
function addClass(el, className) {
/**
* Adds a string to the class name.
*
* @param {Node} el Any element
* @param {String} className The new class name to add
@fetimo
fetimo / endangered-species.json
Last active December 31, 2015 11:19
A JSON representation of endangered species in the UK. Includes common name, Latin name, description (usually location), IUCN conservation status code, and kingdom (although this isn't scientifically accurate).
{
"records": [
{
"common_name": "Bottlenose dolphin",
"latin_name": "Tursiops truncatus",
"description": "warm and temperate seas worldwide",
"conservation_status": "LC",
"kingdom": "mammal"
},
{
{
"starters": [
{
"name": "Baked Petit Camembert",
"description": "Whole baked Camembert with Red Onion Marmalade & Garlic French Bread",
"price": 7.5
}
],
"main_courses": [
{
[Ralph]
$ npm install express --save
0
explain what we'll create
techniques used (routing)
how to use in real world
@fetimo
fetimo / temperature.json
Created February 15, 2015 16:00
Temperature from 1845–2010
[
{
"year": "1845",
"Winter": "-2.5",
"Summer": "-1"
},
{
"year": "1846",
"Winter": "1.7",
"Summer": "1.8"
@fetimo
fetimo / recipes.js
Created January 30, 2016 10:44
Recipe data
var recipes = [{"publisher": "The Pioneer Woman", "f2f_url": "http://food2fork.com/view/47024", "title": "Perfect Iced Coffee", "source_url": "http://thepioneerwoman.com/cooking/2011/06/perfect-iced-coffee/", "recipe_id": "47024", "image_url": "http://static.food2fork.com/icedcoffee5766.jpg", "social_rank": 100.0, "publisher_url": "http://thepioneerwoman.com"}, {"publisher": "Closet Cooking", "f2f_url": "http://food2fork.com/view/35382", "title": "Jalapeno Popper Grilled Cheese Sandwich", "source_url": "http://www.closetcooking.com/2011/04/jalapeno-popper-grilled-cheese-sandwich.html", "recipe_id": "35382", "image_url": "http://static.food2fork.com/Jalapeno2BPopper2BGrilled2BCheese2BSandwich2B12B500fd186186.jpg", "social_rank": 100.0, "publisher_url": "http://closetcooking.com"}, {"publisher": "The Pioneer Woman", "f2f_url": "http://food2fork.com/view/47319", "title": "Crash Hot Potatoes", "source_url": "http://thepioneerwoman.com/cooking/2008/06/crash-hot-potatoes/", "recipe_id": "47319", "image_url": "http:
@fetimo
fetimo / package.json
Created April 17, 2016 10:13
CSS Modules package.json
{
"name": "css-modules-demo",
"version": "1.0.0",
"description": "Showing off CSS Modules.",
"main": "src/index.js",
"scripts": {
"test": "webpack",
"start": "webpack-dev-server",
"clean": "rm -rf dist",
"build": "npm run clean && webpack -p"
/**
* Created by yailanderson on 10/06/16.
*/
// install : cordova plugin add https://github.com/Wikitude/wikitude-cordova-plugin.git
(function (angular) {
angular.module('ngCordova.plugins.wikitudePlugin', [])
.factory('$wikitudePlugin', ['$q', '$window', '$exceptionHandler', function ($q, $window, $exceptionHandler) {
(function (id) {
'use strict';
var container = document.getElementById(id);
if (!container) {
console.warn('No keep-it-on element found on page.');
}
var text = container.textContent.trim();