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
| { | |
| "defaultMinSharePreemptionTimeout": null, | |
| "defaultQueueSchedulingPolicy": null, | |
| "fairSharePreemptionTimeout": null, | |
| "queueMaxAppsDefault": null, | |
| "queuePlacementRules": [], | |
| "queues": [ | |
| { | |
| "aclAdministerApps": "yarn ", | |
| "aclSubmitApps": "apps,storm,sqoop2 ", |
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
| [Sh] | |
| if=if [ %cursor% ]; then\n\t\nfi | |
| elif=elif [ %cursor% ]; then\n\t | |
| else=else\n\t | |
| for=for %cursor% in %cursor%; do\n\t\ndone | |
| func=function %cursor%() {\n\t\n} | |
| while=while [ %cursor% ]; do\n\t\ndone | |
| until=until [ %cursor% ]; do\n\t\ndone | |
| case=case %cursor% in\n\tval)\n\t\t;;\n\t*)\n\t\t;;\nesac | |
| select=select %cursor% in %cursor%; do\n\t\ndone |
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
| set nocompatible | |
| set encoding=utf-8 | |
| execute pathogen#infect() | |
| call pathogen#incubate() | |
| syntax on | |
| filetype plugin indent on | |
| set number | |
| colorscheme molokai | |
| "set expandtab sw=4 ts=4 sts=4 | |
| set sw=4 ts=4 sts=4 |
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
| # | |
| # Copyright Bernhard Posselt <bernhard.posselt(at)gmx(dot)at> | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
| # Install bash_completion first | |
| # Place this file in /etc/profile.d | |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| [ -z "$PS1" ] && return |
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 python | |
| # taken from: http://stackoverflow.com/questions/7039114/waiting-animation-in-command-prompt-python | |
| import threading | |
| import time | |
| class CursorAnimation(threading.Thread): | |
| def __init__(self): | |
| self.flag = True |
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
| <?xml version='1.0'?> | |
| <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit mode="assign" name="rgba"> | |
| <const>rgb</const> | |
| </edit> | |
| </match> | |
| <match target="font"> | |
| <edit mode="assign" name="hinting"> |
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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <!DOCTYPE html> | |
| <html b:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'> | |
| <head> | |
| <meta content='IE=EmulateIE7' http-equiv='X-UA-Compatible'/> | |
| <b:if cond='data:blog.isMobile'> | |
| <meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/> | |
| <b:else/> | |
| <meta content='width=1100' name='viewport'/> | |
| </b:if> |
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 "iconrc" | |
| gtk-error-bell=0 | |
| gtk-icon-sizes = "panel-menu=16,16:gtk-menu=16,16:gtk-button=16,16:gtk-small-toolbar=16,16:gtk-large-toolbar=16,16:gtk-dialog=32,32:gtk-dnd=32,32" | |
| style "default" | |
| { | |
| bg[NORMAL] = "#e8e9ed" | |
| bg[PRELIGHT] = "#e9ecf2" |
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
| " An example for a vimrc file. | |
| " | |
| " Maintainer: Bram Moolenaar <Bram@vim.org> | |
| " Last change: 2008 Dec 17 | |
| " | |
| " To use it, copy it to | |
| " for Unix and OS/2: ~/.vimrc | |
| " for Amiga: s:.vimrc | |
| " for MS-DOS and Win32: $VIM\_vimrc | |
| " for OpenVMS: sys$login:.vimrc |