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
name: "2048.c" | |
version: git | |
runner: linux | |
game_slug: "2048-c" | |
game: | |
exe: "/usr/bin/gnome-terminal" | |
args: -e "$GAMEDIR/2048" | |
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
trigger-camera |
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
class Behavior.TrackDrag extends Marionette.Behavior | |
events: | |
dragstart: 'start' | |
dragenter: 'enter' | |
dragleave: 'leave' | |
dragend: 'leave' | |
dragover: 'over' | |
drop: 'drop' | |
start: (e) -> |
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
music/Sailor Moon/English/Full Moon Collection/01 - Pan Flute.flac | |
music/Sailor Moon/English/Full Moon Collection/02 - Sailor Moon Theme (S.A.F. Remix).flac | |
music/Sailor Moon/English/Full Moon Collection/07 - Moon Crystal Power.flac | |
music/Sailor Moon/English/Full Moon Collection/13 - Tuxedo Mask.flac | |
music/Sailor Moon/English/Full Moon Collection/16 - Nothing At All.flac | |
music/Sailor Moon/English/Full Moon Collection/18 - It's A New Day.flac | |
music/Sailor Moon/English/Full Moon Collection/20 - Sailor Moon Theme (S.A.F. Club Mix).flac | |
music/Sailor Moon/English/Full Moon Collection/21 - Queen Beryl.flac | |
music/Sailor Moon/English/Songs From the TV Series/01 - Sailor Moon Theme Song.flac | |
music/Sailor Moon/English/Songs From the TV Series/02 - I Want to be a Star.flac |
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 node | |
var net = require('net'); | |
var client = net.connect(1234, "localhost"); | |
client.pipe(process.stdout); | |
client.on('connect', function () { | |
console.log("Connected!"); |
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
... | |
UDP: Unknown data received : 4efa0038000100ca020000004efc0038000100ca0e000000 | |
UDP: Next message will be : 4efc0038000100ca0e000000 | |
UDP: Unknown data received : 4efc0038000100ca0e000000 | |
UDP: Next message will be : | |
UDP: Unknown data received : 4efe0038000100ca050000004e000138000100ca06000000 | |
UDP: Next message will be : 4e000138000100ca06000000 | |
UDP: Unknown data received : 4e000138000100ca06000000 | |
UDP: Next message will be : | |
UDP: Discarding double message (-0) from 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
// | |
// PiGlow system monitor by djazz! | |
// Makefile is embedded below | |
// | |
// Configuration | |
float temperature_range[] = {35.0, 65.0}; | |
float led_update_interval = 1000/20.0; | |
float value_update_interval = 1000.0; |
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 | |
# created by djazz (@daniel_hede) | |
# Video | |
width=640 | |
height=360 | |
fps=25 | |
vkbits=128 | |
# Audio |
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 node | |
'use strict'; | |
// IRC bot by djazz | |
// Modules | |
//var http = require('http'); | |
var irc = require('irc'); | |
var colors = require('colors'); | |
var util = require('util'); | |
var readline = require('readline'); |
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 node | |
'use strict'; | |
// Created by djazz | |
// Use with Mopidy to use Spotify playlist with local files in them | |
// Dependencies: | |
// $ npm install spotify-web ini | |
// | |
// mopidy (or mpd) must be running, mpc must be installed |