Skip to content

Instantly share code, notes, and snippets.

View karlhorky's full-sized avatar

Karl Horky karlhorky

View GitHub Profile
@karlhorky
karlhorky / angular-mocks-ava-a-failing.js
Last active July 15, 2016 05:47
Concurrent Test Failures with AVA and angular-mocks
// Failing case
// Concurrent test runs
import test from 'ava';
import jsdom from 'jsdom';
// Angular dependencies
global.document = jsdom.jsdom('<!doctype html><html ng-app="app"><head><meta charset="utf-8"></head><body></body></html>');
global.window = document.defaultView;
global.Node = global.window.Node;
@karlhorky
karlhorky / index.js
Created February 22, 2016 14:53 — forked from royriojas/index.js
requirebin sketch
// require() some stuff from npm (like you were using browserify)
// and then hit Rebuild to run it on the right
var esformatter = require( 'esformatter' );
var esformatterJSX = require( 'esformatter-jsx' );
//var collapser = require( 'esformatter-collapse-objects' )
var throttle = require( 'lodash.throttle' );
var hash = window.location.hash.substr( 1 );
var extend = require('extend');
var params;
@karlhorky
karlhorky / camelcase-constants.md
Created March 9, 2016 15:27
Use camelCase for ES2015 constants

Some links why to use camelCase for constants:

// Bad
const SERVICE_URL = 'https://www.example.com';

// Good
const serviceUrl = 'https://www.example.com';
function getOrderDetails(orderID) {
return db.find( "orders", orderID ).then(order =>
db.find( "customers", order.customerID ).then(customer => ({order, customer}))
).then(({order, customer}) =>
Object.assign(order, {customer})
);
}
getOrderDetails( 1234 )
.then( displayOrder, showError );
@karlhorky
karlhorky / reduce.js
Created June 1, 2016 14:26
JavaScript: Produce new array from .reduce(), with map- and filter-like transformation in one step.
// Produce new array from .reduce(), with map- and filter-like transformation in one step.
// Example data courtesy of http://elijahmanor.com/reducing-filter-and-map-down-to-reduce/
const doctors = [
{ number: 1, actor: "William Hartnell", begin: 1963, end: 1966 },
{ number: 2, actor: "Patrick Troughton", begin: 1966, end: 1969 },
{ number: 3, actor: "Jon Pertwee", begin: 1970, end: 1974 },
{ number: 4, actor: "Tom Baker", begin: 1974, end: 1981 },
{ number: 5, actor: "Peter Davison", begin: 1982, end: 1984 },
{ number: 6, actor: "Colin Baker", begin: 1984, end: 1986 },
@karlhorky
karlhorky / Loop-react-motion.js
Created July 20, 2016 16:20 — forked from bsansouci/Loop-react-motion.js
Example Loop component React-Motion
let Loop = React.createClass({
getInitialState() {
return {
isMovingToEnd: true
};
},
endValue(currVals) {
let {endValueProp, isDone, startValue} = this.props;
let {isMovingToEnd} = this.state;
@karlhorky
karlhorky / pr.md
Last active January 9, 2025 09:01 — forked from piscisaureus/pr.md
Fetch all GitHub pull requests to local tracking branches

NOTE

You may not need local branches for all pull requests in a repo.

To fetch only the ref of a single pull request that you need, use this:

git fetch origin pull/7324/head:pr-7324
git checkout pr-7324
# ...
@karlhorky
karlhorky / .gitconfig
Last active July 18, 2023 01:28 — forked from gnarf/..git-pr.md
Fetch and delete refs to GitHub pull request branches
[alias]
fetch-pr = "!f() { git fetch origin refs/pull/$1/head:pr/$1; } ; f"
delete-prs = "!git for-each-ref refs/heads/pr/* --format='%(refname)' | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done"
@karlhorky
karlhorky / react-server-route-groups.js
Last active February 13, 2017 16:58
react-server route groups (for translated path fragments)
// Beware! Not tested.
// open source library: `react-server-route-groups`
// - function to generate routes based on array of things (in our case, translations)
export default function ({groups, pages}) {
return groups.reduce((acc, group) => {
return {
// All previous routes
...acc,
@karlhorky
karlhorky / request-local-storage-singleton.js
Created February 16, 2017 10:39
request-local-storage global singleton
// Before
module.exports = {
getNamespace: getNamespace,
getCountNamespaces: getCountNamespaces,
startRequest: startRequest,
bind: bind,
patch: patch
};
// After (singleton in global namespace)