agnoster.zsh-theme
A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
#ZDF | |
http://zdf0304-lh.akamaihd.net/i/de03_v1@392855/master.m3u8?dw=0 | |
http://zdf0304-lh.akamaihd.net/i/de04_v1@392856/master.m3u8?dw=0 | |
http://zdf0506-lh.akamaihd.net/i/de05_v1@392857/master.m3u8?dw=0 | |
http://zdf0506-lh.akamaihd.net/i/de06_v1@392858/master.m3u8?dw=0 | |
http://zdf0708-lh.akamaihd.net/i/de07_v1@392868/master.m3u8?dw=0 | |
http://zdf0708-lh.akamaihd.net/i/de08_v1@392869/master.m3u8?dw=0 | |
#NDR Spezial | |
http://ndr_spezial-lh.akamaihd.net/i/spezial_1@119227/master.m3u8 | |
http://ndr_spezial-lh.akamaihd.net/i/spezial_2@119228/master.m3u8 |
static void escape(void* p) { | |
asm volatile("" : : "g"(p) : "memory"); | |
} | |
static void clobber() { | |
asm volatile("" : : : "memory"); | |
} |
#include "stdio.h" | |
#include "stdlib.h" | |
unsigned int max(unsigned int a, unsigned int b) { | |
return a > b ? a : b; | |
} | |
unsigned int bucket(unsigned int val) { | |
return val & 0xF0000000 >> 28; | |
} |
Put in (Preferences -> Key Bindings - User): | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" } |
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
#define XLIM 17 | |
#define YLIM 9 | |
#define ARSZ (XLIM * YLIM) | |
#define DEBUG 0 |
A ZSH theme optimized for people who use:
For Mac users, I highly recommend iTerm 2 + Solarized Dark
# | |
# my zsh theme with iTerm titlebar manip. | |
# see video to see the bug I have.. any help would be HUGELY appreciated :) | |
# http://youtu.be/U-h9XCCq0q4 | |
# | |
# also | |
# https://github.com/sjl/oh-my-zsh/ | |
# http://sage.ucsc.edu/xtal/iterm_tab_customization.html |