Skip to content

Instantly share code, notes, and snippets.

View murphyke's full-sized avatar

Kevin Murphy murphyke

  • The Children's Hospital of Philadelphia
  • Philadelphia, PA
View GitHub Profile
@murphyke
murphyke / exercise.tour.go
Created April 10, 2018 18:31 — forked from zyxar/exercise.tour.go
tour.golang exercise solutions
/* Exercise: Loops and Functions #43 */
package main
import (
"fmt"
"math"
)
func Sqrt(x float64) float64 {
z := float64(2.)
@murphyke
murphyke / add-docker-user.sh
Last active March 16, 2016 18:47 — forked from bruth/add-docker-user.sh
Setup Official Docker Repo on RHEL 7
#!/bin/bash
/usr/sbin/usermod -aG docker <user>
require 'formula'
class ScalaDocs < Formula
homepage 'http://www.scala-lang.org/'
url 'http://www.scala-lang.org/files/archive/scala-docs-2.9.3.zip'
sha1 '5bf44bd04b2b37976bde5d4a4c9bb6bcdeb10eb2'
end
class ScalaCompletion < Formula
homepage 'http://www.scala-lang.org/'