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
" Vundle installation: https://github.com/VundleVim/Vundle.vim#quick-start | |
" Vundle begin | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin('~/.vim/bundle/') | |
Bundle 'edkolev/promptline.vim' | |
Plugin 'VundleVim/Vundle.vim' |
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
# Set terminal options | |
set -g default-terminal "screen-256color" | |
set -g set-titles on | |
set -g history-limit 50000 | |
set -g display-time 4000 | |
set -g mouse on | |
# Address vim mode switching delay (http://superuser.com/a/252717/65504) | |
set -s escape-time 0 |
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
org.openqa.selenium.SessionNotCreatedException: Unable to create a new remote session. Original error: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | |
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:17:03' | |
System info: host: 'VCFCVIEW030673', ip: '10.109.113.133', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_202-release' | |
Driver info: driver.version: AndroidDriver | |
at io.appium.java_client.remote.AppiumCommandExecutor$1.createSession(AppiumCommandExecutor.java:208) | |
at io.appium.java_client.remote.AppiumCommandExecutor.createSession(AppiumCommandExecutor.java:217) | |
at io.appium.java_client.remote.AppiumCommandExecutor.execute(AppiumCommandExecutor.java:239) | |
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:552) | |
at io.appium.java_client.DefaultGenericMobileDriver.execute(DefaultGen |
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
# | |
# Powerline Double Cyan - Tmux Theme | |
# Created by Jim Myhrberg <[email protected]>. | |
# | |
# Inspired by vim-powerline: https://github.com/Lokaltog/powerline | |
# | |
# Requires terminal to be using a powerline compatible font, find one here: | |
# https://github.com/Lokaltog/powerline-fonts | |
# |
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
font: | |
size: 15.0 | |
# size: 21.0 | |
use_thin_strokes: false | |
normal: | |
family: InconsolataGo Nerd Font | |
style: Medium | |
bold: | |
family: InconsolataGo Nerd Font | |
style: Bold |
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
# Set terminal options | |
set -g default-terminal "screen-256color" | |
set -g set-titles on | |
set -g history-limit 50000 | |
set -g display-time 4000 | |
set -g mouse on | |
# Address vim mode switching delay (http://superuser.com/a/252717/65504) | |
set -s escape-time 0 |
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
alias g='git' | |
alias ga='git add' | |
alias gall='git add -A' | |
alias gap='git add -p' | |
alias gb='git branch' | |
alias gbD='git branch -D' | |
alias gba='git branch -a' | |
alias gbc='git for-each-ref --format="%(authorname) %09 %(if)%(HEAD)%(then)*%(else)%(refname:short)%(end) %09 %(creatordate)" refs/remotes/ --sort=authorname DESC' | |
alias gbd='git branch -d' | |
alias gbm='git branch -m' |