Skip to content

Instantly share code, notes, and snippets.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
[ExecuteInEditMode]
public class FollowSceneCamera : MonoBehaviour {
private Vector3 lastPosition;
private Quaternion lastRotation;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ElevatorDoors : MonoBehaviour {
public GameObject doorLeft;
public GameObject doorRight;
public float speed = 20f;
public GameObject elevator;
// magical github automation
//
// add hooks similar to below based on:
// https://developer.github.com/v3/activity/events/types/
//
// use github object according to docs:
// http://mikedeboer.github.io/node-github/
const Promise = require("bluebird");
### Keybase proof
I hereby claim:
* I am progrium on github.
* I am progrium (https://keybase.io/progrium) on keybase.
* I have a public key ASB2MPQoPvuUzt8zs32FR4O4CsNGhUbG32YZkvqC5A-4-Ao
To claim this, I am signing this object:
cd /tmp
rm hello.cmd
rm http.cmd
ssh cmd.io :delete hello
ssh cmd.io :delete http
source ~/.profile.d/demo
clear
[wait 2]# Let's build two quick commands with Cmd.io!
# First,[wait] a simple command that says hello.
# blah blah blah
deps-update: ## update dependencies if changed
./dev/deps.sh
deps-go:
glide install
git log -n 1 --pretty=format:%h -- glide.yaml > .git/deps-go
deps-js:
FROM alpine
RUN apk add --update wget unzip ca-certificates
RUN cd /tmp && wget -q https://releases.hashicorp.com/terraform/0.7.2/terraform_0.7.2_linux_amd64.zip \
&& unzip terraform_0.7.2_linux_amd64.zip \
&& mv terraform /bin \
&& rm terraform_0.7.2_linux_amd64.zip
COPY ./tf /bin/tf
ENTRYPOINT ["/bin/tf"]
@progrium
progrium / gist:6ec40a63549e25196dcee824e9407f54
Created August 31, 2016 18:42
make an empty branch (destroy) on a bare repo
#!/bin/bash
blob="$(git hash-object -w --stdin < /dev/null)"
git update-index --add --cacheinfo 0644 "$blob" file
tree="$(git write-tree)"
commit="$(echo file | git commit-tree $tree)"
git update-ref refs/heads/destroy $commit
package main
import (
"io"
"github.com/progrium/automata/pkg/ssh"
)
func main() {
ssh.ListenAndServe(":2222", func(s ssh.Session) {
@progrium
progrium / 0.before.md
Last active August 13, 2016 00:29
execute and insert commands found in markdown inside ``` starting with #!

Hello world

#! ls -la