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 ( | |
"fmt" | |
"math/rand" | |
"os" | |
"runtime" | |
"strings" | |
"sync" | |
"time" |
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 ( | |
"context" | |
"errors" | |
"fmt" | |
"math/rand" | |
"os" | |
"os/exec" | |
"os/signal" |
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 srcinfo | |
import ( | |
"os" | |
"path/filepath" | |
"testing" | |
gopkg "github.com/mikkeloscar/gopkgbuild" | |
) |
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
// Compile with go build -o idserv main.go | |
package main | |
import ( | |
"bytes" | |
"flag" | |
"fmt" | |
"log" | |
"net" | |
"os" |
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
Left to Right: KEY_LEFTMETA, KEY_TAB | |
Right to Left: KEY_LEFTMETA, KEY_A | |
Down to Up: KEY_LEFTMETA, KEY_B | |
Up to Down: KEY_LEFTMETA, KEY_D |
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 | |
################################################################################# | |
# File Name : cycle_audio_output.sh | |
# Created By : jguer | |
# Creation Date : [2016-01-16 22:55] | |
# Last Modified : [2016-01-17 00:42] | |
# Description : Cycles audio output devices | |
################################################################################# | |
VERBOSITY=0 | |
NOTIFICATIONS=0 |
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/sh | |
# @Author: jguer | |
# @Date: 2015-12-25 21:48:40 | |
# @Last Modified by: jguer | |
# @Last Modified time: 2015-12-26 13:48:04 | |
# @Description: Wallpaper folder organizer | |
# @Credits: tuxtweaks for getopts code | |
#REQUIRES | |
# - exiv2 |
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/sh | |
# | |
# cmus-status-display | |
# | |
# Usage: | |
# in cmus command ":set status_display_program=cmus-status-display" | |
# | |
# This scripts is executed by cmus when status changes: | |
# cmus-status-display key1 val1 key2 val2 ... | |
# |