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
Первое в духовной жизни есть любовь к Богу, а второе — | |
любовь к ближнему. Когда приложен первый и великий | |
труд, тогда второе, как меньшее, с легчайшим трудом | |
следует за первым. А без первого и второе не может быть | |
чисто. Ибо кто не любит Бога от всей души и от всего | |
сердца, тот приложит ли правильно и без лести попечение | |
о любви к братьям? | |
прп. Макарий Великий |
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
for i in $(find ./ -type f -name *.txt); do git mv $i ${i%txt}hip; done |
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
echo "PATH=\"$1:\$PATH\" && export PATH" >> ~/.profile | |
source ~/.profile |
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
data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
<img width="1" height="1" title="" alt="" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /> |
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
email address | |
^\w*([A-Z0-9._%-]+@([A-Z0-9\-]\.)+[A-Z]{2,6})\w*$ | |
options: case insensitive | |
При сохранении имейла надо сохранять только группу схваченную в скобках. | |
По бокам допускаются пробельное пространство. | |
password with at least 8 characters | |
containing at least one digit or punctuation mark, one upper case and one lower case letter | |
^(?=.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).* | |
(?![.\n]) means that the pattern doesn't match password if it contains dot or new line char |
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
<style type="text/css"> | |
/* MetaWebPro font family licensed from fontshop.com. WOFF-FTW! */ | |
@font-face { | |
font-family: 'MetaWebPro-Book'; | |
src: url('http://www.mozilla.com/img/fonts/MetaWebPro-Book.woff') format('woff'); | |
} | |
@font-face { |
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
<% if Now() < cdate("20/09/2010 14:53:00") then | |
'ДД/ММ/ГГГГ ЧЧ:ММ:СС' %> | |
<!-- | |
Разметка внутри этой инструкции if | |
будет появляться только до 20.09.2010 | |
до 14:53:00. | |
--> | |
<% end if %> |
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
# For Windows: | |
#alias vi="/c/Program\ Files\ \(x86\)/Vim/vim73/gvim.exe" | |
#alias vim="/c/Program\ Files\ \(x86\)/Vim/vim73/gvim.exe" | |
#alias gvim="/c/Program\ Files\ \(x86\)/Vim/vim73/gvim.exe" | |
# For Linux: | |
#alias vi="/usr/bin/gvim" | |
#alias vim="/usr/bin/gvim" | |
#export PYTHONPATH="/home/andrei/repogitories/" |
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
" hide hidden chars | |
:set nolist | |
" show hidden characters in Vim | |
:set list | |
" settings for hidden chars | |
" what particular chars they are displayed with | |
:set lcs=tab:▒░,trail:▓,nbsp:░ | |
" or |