Skip to content

Instantly share code, notes, and snippets.

View stkrzysiak's full-sized avatar

Steve Krzysiak stkrzysiak

  • Destin
View GitHub Profile
@stkrzysiak
stkrzysiak / nginx.yml
Created August 14, 2018 00:25
devilbox reverse proxy
---
vhost: |
server {
listen __PORT____DEFAULT_VHOST__;
server_name __VHOST_NAME__;
access_log "__ACCESS_LOG__" combined;
error_log "__ERROR_LOG__" warn;
# Define the vhost to reverse proxy
@stkrzysiak
stkrzysiak / _.md
Last active June 15, 2016 21:36
test

[ Launch: test ] a35203f2b0ab98fa943da3c59baf4e20 by stkrzysiak

@stkrzysiak
stkrzysiak / learning_amd
Created February 19, 2015 16:03
Learning Javascript modules, AMD, CommonJS, RequireJS, etc
JS Module Learning Notes/Links
Below is a summary of how I approached learning about JS module loading.
https://www.youtube.com/watch?v=szJjsduHBQQ
A recent video on ES6 module loading, which seem to be the buzz words I seek to
understand. Made it through 20 minutes, which had it's benefits, but I relized I
should probably nderstand more about the AMD api and CommonJS and some background
info so I ended up pausing the video....
@stkrzysiak
stkrzysiak / mac-configure.sh
Last active August 29, 2015 14:07
Simple Mac Restore
#!/bin/sh
# Source http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac
# Worth looking at for dotfile stuff: http://dotfiles.github.io/
# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi