Skip to content

Instantly share code, notes, and snippets.

View sys27's full-sized avatar
:octocat:
Pew-pew-pew

Dmytro Kyshchenko sys27

:octocat:
Pew-pew-pew
View GitHub Profile
set-option -sa terminal-overrides ",xterm*:Tc"
set -g mouse on
# index = 1
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
# List of plugins
@sys27
sys27 / settings.json
Last active December 20, 2023 13:05
ublock
{
"timeStamp": 1703077297628,
"version": "1.54.0",
"userSettings": {
"advancedUserEnabled": true,
"cloudStorageEnabled": true,
"importedLists": [],
"popupPanelSections": 63
},
"selectedFilterLists": [
@sys27
sys27 / filter_list.txt
Last active July 13, 2023 13:01
AdBlock Filter List
[Adblock Plus 2.0]
! Version:
! Title:
! Last modified:
! Expires: 1 days (update frequency)
! Homepage:
!
habr.com##DIV[class="page-header__banner"]
rutracker.org##DIV[class*="bn-idx-ali"]
rutracker.org##DIV[class="bn-t-ali"]
@sys27
sys27 / hosts
Last active March 8, 2024 11:44
pi-hole hosts
# pi-hole hosts
0.0.0.0 1x-bet.com
0.0.0.0 ua-1x-bet.com
0.0.0.0 advg.agency
0.0.0.0 cdn.advg.agency
0.0.0.0 agorov.org
0.0.0.0 a50.agorov.org
0.0.0.0 ozwvd.com
0.0.0.0 viiotp.com
@sys27
sys27 / nullable.cs
Last active December 25, 2019 11:55
static void A(Predicate<object> match)
{
if (match == null)
{
Helper();
}
match("");
}
@sys27
sys27 / .gitconfig
Last active November 2, 2023 19:25
GIT
[alias]
co = checkout
c = commit
st = status
br = branch
s = stash
pop = stash pop
fa = fetch --all
pr = pull -r
spr = !git stash && git pull -r && git stash pop