Skip to content

Instantly share code, notes, and snippets.

View jcbwlkr's full-sized avatar

Jacob Walker jcbwlkr

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jcbwlkr on github.
  • I am jcbwlkr (https://keybase.io/jcbwlkr) on keybase.
  • I have a public key ASDPm-I3zURHKAmjpCJVAVLsGKtbRwYhESs5F9jcNfiOjQo

To claim this, I am signing this object:

@jcbwlkr
jcbwlkr / setup_notes.md
Last active April 30, 2020 20:26
Getting Set Up With Go On Windows

Go On Windows

Installing Go

  1. Go to https://golang.org/dl/ and download the installer for your OS.
  2. Run the installer and accept all default prompts.
  3. Create a folder called "Projects" in your home folder.
  4. In the start menu search for env then select "Edit environment variables for your account".
  5. Add a new variable called GOPATH with a value of %USERPROFILE%\Projects.
  6. Edit the PATH variable and add this to whatever is already there ;%GOPATH%\bin.
  7. In the start menu search for cmd then run it.
@jcbwlkr
jcbwlkr / README.md
Last active February 9, 2016 21:49

Git Workshop

What is Git?

  • Version Control System (VCS).
  • Much better than having
    • index.html
    • index.html_backup
    • index.html_before_bootstrap
    • index.html_working

JavaScript Workshop 2

A Few of My Favorite Things

The purpose of this workshop is to introduce adding behavior to a site using the JavaScript library jQuery. To accomplish this we will build up an interactive page that lists a few of our favorite things.

Libraries

In the real world, libraries share knowledge through books and other media. In

JavaScript Workshop 1

Overview

  • What is JavaScript?
  • How to Run Code
  • Arithmetic
  • Variables
  • Comments
  • Methods
  • Strings
@jcbwlkr
jcbwlkr / .tmux.conf
Created October 10, 2014 14:06
Tmux Vim Sync Status
# ... Snip most of my config ...
# This tmux statusbar config was originally created by tmuxline.vim
set -g status-interval 1 # the sync-status script is never called on demand. It is only called per this interval
set -g status-utf8 on
set -g status-justify "left"
set -g status "on"
set -g status-bg "colour238"
@jcbwlkr
jcbwlkr / gist:e6d154ebb5010749f9e1
Created September 5, 2014 12:02
why-i-love-phabricator
06:58 < Trudko> btw why are there links to starcraft races on the main page ? :)
06:59 < jacobwalker0814> Trudko: don't forget selected pokemon
06:59 < Trudko> thats a whole another topic :D
07:00 <@epriestley> The page looked visually imbalanced with only two columns
07:01 < jacobwalker0814> epriestley: http://bit.ly/1sxwG3S ??
07:01 <@epriestley> A "Zoidberg" column with useful Zoidberg links would also have worked.
07:02 < jacobwalker0814> ^_^
{
"name": "jacobwalker0814/php-git",
"description": "Testing out PHPGit",
"require": {
"kzykhys/git": "dev-master"
},
"authors": [
{
"name": "Jacob Walker",
"email": "jwalker@tortugas-llc.com"
07:31 -!- Irssi: Join to #devict was synced in 7 secs
07:31 <@jacobwalker0814> howdy, all
07:31 <@devict-bot> A new secret word has been selected!
07:31 <@devict-bot> The previous secret word was 'thing'. NOBODY SAID IT. :( :( :(
07:31 <@jacobwalker0814> Oh, man. I hope I say today's word!!!
07:31 <@devict-bot> YOU SAID THE SECRET WORD!!!!
07:31 <@devict-bot> DAY!!! DAY!!!
07:31 <@jacobwalker0814> HAHAHAHAHAHAHAHAHA
07:32 <@jacobwalker0814> I can go back to bed now. This just made my... day!
07:32 <@devict-bot> YOU SAID THE SECRET WORD!!!!
@jcbwlkr
jcbwlkr / max_cycle_calc.rb
Created May 20, 2013 15:39
Submission for the 2013-05-17 UpFront Wichita code challenge.
#!/usr/bin/env ruby
class CycleCalc
def initialize(lowestN, highestN)
@lowestN, @highestN = lowestN.to_i, highestN.to_i
end
def maxLength
max = 0
for n in @lowestN..@highestN
l = cycleLength n