Skip to content

Instantly share code, notes, and snippets.

View skipzero's full-sized avatar
Seeking new opportunities

Skip McBride skipzero

Seeking new opportunities
View GitHub Profile
@skipzero
skipzero / reactInfo.md
Created July 7, 2017 18:50
React resources for reference

React resources

  • the docs

    • they're actually pretty good. be sure to read Composition v. Inheritance & thinking in React, if nothing else.
  • Frontend Handbook

    • this is actually a good resource for all things frontend. But I've linked specifically to the React section.
@skipzero
skipzero / minecraft.sh
Created May 13, 2017 02:35
Minecraft Server - check status, start and stop server
#!/bin/bash
# original author : Relliktsohg
# continued contributions: Maine, endofzero
# dopeghoti, demonspork, robbiet480,
# UnkzDomain
# https://github.com/endofzero/Minecraft-Sheller
# Configuration
# Main
@skipzero
skipzero / markdownCheatSheet.md
Created February 10, 2017 08:24
cheat sheet for github flavoured MD files. used in READMEs, TODOs and the like....

Markdown Cheatsheet


Heading 1

Markup :  # Heading 1 #

-OR-

@skipzero
skipzero / .zshrc
Last active January 29, 2019 10:16
oho my zsh zshrc file for backup and easy access
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="bureau"
export PATH=$HOME/.jenv/shims:$HOME/.nvm/versions/node/v9.0.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$PATH
# Uncomment the following line to display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"
plugins=(
@skipzero
skipzero / byobuCommands
Created December 3, 2016 07:00 — forked from jshaw/byobuCommands
Byobu Commands
Byobu Commands
==============
byobu Screen manager
Level 0 Commands (Quick Start)
------------------------------
<F2> Create a new window
@skipzero
skipzero / rpiNode.md
Last active October 11, 2016 09:48
a small walk thru of my RPi setup - WIP

I thought I'd throw my hat into the ring and help out all the people learning to play with their Raspberry Pi. I've done this a couple times in the last few years and have noticed a lot more people taking advantage of the (more than) reasonably priced Raspberry Pi's and similar computers found on the market. While I'll do my best to walk through a basic setup and get you all the goodies you'll need, this is not meant to be comprehensive. In fact, I'm almost positive I'll leave something(s) out. Not to mention, every setup could be slightly different and needs fine tuned to the project at hand.All that being said, let's take a look at what we need to get started!

If, like me, you come from using a mac or other *nix systems this shouldn't be unfamiliar. However if you're a windows person, I'm terribly sorry. If you're still on windows as a main operating system this might be a little tougher for you as I'm not going to go into any detail as to putty, rim raff and all the other shims that you would need to be

/*************************************************
* This is a simple Monte Carlo simulation to see
* whether we should
* go for X BIG deal and/or Y SMALL deals.
*
* What is the best blend?
*
* Author: Ido Green | plus.google.com/+greenido
* Date: 16 July 2013
*
@skipzero
skipzero / System Design.md
Created October 3, 2016 04:21 — forked from greenido/System Design.md
System Design Cheatsheet

#System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

##Basic Steps

  1. Clarify -> Agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@skipzero
skipzero / eslintrc.js
Last active July 18, 2017 00:28
default eslintrc file for projects
module.exports = {
plugins: ['react', 'babel', 'html'],
settings: {
'html/html-extentions': ['.html', '.ejs'],
},
extends: ['eslint:recommended', 'plugin:react/recommended'],
ecmaVersion: 6,
env: {
browser: true,
node: true,
@skipzero
skipzero / bureau.zsh-theme
Created August 31, 2016 16:13
my copy from wrk machine
# oh-my-zsh Bureau Theme
### NVM
ZSH_THEME_NVM_PROMPT_PREFIX="%B⬡%b "
ZSH_THEME_NVM_PROMPT_SUFFIX=""
### Git [±master ▾●]
ZSH_THEME_GIT_PROMPT_PREFIX="[%{$fg_bold[green]%}±%{$reset_color%}%{$fg_bold[white]%}"