Skip to content

Instantly share code, notes, and snippets.

View mloberg's full-sized avatar
🐚
call me on my #!/bin/sh phone

Matt Loberg mloberg

🐚
call me on my #!/bin/sh phone
View GitHub Profile
@brockriemenschneider
brockriemenschneider / PHP Constructor
Last active February 23, 2018 17:19
PHPStorm File and Code Templates
/**
* Constructor
#if (${PARAM_DOC} != "") *
#else#end
${PARAM_DOC}
*/
public function __construct(${PARAM_LIST}) {${BODY}}
@victorholt
victorholt / installer.go
Created March 7, 2018 18:44
Docker Installer
package main
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"reflect"
"regexp"
"strings"