I hereby claim:
- I am timofurrer on github.
- I am tuxtimo (https://keybase.io/tuxtimo) on keybase.
- I have a public key whose fingerprint is CFC6 2A1D 8884 01A1 93E2 7DFA 9670 4219 D330 4F22
To claim this, I am signing this object:
# Path to your oh-my-zsh installation. | |
#export ZSH=/home/users/furrert/.oh-my-zsh | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
#ZSH_THEME="gallois" | |
#ZSH_THEME="flazz" |
(function(module) { | |
var localStorage = function($window) { | |
var storage = $window.localStorage; | |
var set = function(key, value) { | |
storage.setItem(key, angular.toJson(value)); | |
}; | |
var get = function(key) { | |
var value = storage.getItem(key); |
# Path to your oh-my-zsh installation. | |
#export ZSH=/home/users/furrert/.oh-my-zsh | |
export ZSH=$HOME/.oh-my-zsh | |
export TERM="xterm-256color" | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
#ZSH_THEME="gallois" |
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME.oh-my-zsh | |
ZSH_THEME="tuxtimo" | |
# use 256 colors | |
export TERM="xterm-256color" | |
# Uncomment the following line to use case-sensitive completion. | |
CASE_SENSITIVE="true" |
versions pytest-2.9.2, py-1.4.31, python-2.7.11.final.0 | |
cwd=/home/tuxtimo/work/sure-issues/issue-74 | |
args=['test_demo.py', '--junit-xml=junit_bad.xml', '--debug', '-v'] | |
pytest_cmdline_main [hook] | |
config: <_pytest.config.Config object at 0x7f40a77a5f50> | |
pytest_plugin_registered [hook] | |
manager: <_pytest.config.PytestPluginManager object at 0x7f40a77a56d0> | |
plugin: <Session 'issue-74'> | |
finish pytest_plugin_registered --> [] [hook] |
# oh-my-zsh Bureau Theme | |
### NVM | |
ZSH_THEME_NVM_PROMPT_PREFIX="%B⬡%b " | |
ZSH_THEME_NVM_PROMPT_SUFFIX="" | |
### Git [±master ▾●] | |
ZSH_THEME_GIT_PROMPT_PREFIX="[%{$fg_bold[green]%}±%{$reset_color%}%{$fg_bold[white]%}" |
# use a dark grey color for the suggestions | |
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=243" | |
# set keybinding to CTRL + Space | |
bindkey '^ ' autosuggest-accept |
I hereby claim:
To claim this, I am signing this object:
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
def foo(f): | |
print("Foo is called") | |
def _wrapper(): | |
print("Foo wrapper is called") | |
f() | |
return _wrapper | |
def bar(f): | |
print("Bar is called") |