This program will move a file to a new folder, and then create a symbolic link to it in the old folder
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
// <rant> to actual rant | |
// (requires modern browsers) | |
var rants = document.getElementsByTagName('rant'); | |
for (i=0;i<rants.length;i++) { | |
var rant = new SpeechSynthesisUtterance(rants[i].innerHTML); | |
window.speechSynthesis.speak(rant); | |
} |
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
##### | |
# | |
# Zer0t3ch's .conkyrc | |
# | |
##### | |
update_interval 0.3 | |
double_buffer yes |
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/python2 | |
import subprocess as sp | |
import sys | |
devhdmi = '5' | |
devheadset = '8' | |
storedir = "/home/chaos/bin/" | |
filename = storedir + ".currentdevice" |
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 1.2 -=**/ | |
var canvas, c; | |
var dots = [ ]; | |
var lines = [ ]; | |
var count = 0; | |
var m = { | |
mousePos : function(canvas, evt) { | |
var rect = canvas.getBoundingClientRect(); |
NewerOlder