Flux Pavilion - I Can't Stop
  
    
      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
    
  
  
    
  | Ooh, now let's get down tonight | |
| Baby I'm hot just like an oven | |
| I need some lovin' | |
| And baby, I can't hold it much longer | |
| It's getting stronger and stronger | |
| And when I get that feeling | |
| I want Sexual Healing | |
| Sexual Healing, oh baby | |
| Makes me feel so fine | 
  
    
      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
    
  
  
    
  | package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "io" | |
| "os" | |
| "github.com/porty/emitter" | |
| ) | 
Extract source tarball, run make:
$ make
make: sdl-config: Command not found
g++ -std=c++11 -Wall -MP -MMD -g -O0 -mwindows -D__WIN32__ -DSDL -DNO_MIXER  -Iinclude -c src/engine/g_game.cpp -o build/engine/g_game.o
clang: error: unknown argument: '-mwindows'
make: *** [build/engine/g_game.o] Error 1
  
    
      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
    
  
  
    
  | package main | |
| // http://www.cocoawithlove.com/2010/09/minimalist-cocoa-programming.html | |
| // https://github.com/TooTallNate/NodObjC/blob/master/examples/NodeCocoaHelloWorld.app/Contents/MacOS/app.js | |
| // https://github.com/TooTallNate/NodObjC/issues/21 | |
| // http://www.gnustep.it/nicola/Tutorials/FirstGUIApplication/node3.html | |
| /* | |
| #cgo CFLAGS: -x objective-c | |
| #cgo LDFLAGS: -framework Cocoa | 
  
    
      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
    
  
  
    
  | # install sudo | |
| apt-get install -y sudo | |
| # allow users to do sudoey things | |
| # change network interface things | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| set -e | |
| if [[ $(whoami) != "buildkite-agent" ]]; then | |
| cp $(basename $0) /tmp/shell.sh | |
| sudo su buildkite-agent -s /tmp/shell.sh | |
| exit $? | |
| 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
    
  
  
    
  | <?php | |
| private function log($args) | |
| { | |
| $str = ''; | |
| foreach ($args as $arg) { | |
| if (is_string($arg)) { | |
| $str .= $arg; | |
| } else { | |
| ob_start(); |