Skip to content

Instantly share code, notes, and snippets.

View aleohl's full-sized avatar

Alexander O aleohl

View GitHub Profile
module.exports = function(grunt) {
//Initializing the configuration object
grunt.initConfig({
// Task configuration
less: {
development: {
options: {
compress: true
},
@aleohl
aleohl / gist:6734527
Created September 27, 2013 20:13
irssi one-liner for closing all queries.
/script exec foreach my $w ( Irssi::windows() ) {my $act = $w->{active};next unless defined $act->{type};$w->command("window close") if $act->{type} eq 'QUERY';}