This file contains hidden or 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
#!/usr/bin/env sh | |
EXARGS=2 | |
E_BADARGS=65 | |
if [ $# -ne $EXARGS ] ; then | |
echo "Usage: $(basename $0) archive-file playlist-url" | |
exit $E_BADARGS | |
else | |
youtube-dl --download-archive "$1" -f best -o '%(playlist)s/%(playlist_index)s-%(title)s-%(id)s.%(ext)s' "$2" | |
fi |
This file contains hidden or 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
Individual tracks: | |
Shadow of the Beat - Phragrangst | |
Shadow of the Beat - Penrose Rabbit Hole | |
Shadow of the Beat - Ctasis | |
Ugress - Hollow Wings | |
Albums: | |
Nebular Spool - Shul | |
Nebular Spool - Ruins | |
Nebular Spool - Exposery |
This file contains hidden or 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
GistID: 9846692 | |
https://www.youtube.com/watch?v=DpOu1Ri_2q8 | |
https://www.youtube.com/watch?v=Iy1-Eg--Zjo | |
https://www.youtube.com/watch?v=sOxvcCGHBj4 | |
https://www.youtube.com/watch?v=JpmgyGLsfMI | |
https://www.youtube.com/watch?v=Z-3z3DNUGiE | |
https://www.youtube.com/watch?v=Ntc4l-poovo | |
https://www.youtube.com/watch?v=7YdH18U2OLM | |
https://www.youtube.com/watch?v=MGr2zf_x8IU |
This file contains hidden or 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
set statusline=%<%F\ %m%r%h%w%{fugitive#statusline()}\ %Y\ %{FileEncoding()}\ %{&ff}%=%#warningmsg#%{SyntasticStatuslineFlag()}%*\ %c\,\ %l/%L\ %p%%\ | |
" < truncation point | |
" F full path to file | |
" m modified marker | |
" r read-only flag | |
" h help buffer flag | |
" w preview window flag | |
" {fug..Shows branch if file is in git repo | |
" Y file type | |
" {&ff} output of command ff (file format) |
This file contains hidden or 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
GistID:9776879 | |
Linking bin/VisuLove for linux64 | |
clang -o bin/VisuLove obj/linux64/Release/src/main.o obj/linux64/Release/src/ofApp.o obj/linux64/Release/src/PlaylistManager.o obj/linux64/Release/src/Rose.o obj/linux64/Release/src/InputHandler.o obj/linux64/Release/src/Star.o ../../../addons/obj/linux64/Release/ofxLeapMotion/src/ofxLeapMotion.o ../../../addons/obj/linux64/Release/ofxFX/src/ofxFXObject.o ../../../libs/openFrameworksCompiled/lib/linux64/libopenFrameworks.a -Wl,-rpath=./libs:./bin/libs -Wl,--as-needed -Wl,--gc-sections -L../../../libs/fmodex/lib/linux64/ -lfmodex ../../../addons/ofxLeapMotion/libs/lib/linux64/libLeap.so -Wl,-rpath=../../../addons/ofxLeapMotion/libs/lib/linux64 ../../../libs/glfw/lib/linux64/libglfw3.a ../../../libs/kiss/lib/linux64/libkiss.a ../../../libs/rtAudio/lib/linux64/libRtAudio.a ../../../libs/tess2/lib/linux64/libtess2.a ../../../libs/poco/lib/linux64/libPocoNet.a ../../../libs/poco/lib/linux64/libPocoXML.a ../../../libs/poco/lib/linux64/libPocoUtil.a ../../../libs/ |
This file contains hidden or 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
1.1 Motivation | |
'even with reduced accuracy.' as dee noted | |
'general foundation for any further developments' | |
-> general foundation for future developement | |
'The ramifications ...' | |
-> Being able to rapidly develop these robot systems with less overall cost in terms of budget and time will likely lead to more innovation in the area. |
This file contains hidden or 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
#version 130 | |
in float distNorm; | |
out vec4 outputColor; | |
uniform vec4 line_color; | |
uniform float time; | |
uniform float flicker_magnitude; | |
uniform float color_modifier; | |
This file contains hidden or 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
#include "ofApp.h" | |
//-------------------------------------------------------------- | |
// STARS! | |
// | |
// Object hand: | |
// position -> position of the star | |
// z position -> opacity of lines | |
// finger spread -> line density | |
// |
This file contains hidden or 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
ioq3 1.36_GIT_71386be-2014-02-22 linux-x86_64 Feb 26 2014 | |
Have SSE support | |
----- FS_Startup ----- | |
Current search path: | |
/home/oliver/.q3a/cpma | |
/home/oliver/.q3a/cpma/z-cpma-pak148.pk3 (498 files) | |
./cpma | |
./cpma/z-cpma-pak148.pk3 (498 files) | |
/home/oliver/.q3a/baseq3 | |
/home/oliver/.q3a/baseq3/map_cpmctf5.pk3 (16 files) |
This file contains hidden or 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
# REQUIREMENTS | |
# - libx11-dev | |
SHELL = /bin/sh | |
CC = gcc | |
LINKER = gcc | |
FLAGS = -pg | |
CFLAGS = -fPIC -c |