Skip to content

Instantly share code, notes, and snippets.

@drbyte
drbyte / Are you Ready to Hire an Engineer?.md
Created November 20, 2015 15:44 — forked from craychee/Are you Ready to Hire an Engineer?.md
A plain English checklist to help non-technical people decide if the business is ready to engage the services of an engineer or a consulting firm. This checklist was made to accompany the following blog post: http://craychee.io/blog/2015/09/17/are-you-ready-to-hire-an-engineer/

Are you Ready to Hire an Engineer?

A plain English checklist


This checklist is intended to help non-technical people decide if the business is ready to engage the services of an engineer or a consulting firm. It is the goal of this checklist to give non-technical folks a leg up in these conversations so that they are less likely to get into lengthy (and very expensive) engagements.


###Content Content pertains to information that you already provide customers or plan to make available to anyone who comes to your site.

@drbyte
drbyte / SnsBroadcaster.php
Last active September 11, 2015 18:14 — forked from jeskew/SnsBroadcaster.php
Laravel broadcasting with SNS
<?php
use Aws\Sns\SnsClient;
use Illuminate\Contracts\Broadcasting\Broadcaster;
class SnsBroadcaster implements Broadcaster
{
/** @var SnsClient */
private $sns;
/** @var array */
@drbyte
drbyte / bash_profile.md
Last active September 8, 2015 02:06 — forked from irazasyed/bash_profile.md
Terminal: Mac OS X Terminal Aliases & How-To - .bash_profile / .profile

Mac OS X Terminal Aliases & How-To

Collection of some of my fav terminal aliases that i use often & collected from the web. This file will be updated with more aliases as i find more. Feel free to comment and share your fav aliases you use :)

###Follow these simple steps to add the following aliases:###


  1. Within the Terminal, run:
@drbyte
drbyte / .bash_aliases.sh
Last active August 29, 2015 14:27 — forked from michaelsbradleyjr/.bash_aliases.sh
Some helpful docker aliases
# GNU parallel
# better than xargs: http://www.gnu.org/software/parallel/
# install: (wget -O - pi.dk/3 || curl pi.dk/3/) | bash && \
# echo will cite | parallel --bibtex
command -v parallel &>/dev/null
if [ $? != 0 ]; then
alias para='xargs'
else
alias para='parallel'
fi