#! ls -la
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
[ExecuteInEditMode] | |
public class FollowSceneCamera : MonoBehaviour { | |
private Vector3 lastPosition; | |
private Quaternion lastRotation; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"io" | |
"github.com/progrium/automata/pkg/ssh" | |
) | |
func main() { | |
ssh.ListenAndServe(":2222", func(s ssh.Session) { |