I hereby claim:
- I am darkliquid on github.
- I am darkliquid (https://keybase.io/darkliquid) on keybase.
- I have a public key whose fingerprint is AB5D 304C 78C2 6182 A1C2 15F7 E849 541B 6EF1 C36B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
RegisterCallback("PRIVMSG", "TUUUUUUUUNE", function() { | |
var msg = this.event.message, | |
args = msg.split(" "), | |
source = this.event.args[0], | |
nick = this.event.nick, | |
me = IRC.GetNick(), | |
stats = UTILS.GetShoutcastStats(), | |
cfg = GetConfig(); | |
if(nick != me && msg.match(/T(U+)(N+)E/) && !msg.match(/^!/)) { |
// Handles js, sass, image optimisation/compilation and does very basic PHP linting and livereload | |
var gulp = require('gulp'), | |
minifycss = require('gulp-minify-css'), | |
notify = require('gulp-notify'), | |
cache = require('gulp-cache'), | |
sass = require('gulp-sass'), | |
uglify = require('gulp-uglify'), | |
gutil = require('gulp-util'), | |
refresh = require('gulp-livereload'), | |
lr = require('tiny-lr'), |
class Dashing.Newsupdates extends Dashing.Widget |
javascript:(function () { | |
function getTextNodesIn(element) { | |
var wordcount = 0, | |
whitespace = /^\s*$/; | |
function getTextNode(node) { | |
// type 3 is a textnode | |
if (node.nodeType == 3) { | |
// We skip text nodes that are only whitespace | |
if (!whitespace.test(node.nodeValue)) { |
#!/bin/bash | |
res=$(zenity --list --text="Choose a screen size" --column="Choice" --column="Resolution" --radiolist FALSE "1680x1050" TRUE "3360x1050" --separator=":") | |
if [ $? ] ; then | |
xrandr --size $res | |
fi |