Skip to content

Instantly share code, notes, and snippets.

View davidfurlong's full-sized avatar
👨‍💻

David Furlong davidfurlong

👨‍💻
View GitHub Profile
@davidfurlong
davidfurlong / JSON.stringify-replacer-sort-keys.js
Last active March 6, 2025 02:17
JSON.stringify replacer function for having object keys sorted in output (supports deeply nested objects)
// Spec http://www.ecma-international.org/ecma-262/6.0/#sec-json.stringify
const replacer = (key, value) =>
value instanceof Object && !(value instanceof Array) ?
Object.keys(value)
.sort()
.reduce((sorted, key) => {
sorted[key] = value[key];
return sorted
}, {}) :
value;

Make it real

Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.

Ship it

Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.

Do it with style

@davidfurlong
davidfurlong / RoutedTabs.js
Last active January 8, 2018 14:35
Ant design + react-router v3 - Tabs with routes.
import React from 'react';
import { Tabs } from 'antd';
import PropTypes from 'prop-types';
import { browserHistory } from 'react-router';
function isLeftClickEvent(event) {
return event.button === 0;
}
function isModifiedEvent(event) {
@davidfurlong
davidfurlong / package.json
Last active January 15, 2018 15:59 — forked from ricardograca/package.json
Bookshelf bug - belongsToMany and fetchAll
{
"name": "bookshelf-bug",
"version": "0.1.0",
"dependencies": {
"bookshelf": "*",
"bluebird": "*",
"knex": "*",
"sqlite3": "*"
}
}
@davidfurlong
davidfurlong / withPageDimensions.js
Created January 17, 2018 10:20
withPageDimensions HOC React
import React from 'react';
const withPageDimensions = WrappedComponent =>
class PageDimensions extends React.Component {
constructor(props) {
super(props);
this.state = {
width: 0,
height: 0
};
@davidfurlong
davidfurlong / RedirectExact.js
Created January 24, 2018 09:58
React-router 4 Exact redirect
// React-router 4 doesn't support 'exact' redirects. Very annoying. This fixes that.
import React from 'react';
import { Route, Redirect } from 'react-router-dom';
const RedirectExact = ({ from, to }) => (
<Route exact path={from} render={() => (
<Redirect from={from} to={to} />
)} />
);
@davidfurlong
davidfurlong / RoutedTabs.js
Created June 1, 2018 10:31
Ant design + RR4 Routed Tabs
import React from 'react';
import { Tabs } from 'antd';
import PropTypes from 'prop-types';
import { withRouter } from 'react-router-dom';
const propTypes = {
history: PropTypes.any,
location: PropTypes.any,
action: PropTypes.oneOf(['push', 'replace']).isRequired,
@davidfurlong
davidfurlong / ScrollToTop.js
Last active June 1, 2018 10:33
React router 4 scroll to top behaviour, with support for tabs and/or case by case scrolling
// ScrollToTop.js
import React from 'react';
import { withRouter } from 'react-router-dom';
class ScrollToTop extends React.Component {
componentDidUpdate(prevProps) {
if (prevProps.location && this.props.location !== prevProps.location &&
!(this.props.location.state && this.props.location.state.resetScroll === false)) {
window.scrollTo(0, 0);
}
@davidfurlong
davidfurlong / Postgres heroku dump restore in local
Created March 8, 2019 09:35
Restoring a production heroku postgres backup into a local postgres instance on OSX
0. Make sure your Postgres version is the same as the heroku one (even minor version)
1. Download heroku backup
2. Add .dump extension to the file
3. Run
$ pg_restore -f mydatabase.sql mydatabase.dump
to convert sql dump to sql.
4. Find the 'Owner' name in the file and replace all with your localhost Owner (find by using \l and finding the owner of local database's Name)
5. psql databasename
6. \i mydatabasedump.sql
@davidfurlong
davidfurlong / patch.sh
Last active December 22, 2021 12:20
[See newer patch.sh] Create a PR for a small uncommitted change with one command. Assumes dev is your main branch and that you have hub installed / use github for PRs
#!/bin/bash
timestamp=$(date +%Y-%m-%d-%H-%M-%S)
read -p "When merged, this commit will: " msg
git checkout -b patch-$timestamp &&
git add ../ &&
git commit -m "$msg" &&
hub pull-request -p -m "$msg" &&
git checkout dev &&
echo "Successfully commited, opened PR for branch $msg and switched back to dev"