Skip to content

Instantly share code, notes, and snippets.

View rorpage's full-sized avatar
🚀
Rocket ship(it)

Robbie Page rorpage

🚀
Rocket ship(it)
View GitHub Profile
Start-Process notepad.exe
Invoke-WebRequest https://maker.ifttt.com/trigger/testing_powershell/with/key/super_secret_key
import java.util.ArrayList;
import com.claus.Santa;
import com.world.Person;
import com.world.PersonHelper;
public class SantasList {
private Santa mSanta;
private ArrayList<Person> mList;
public SantasList(Santa santa) {
@rorpage
rorpage / openfaas-kubernetes-README.md
Last active October 24, 2018 13:55
Install and set up OpenFaaS on local Kubernetes

Quickly get OpenFaaS set up on your local machine with Kubernetes

  • Install Docker Community Edition (Edge): link
  • Install Helm:
    $ brew install kubernetes-helm
    
  • Create RBAC permissions for Tiller:

$ kubectl -n kube-system create sa tiller \

rorpage