Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
; Cameron's Autohotkey defaults | |
; place this file in your `shell:startup` folder | |
; requires autohotkey. Installed in provisioning. See https://gist.github.com/camb416/8109a6547b346658bfc2b39be588099a | |
; Keep that Caps off | |
SetCapsLockState, AlwaysOff | |
; Mac Muscle Memory for Spotlight search | |
; Maps Cmd-Space to just Win (Start Menu) | |
LWin & Space:: |
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
:: Provision a Creative Technology Windows Workstation | |
:: 2024 Cameron Browning | |
:: Head of Creative Tech, BUCK | |
:: https://gist.github.com/camb416/8109a6547b346658bfc2b39be588099a | |
:: | |
:: Before you run: | |
:: Install chocolatey. Instructions here: https://chocolatey.org/install | |
:: Don't forget to run in Administrator mode | |
:: Every time you need to install something essential, add to this file. |
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
cam@DESKTOP-AJKAVAA:/mnt/c/Users/cam/Downloads$ ffmpeg -i bbb_sunflower_2160p_60fps_normal.mp4 -c:a copy -c:v libx265 out.mp4 | |
ffmpeg version 2.8.14-0ubuntu0.16.04.1 Copyright (c) 2000-2018 the FFmpeg developers | |
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.9) 20160609 | |
configuration: --prefix=/usr --extra-version=0ubuntu0.16.04.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --cc=cc --cxx=g++ --enable-gpl --enable-shared --disable-stripping --disable-decoder=libopenjpeg --disable-decoder=libschroedinger --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-l |
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
<?php | |
echo exec('whoami'); | |
exec('echo -n "two" >/dev/udp/192.168.1.192/5001'); | |
echo "purplebox working."; |
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
ArrayList<Ball> balls; | |
boolean doScale; | |
void setup() { | |
doScale = false; | |
size(1280, 720); | |
balls = new ArrayList<Ball>(); | |
for (int i=0; i<width/20; i++) { | |
for (int j=0; j<height/20; j++) { |
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
color[] colors = { #395273, | |
#395273, | |
#F2EDA0, | |
#D9A171, | |
#395273, | |
#395273, | |
#40211E, | |
#395273, | |
#40211E, |
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
color[] colors = {#395273, | |
#405B73, | |
#F2EDA0, | |
#D9A171, | |
#40211E, | |
#40211E}; | |
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
Bezier b; | |
ArrayList<DraggablePoint> pts; | |
boolean isDragging; | |
int dragID; | |
float slope; | |
float t; | |
void setup(){ | |
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
import processing.core.PApplet; | |
import processing.core.PGraphics; | |
/** | |
* Created by cbrowning on 2/28/16. | |
*/ | |
PGraphics tile; | |
int tileWidth; | |
int tileHeight; |
NewerOlder