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
find . -name '*.[FILEEXTENSION]' ! -type d -exec bash -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \; |
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/sh | |
# From https://help.github.com/articles/changing-author-info/ | |
git filter-branch --env-filter ' | |
OLD_EMAIL="[email protected]" | |
CORRECT_NAME="Your Correct Name" | |
CORRECT_EMAIL="[email protected]" | |
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] | |
then |
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
// Make a textbox select itself when it is rendered. | |
const Textbox = () => ( | |
<div> | |
<input ref={(c) => c.select()} /> | |
</div> | |
); | |
// Neat ! |
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 _ = require('lodash'); | |
module.exports = ({ retryPredicate = _.noop, retryCount = 5 } = {}) => (promiseFunc) => { | |
let retries = retryCount; | |
return function retry (...args) { | |
return promiseFunc(...args).catch((e) => { | |
if (retryPredicate(e) && retries > 1) { | |
retries -= 1; | |
return retry(...args); |
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
// To make imorts work with `eslint`/`eslint_d` correctly in sublime, add this to your config: | |
"args": ["--stdin-filename", "@"] |
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
{ | |
"app.css": "assets/app.f26b91d3.css", | |
"app.css.map": "assets/app.f26b91d3.css.map", | |
"app.js": "app.5189469b.js", | |
"app.js.map": "app.5189469b.js.map", | |
"assets/0.d41d8cd9.jpg": "assets/0.jpg", | |
"assets/1011.37166ab3.jpg": "assets/1011.jpg", | |
"assets/1011.8ebbc5eb.jpg": "assets/1011.jpg", | |
"assets/1163.d8936379.jpg": "assets/1163.jpg", | |
"assets/1163.f94677bd.jpg": "assets/1163.jpg", |
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
// @flow | |
import React from 'react'; | |
import { Route } from 'react-router-dom'; | |
import NotFound from 'features/NotFound'; | |
type Props = { | |
component: any, | |
}; |
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
// @flow | |
import { Component } from 'react'; | |
const withScroll = (WrappedComponent: React.ComponentType<*>) => class ScrollTopOnMount extends Component<void> { | |
componentDidMount () { | |
window.scrollTo(0, 0); | |
} | |
render () { |
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
// @flow | |
import { Component } from 'react'; | |
import { connect } from 'react-redux'; | |
import { createSelector } from 'reselect'; | |
type Options = { | |
fetchResourceData: (id: string) => ReduxThunk, | |
fetchGw2Data: (Array<number>) => Promise<*>, | |
storeKeyResource: string, |
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
// @flow | |
import upperFirst from 'lodash/upperFirst'; | |
const vendors = ['Webkit', 'Moz', 'ms', 'O']; | |
// eslint-disable-next-line import/prefer-default-export | |
export function prefix (key: string, value: string): { [key: string]: string } { | |
const obj = { | |
[key]: value, |
OlderNewer