Skip to content

Instantly share code, notes, and snippets.

View koalalorenzo's full-sized avatar
Above the Cloud there is a sky full of stars

Lorenzo Setale koalalorenzo

Above the Cloud there is a sky full of stars
View GitHub Profile
@rimusz
rimusz / gitlab-runner.yaml
Created May 10, 2017 15:40 — forked from lsjostro/gitlab-runner.yaml
gitlab-runner k8s
kind: Role
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: gitlab-ci
namespace: gitlab
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]
@rtfpessoa
rtfpessoa / lazy-load-nvm.sh
Created August 26, 2016 11:42
NVM lazy loading script
#!/bin/bash
#
# NVM lazy loading script
#
# NVM takes on average half of a second to load, which is more than whole prezto takes to load.
# This can be noticed when you open a new shell.
# To avoid this, we are creating placeholder function
# for nvm, node, and all the node packages previously installed in the system
# to only load nvm when it is needed.