Skip to content

Instantly share code, notes, and snippets.

View dholdaway's full-sized avatar

Darren Holdaway dholdaway

View GitHub Profile

Keybase proof

I hereby claim:

  • I am dholdaway on github.
  • I am dholdaway (https://keybase.io/dholdaway) on keybase.
  • I have a public key ASAibVvZBeFVDhlqS_DaiHPSjU8ktb60qJ0dTn0P3XeaJAo

To claim this, I am signing this object:

@dholdaway
dholdaway / install virtualenv ubuntu 16.04.md
Created October 28, 2019 11:22 — forked from frfahim/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 
@dholdaway
dholdaway / PerformBuild.cs
Created September 13, 2017 11:28 — forked from meng-hui/PerformBuild.cs
Automated Unity Build from git repository to apk, xcode projects for use in conjunction with Jenkins. Contains Unity Editor script to collect the scenes, set the build settings, set the build location and an ant script to build the Unity project on the command line.
using UnityEditor;
using System.IO;
using System.Collections;
using UnityEngine;
using System.Collections.Generic;
class PerformBuild
{
private static string BUILD_LOCATION = "+buildlocation";
@dholdaway
dholdaway / LightFlickerEffect.cs
Created July 13, 2021 22:10 — forked from sinbad/LightFlickerEffect.cs
Unity simple & fast light flicker script
using UnityEngine;
using System.Collections.Generic;
// Written by Steve Streeting 2017
// License: CC0 Public Domain http://creativecommons.org/publicdomain/zero/1.0/
/// <summary>
/// Component which will flicker a linked light while active by changing its
/// intensity between the min and max values given. The flickering can be
/// sharp or smoothed depending on the value of the smoothing parameter.
@dholdaway
dholdaway / install_docker.sh
Created August 2, 2023 16:17
install docker Ubuntu 22.04
#!/bin/bash
# Update the package list
sudo apt-get update
# Install necessary packages
sudo apt-get install ca-certificates curl gnupg
# Create a directory for the keyring
sudo install -m 0755 -d /etc/apt/keyrings