Author: jriggs

  • Links For Programming in Go – for beginners

    http://golang.org/ref/spec http://www.youtube.com/watch?v=ytEkHepK08c – A Tour of Go http://commandcenter.blogspot.com.au/2012/06/less-is-exponen… http://tour.golang.org/ http://golang.org/doc/install http://www.youtube.com/watch?v=XCsL89YtqCs – Writing, building, installing, and testing Go code http://golang.org/doc/code.html http://golang.org/doc/effective_go.html http://golang.org/pkg/ – use as reference http://www.youtube.com/watch?v=f6kdp27TYZs – Google I/O 2012 – Go Concurrency Patterns http://talks.golang.org/2012/splash.article https://gobyexample.com/ http://golang-examples.tumblr.com/ SOURCE: https://news.ycombinator.com/item?id=5365401 USER: https://gist.github.com/shurcooL

  • jQuery .On Pass Sender Information to Handler Function

    I needed to display a modal box that would pass information back to the link (sender) that was clicked. In my experience this has been handled in the past by either: 1) Creating an individual modal box for each element that would need to one, and display it when the link is clicked 2) Using […]

  • Simple jQuery Color Selector

    I needed a lightweight color picker that was reusable, lightweight, dead simple to implement, and could be attached to any html element. Here’s what I came up with: DEMO

  • Use grep to search for text in all files below current directory

    grep -rl “find-this” ./