Skip to content

Instantly share code, notes, and snippets.

View szczad's full-sized avatar
🔥
I wish you were here 💣

Grzegorz Szczudlik szczad

🔥
I wish you were here 💣
  • Ingenix.AI
  • Warsaw, Poland
View GitHub Profile
@szczad
szczad / git_aliases.bash
Last active October 14, 2021 08:53
git aliases
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'
# 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
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
@szczad
szczad / tmux.theme
Last active October 17, 2020 17:43
#
# Powerline Double Cyan - Tmux Theme
# Created by Jim Myhrberg <contact@jimeh.me>.
#
# 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
#
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
@szczad
szczad / tmux.conf
Last active October 31, 2020 23:23
# 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
@szczad
szczad / .vimrc
Last active October 12, 2021 08:49
vim config
" 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'