- Media frontend
- Amazing amount of plugins for tons of various stuff
- Advanced Launcher, http://forum.xbmc.org/showthread.php?t=85724
- Trakt.tv, http://forum.xbmc.org/showthread.php?t=98582
This file contains 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
* spazcowz - Daniel | |
* mcroydon - Matt | |
* mintchaos - Xian | |
* bltsandwich - Ben T. | |
* exoar - Travis | |
* fxdgear - Nick | |
* jacobian - Jacob KM | |
* bobbygrace - Bobby | |
* duke_sam - Niall | |
* thekaul - Kyle Stern |
This file contains 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
''' | |
Demonstration of using `splice` with non-blocking IO | |
Lots of code is similar to 'splice.py', take a look at that module for more | |
documentation. | |
''' | |
import os | |
import os.path | |
import errno |
This file contains 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
import re | |
class _R(type): | |
def __div__(self, regex): | |
return R(regex) | |
class R(object): | |
__metaclass__ = _R | |
def __init__(self, regex): |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
- Stores data elements based on an sequential, most commonly 0 based, index.
- Based on tuples from set theory.
This file contains 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
location /resize { | |
alias /tmp/nginx/resize; | |
set $width 150; | |
set $height 100; | |
set $dimens ""; | |
if ($uri ~* "^/resize_(\d+)x(\d+)/(.*)" ) { | |
set $width $1; | |
set $height $2; | |
set $image_path $3; |
This file contains 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
# Place this file in ~ | |
# Installing Compton: sudo apt-add-repository ppa:richardgv/compton; sudo apt-get update; sudo apt-get -y install compton | |
backend = "xrender"; | |
paint-on-overlay = true; | |
glx-no-stencil = true; | |
glx-no-rebind-pixmap = true; | |
vsync = "opengl"; | |
#xrender backend with opengl solves "laggy drag" issue on 14.04 |
I hereby claim:
- I am coleifer on github.
- I am coleifer (https://keybase.io/coleifer) on keybase.
- I have a public key whose fingerprint is AEAC C7C2 FC8A E23D F23F D0A4 D1C4 594E 5FD4 20DA
To claim this, I am signing this object:
This file contains 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 python | |
from collections import namedtuple | |
import ctypes | |
import datetime | |
import fcntl | |
import imaplib | |
import json | |
import multiprocessing | |
import os |
This file contains 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
Shougo/deoplete.nvim | |
Shougo/neosnippet-snippets | |
Shougo/neosnippet.vim | |
Xuyuanp/nerdtree-git-plugin | |
airblade/vim-gitgutter | |
airblade/vim-rooter | |
arcticicestudio/nord-vim | |
fatih/vim-go | |
fidian/hexmode | |
godlygeek/tabular |