I hereby claim:
- I am adamdicarlo on github.
- I am adamdicarlo (https://keybase.io/adamdicarlo) on keybase.
- I have a public key ASA8Fak2bmPjzJiHkDf6pFz0h9NBnmPjAr0Ds8ZzoxXF7wo
To claim this, I am signing this object:
javascript:'use%20strict';void%20function(){document.body.background=%22%22,document.body.style.margin=%224em%20auto%22,document.body.style.fontSize=%2216px%22,document.body.style.maxWidth=%2250em%22;var%20a=document.createElement(%22STYLE%22);a.innerHTML=%22\n%20%20dd%20{\n%20%20%20%20font-weight:%20normal;\n%20%20%20%20margin:%201em%200%200%200;\n%20%20}\n%20%20h3%20{\n%20%20%20%20font-size:%2024px;\n%20%20%20%20margin:%203em%200%200%200;\n%20%20}\n%22,document.body.appendChild(a)}(); |
var _adamdicarlo$elm_wordy$Wordy$eligibleWord = F2( | |
function (word, foundWords) { | |
return !A2(_elm_lang$core$List$member, word, foundWords); | |
}); | |
var _adamdicarlo$elm_wordy$Wordy$findUnselectedLetter = F2( | |
function (letters, sought) { | |
var predicate = function (_p0) { | |
var _p1 = _p0; | |
return _elm_lang$core$Native_Utils.eq(_p1._0, sought) && (!_p1._1); |
#!/bin/bash | |
# assumes you have gnu find installed via homebrew (`brew install findutils --with-default-names`) | |
# if you installed without `--with-default-names` then use `gfind` | |
for f in $(/usr/local/bin/find . -regex ".*\\.jsx?" -o -path ./node_modules -prune -a -type f); do | |
sed -e '/\/\/ NPM/d' -i "" $f | |
sed -e 's/ / /g' -i "" $f | |
sed -e "s/return ('')/return ''/g" -i "" $f | |
standard --fix $f | |
done |
I hereby claim:
To claim this, I am signing this object:
module FullscreenGradient exposing (..) | |
-- elm-lang/core | |
import Task | |
import Color exposing (linear, rgb) | |
-- elm-lang/html | |
import Html exposing (..) | |
import Html.App as Html |
$('.list').each(function() { | |
var $this = $(this); | |
var count = $this.find('.list-card').length; | |
var $title = $this.find('.list-title h2'); | |
var tester = /.*PLACEHOLDER.*/; | |
var placeholderIndex = false; | |
// Determine the index of the PLACEHOLDER card, if there is one. | |
$this.find('.list-card a').each(function(index, el) { | |
if (tester.exec($(el).text()) !== null) { |
; Relevant entries from makefile | |
; Geocode | |
projects[geocode][subdir] = "contrib" | |
projects[geocode][type] = "module" | |
projects[geocode][download][type] = "git" | |
projects[geocode][download][url] = "https://github.com/treehouseagency/geocode.git" | |
projects[geocode][download][revision] = "4f0b58b708f4b0a5ab4a" | |
; Geofield |
$view = new view; | |
$view->name = 'location_directory'; | |
$view->description = ''; | |
$view->tag = 'default'; | |
$view->base_table = 'node'; | |
$view->human_name = 'Location Directory'; | |
$view->core = 7; | |
$view->api_version = '3.0-alpha1'; | |
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ |
#!/usr/bin/php | |
<?php | |
require_once './includes/bootstrap.inc'; | |
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); | |
$payment = array( | |
'gateway' => 'paypal', | |
'uid' => 0, | |
'nid' => 1, |