This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { takeEvery } from 'redux-saga'; // works w/ deprecation warning | |
// import { takeEvery } from 'redux-saga/effects'; // proper according to docs but does not work | |
export const dispatchAfter = (actions, secondAction) => function*() { | |
yield* takeEvery(actions, function* (action) { | |
yield secondAction(action); | |
}); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const PrimaryBtn = props => ( | |
<Btn {...props} primary /> | |
); | |
const SecondaryBtn = props => ( | |
<Btn {...props} secondary /> | |
); | |
const Btn = ({ className, primary, secondary, ...props }) => ( | |
<button |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.Environment | |
import Data.List ((\\)) | |
containsAll :: String -> String | |
containsAll = (['a' .. 'z'] \\) | |
main = do | |
(toTest:args) <- getArgs | |
print $ containsAll toTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import superagent from 'superagent'; | |
import { Promise } from 'bluebird'; | |
import config from '../config'; | |
const methods = ['get', 'post', 'put', 'patch', 'del']; | |
function formatUrl(path) { | |
const adjustedPath = path[0] !== '/' ? '/' + path : path; | |
return config.apiHost + adjustedPath; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"id": "16079", | |
"name": "Shoshone County", | |
"val": 0 | |
}, { | |
"id": "33017", | |
"name": "Strafford County", | |
"val": 0 | |
}, { | |
"id": "16073", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Custom Flexbox Helper Classes | |
*/ | |
.flex { | |
display: flex; | |
&.cell { | |
flex: 1; | |
} | |
&.equal-sizing { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
angular | |
.module('angularStateHeatmap') | |
.directive('stateHeatmap', stateHeatmap); | |
function stateHeatmap() { | |
var directive = { | |
restrict: 'EA', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var s = Snap('#id-of-svg'); | |
var fly0 = s.group(s.selectAll('.fly0')); | |
var fly_path0 = s.path("m0,0c-1,0 -1.29289,0.29289 -2,1c-0.70711,0.70711 -2.29289,-0.70711 -3,0c-0.70711,0.70711 -0.29289,1.29289 -1,2c-0.70711,0.70711 -1,1 -1,2c0,1 -1.70711,1.29289 -1,2c0.70711,0.70711 2,0 3,0c1,0 2,0 3,0c1,0 1.29289,-0.29289 2,-1c0.70711,-0.70711 2.29289,0.70711 3,0c0.70711,-0.70711 0.29289,-1.29289 1,-2c0.70711,-0.70711 2,-1 2,-2c0,-1 0.29289,-1.29289 1,-2c0.70711,-0.70711 1.29289,-0.29289 2,-1c0.70711,-0.70711 2,0 3,0c1,0 2,0 3,0c1,0 2,0 2,-1c0,-1 0,-2 0,-3c0,-1 -0.29289,-1.29289 -1,-2c-0.70711,-0.70711 -1,-1 -2,-1c-1,0 -2.29289,0.70711 -3,0c-0.70711,-0.70711 -1,-1 -2,-1c-1,0 -2,0 -3,0c-1,0 -1,1 -2,1c-1,0 -1.29289,0.29289 -2,1c-0.70711,0.70711 0.29289,1.29289 1,2c0.70711,0.70711 0.29289,1.29289 1,2c0.70711,0.70711 0.29289,1.29289 1,2c0.70711,0.70711 2,0 2,1c0,1 0,2 0,3c0,1 0,2 0,3c0,1 -1.07613,0.61731 -2,1c-1.30656,0.5412 -1.29289,1.29289 -2,2c-0.70711,0.70711 -2,0 -2,-1c0,-1 -1,-1 -1,-2c0,-1 0,-2 0,-3l0,-1l0,-1l-1,-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
FILENAME=file-to-split.csv | |
HDR=$(head -1 ${FILENAME}) | |
split -l 100 ${FILENAME} xyz | |
n=1 | |
for f in xyz* | |
do | |
if [[ ${n} -ne 1 ]]; then | |
echo ${HDR} > part-${n}-${FILENAME}.csv | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Adding the Open Graph in the Language Attributes | |
function add_opengraph_doctype( $output ) { | |
return $output . ' | |
xmlns:og="http://opengraphprotocol.org/schema/" | |
xmlns:fb="http://www.facebook.com/2008/fbml"'; | |
} | |
add_filter('language_attributes', 'add_opengraph_doctype'); |