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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
| "http://www.w3.org/TR/html4/loose.dtd"> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <script type="text/javascript" charset="utf-8"> | |
| window.sensiPlugins = []; | |
| </script> | |
| </head> | |
| <body> |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| Quick and dirty taks runner implementation | |
| """ | |
| import datetime | |
| import sqlite3 | |
| import json | |
| import time |
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
| exec ctags-exuberant \ | |
| --languages=Python,JavaScript \ | |
| -h ".py",".js" -R \ | |
| --totals=yes \ | |
| --tag-relative=yes \ | |
| --fields=afmikKlnsStz \ | |
| --python-kinds=-iv |
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
| #ifndef COMMON_DEBUG_H | |
| #define COMMON_DEBUG_H | |
| #include <glib.h> | |
| #include <lua.h> | |
| #define lua_showstack(L, depth) _lua_showstack(L, depth, __LINE__, __FUNCTION__) | |
| void |
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
| timeout = -1; | |
| lua_pushstring(L, "timeout"); | |
| lua_gettable(L, -1); | |
| if (lua_isnumber(L, -1)) { | |
| timeout = lua_tointeger(L, -1); | |
| } else { | |
| fprintf(strerr, "timeout param not found\n"); | |
| } | |
| lua_pop(L, 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
| #include <glib.h> | |
| #include <gdk/gdk.h> | |
| #include <gtk/gtk.h> | |
| #include <glib/gprintf.h> | |
| #include <string.h> | |
| /* | |
| * | |
| * Colorpicker. That's all. | |
| * |
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
| if exists("g:loaded_colorpicker") | |
| finish | |
| endif | |
| let g:loaded_colorpicker = 1 | |
| if !has("python") | |
| echo "Failed. Colorpicker requires Vim to be compiled with Python support" | |
| finish | |
| endif |
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 python2 | |
| import optparse | |
| import re | |
| import select | |
| import sys | |
| import socket | |
| import time | |
| import paramiko |
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
| -- Standard awesome library | |
| require("awful") | |
| require("awful.autofocus") | |
| require("awful.rules") | |
| -- Widget and layout library | |
| require("wibox") | |
| -- Theme handling library | |
| require("beautiful") | |
| -- Notification library | |
| require("naughty") |
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
| Xft*dpi: 100 | |
| Xft*antialias: true | |
| Xft.hinting: hintfull | |
| #Xft.hintstyle: 5 | |
| Xft*lcdfilter: 5 | |
| Xft*minspace: true | |
| # {{{ ncmpc | |
| ncmpc*faceName: fixed | |
| ncmpc*faceSize: 8 |