Skip to content

Instantly share code, notes, and snippets.

View dylwylie's full-sized avatar

Dylan Wylie dylwylie

  • Belfast, Northern Ireland
View GitHub Profile
apiVersion: kbld.k14s.io/v1alpha1
kind: Sources
metadata:
name: test_app
namespace: default
sources:
- image: test_app
path: ../components/test_app
docker:
build:
@dylwylie
dylwylie / Contract Killer 3.md
Created January 18, 2019 15:29
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@dylwylie
dylwylie / genesis_public_key
Created February 21, 2018 22:26
genesis_public_key
04cf2e90a4782faf7eb56283760b2d9d3d54bbb981339794d072873e78f57938361cbe5b94400f1244b88da054be17f7646862db1eaaac0f5d915df7aaaca0f6d8
@dylwylie
dylwylie / download_egghead_videos.md
Last active April 12, 2016 17:55 — forked from christiangenco/download_egghead_videos.md
download egghead videos
@dylwylie
dylwylie / test_uuid_python.py
Last active December 30, 2015 18:13
Uses pythons uuid library to generated uuids to see if they generate collisions. (Warning: Will use up your RAM)
import uuid
count = 0
collision = False
guid_dict = {}
while not collision:
guid = uuid.uuid4()