Skip to content

Instantly share code, notes, and snippets.

View davidkneely's full-sized avatar

David Neely davidkneely

View GitHub Profile

How Do I Into Git?

a helpful primer for users sick of git's poorly-named commands

I've used Git since 2011, and this is the stuff that I've always had to Google to remember. I hope it helps you not hate Git so much.

Learning About the Repo

Learning About History

Meteor Alternatives Per Feature

This table was created in 2015 so may be quite outdated today.

Feature Meteor Solution Alternative Solutions Description
Live DB Sync [livequery][lq] ([mongo-oplog]), [ddp] RethinkDB, Redis, ShareDB, [npm:mongo-oplog], [firebase], etc. Push DB updates to client/server.
Latency Compensation, Optimistic UI [minimongo][mm] [RethinkDB][lcr], [mWater/minimongo] (fork, not ws but http, browserify) Imitate successful db query on client before it is done.
Isomorphic Code [isobuild] & isopacks browserify Write one code for server/client/mobile.
Isomorphic Packaging [isobuild], atmosphere No more separate packages for server & client. Get bower + npm + mobile.
@marcdown
marcdown / BKLNSwiftPresenters.md
Last active November 5, 2017 03:08
Brooklyn Swift Developers Meetup Presenters
@bMinaise
bMinaise / index.html
Created November 6, 2013 06:02
Bootstrap 3 - Outlined Square Buttons
<div class="container">
<div class="row">
<div class="col-lg-3">
<p><a href="#" class="btn btn-outlined btn-primary">Demo Primary Button</a></p>
<p><a href="#" class="btn btn-outlined btn-success">Demo Success Button</a></p>
<p><a href="#" class="btn btn-outlined btn-info">Demo Info Button</a></p>
<p><a href="#" class="btn btn-outlined btn-warning">Demo Warning Button</a></p>
<p><a href="#" class="btn btn-outlined btn-danger">Demo Danger Button</a></p>
</div>
<div class="col-lg-4">