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
| functions -c fish_prompt _raw_fish_prompt | |
| function fish_prompt | |
| string replace user@MACHINE … (_raw_fish_prompt) | |
| end | |
| set -x LANG en_GB.UTF-8 | |
| alias v=vim |
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
| # This is Git's per-user configuration file. | |
| [user] | |
| name = Dima Tisnek | |
| email = [email protected] | |
| [alias] | |
| tree = log --all --decorate --oneline --graph | |
| ls = log --decorate --graph | |
| st = status | |
| branchdate = for-each-ref --sort='-committerdate:iso8601' --format=' %(committerdate:iso8601)%09%(refname)' refs/heads | |
| [diff "minjs"] |
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
| name: "Docker Tag" | |
| description: "Computes docker tag for this branch (latest,release,etc.)" | |
| outputs: | |
| tag: | |
| description: "Docker tag for this branch" | |
| runs: | |
| using: "node16" | |
| main: "main.js" |
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
| """Proposal Temporal Duration in Python""" | |
| ISO_8601_PERIOD = re.compile( | |
| r""" | |
| ^ | |
| ((?P<sign>-)|[+])? | |
| P | |
| ((?P<years>\d+)Y)? | |
| ((?P<months>\d+)M)? | |
| ((?P<weeks>\d+)W)? |
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
| [...document.getElementsByTagName("div")].filter(e => e.getAttribute("data-testid") === "comment-top-meta").filter(e => /dimaqqqq[\n]*-?[012345] point/.exec(e.innerText)).map(e => {e.style.border = "2px solid yellow"}) |
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
| # This is Git's per-user configuration file. | |
| [user] | |
| name = Dima Tisnek | |
| email = [email protected] | |
| [alias] | |
| tree = log --all --decorate --oneline --graph | |
| ls = log --decorate --graph | |
| st = status | |
| branchdate = for-each-ref --sort='-committerdate:iso8601' --format=' %(committerdate:iso8601)%09%(refname)' refs/heads | |
| [diff "minjs"] |
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
| " -*- coding: utf-8 -*- | |
| " scriptencoding utf-8 | |
| set termencoding=utf-8 | |
| set termguicolors | |
| set encoding=utf-8 | |
| setglobal fileencoding=utf-8 | |
| syntax on | |
| set hls | |
| set expandtab | |
| set colorcolumn=88 |
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
| alias v=vim | |
| alias fd=fdfind | |
| alias v=vim | |
| #alias top=htop | |
| alias gc="git commit" | |
| alias gcam="git commit -am" |