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
| key_move_song_up = 'K' | |
| key_move_song_down = 'J' | |
| key_next_found_position = 'n' | |
| key_prev_found_position = 'N' | |
| key_prev_column = 260 'h' | |
| key_next_column = 261 'l' | |
| key_lyrics = '.' | |
| key_home = 262 'g' | |
| key_end = 360 'G' |
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
| struct Z {}; | |
| template <typename N> | |
| struct S {}; | |
| template <typename A, typename B> | |
| struct Add {}; | |
| template <typename B> | |
| struct Add<Z, B> { |
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
| import XMonad | |
| import XMonad.StackSet (sink) | |
| import XMonad.Layout.Named (named) | |
| import XMonad.Layout.NoBorders (smartBorders) | |
| import XMonad.Layout.Reflect (reflectHoriz) | |
| import XMonad.Layout.IM (withIM, Property(..)) | |
| import XMonad.Layout.ToggleLayouts (toggleLayouts, ToggleLayout(..)) | |
| import XMonad.Layout.ThreeColumns (ThreeCol(..)) | |
| import XMonad.Layout.Tabbed (tabbedBottom, defaultTheme, activeColor, inactiveColor, | |
| urgentColor, activeTextColor, inactiveTextColor, urgentTextColor, activeBorderColor, |
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 bash | |
| tmux list-panes | awk ' | |
| BEGIN { | |
| largest_area=0 | |
| largest_id=0 | |
| active_id=0 | |
| } | |
| match($2, /\[([0-9]+)x([0-9]+)\]/, dim) { | |
| area=dim[1]*dim[2] |
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
| " Soft's .vimrc | |
| " Useful plugins: indent-object, NERD_tree, NERD_commenter, delimitMate, | |
| " snipMate, surround, Command-T, EasyMotion | |
| " Nice colorschemes: Herald, Neverland, Mustang, Molokai | |
| set nocompatible | |
| if has("gui_win32") | |
| source $VIMRUNTIME/mswin.vim | |
| behave mswin |
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
| .entry-content, | |
| .entries, | |
| .feeds { | |
| scrollbar-width: thin; | |
| } | |
| .theme-sunset .entry-content, | |
| .theme-sunset .entries, | |
| .theme-sunset .feeds { | |
| scrollbar-color: #F2EEDB #F9F7EE; |
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 python3 | |
| from operator import add | |
| def map_t(fn): | |
| def trans(reducer): | |
| def result(acc, input): | |
| return reducer(acc, fn(input)) |
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
| CC="clang" | |
| CXX="clang++" | |
| LD="clang" | |
| LDFLAGS="-fsanitize=undefined,address" | |
| CFLAGS="-march=native -O2 -pipe -fsanitize=undefined,address -ggdb" | |
| CXXFLAGS="${CFLAGS}" | |
| LDFLAGS="-fsanitize=undefined,address" | |
| FEATURES="${FEATURES} splitdebug installsources" | |
| USE="debug" |
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
| /* XPM */ | |
| static char *test_big[] = { | |
| /* columns rows colors chars-per-pixel */ | |
| "64 64 3 1 ", | |
| " c col1", | |
| ". c col2", | |
| "X c col3", | |
| /* pixels */ | |
| "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX....", | |
| "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX....", |
NewerOlder