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
#!/bin/bash | |
#скрипт для нарезки картинки на куски с разделителем "белая линия" | |
fname="$1" | |
tmp="tmp/" | |
delimeter="white" | |
check(){ | |
echo $1 | |
echo "$2" |
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
└─[$] <> bin/check_swap | |
PID=1 swapped 1116 KB (systemd) | |
PID=180 swapped 468 KB (systemd-journal) | |
PID=196 swapped 1024 KB (systemd-udevd) | |
PID=225 swapped 384 KB (systemd-network) | |
PID=425 swapped 432 KB (systemd-timesyn) | |
PID=426 swapped 448 KB (rpcbind) | |
PID=439 swapped 244 KB (atd) | |
PID=442 swapped 764 KB (rsyslogd) | |
PID=444 swapped 384 KB (dbus-daemon) |
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
ShareDVI 🐱 /enL9/myL10/ 🇺🇦, [13.07.16 20:44] | |
[Forwarded from Pokemon Go Russia] | |
10 с половиной советов, которые я хотел бы услышать 22 уровня назад. (https://www.reddit.com/r/TheSilphRoad/comments/4slo67/10_things_i_wish_i_knew_22_levels_ago_some_tips/) | |
Автор — /u/ryanvango (https://www.reddit.com/user/ryanvango) с реддита The Silph Road (https://www.reddit.com/r/TheSilphRoad/). | |
1. Не тратьте пыль _(Stardust)_. | |
В начале пыли много, а усиление (Power-up) дешёвое. Не поддавайтесь на искушение! Вы быстро прокачаетесь и поймаете покемонов с лучшим базовым CP. Дальше будет больше на эту тему. | |
2. Арены? Поначалу игнорируйте их. | |
Около 10 уровня (зависит от того, где вы живёте и каких покемонов ловите) вы можете внести свой вклад в "войнушку", но не спешите. Первые 10 уровней лучше ловите, фармите, учитесь, изучайте местность. | |
С 10-15 уровня или пройдитесь по району с парой сокомандников и отбейте арены, или найдите арены вашей команды и прокачайте их тренировками, оставив там своего покемона. Каждая арена, где ес |
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
import sys | |
import transmissionrpc | |
import re | |
import os | |
def find_bed_torrents(): | |
#CLIENT_NAME = "transmission" | |
DEFAULT_URL = "http://localhost:9091/transmission/rpc" |
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
# My functions (don't forget to modify fpath before call compinit !!) | |
fpath=($HOME/.zsh/functions $fpath) | |
##Биндинг клавиш | |
bindkey -e | |
bindkey '^I' complete-word # complete on tab, leave expansion to _expand | |
#Исправление клавиш |
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
/* Just some base styles not needed for example to function */ | |
/* Source: http://www.thecssninja.com/css/css-tree-menu*/ | |
*, html { font-family: Verdana, Arial, Helvetica, sans-serif; } | |
body, form, ul, li, p, h1, h2, h3, h4, h5 | |
{ | |
margin: 0; | |
padding: 0; | |
} | |
body { background-color: #606061; color: #ffffff; margin: 0; } |
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
user@netbook:~/git/rtfetch$ python -v -c 'from rtlib import tfile' | |
# installing zipimport hook | |
import zipimport # builtin | |
# installed zipimport hook | |
# /usr/lib/python2.7/site.pyc matches /usr/lib/python2.7/site.py | |
import site # precompiled from /usr/lib/python2.7/site.pyc | |
# /usr/lib/python2.7/os.pyc matches /usr/lib/python2.7/os.py | |
import os # precompiled from /usr/lib/python2.7/os.pyc | |
import errno # builtin | |
import posix # builtin |