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
/* эта секция для того, чтобы настроить прозрачный фон чатика.*/ | |
.chat-container .content-window .bg-block { | |
display: none; | |
} | |
.chat-container .chat-control-block { | |
display: none; | |
} | |
.chat-container { |
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
another gist |
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
text | |
goes | |
here |
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
def dirTree( path, pipes = '' ) | |
currentDirectory = Dir.new(path) | |
currentDirectory.sort.each.with_index do |file,index| | |
if file != '.' and file != '..' | |
if index == currentDirectory.sort.size - 1 | |
predictor = '└───' | |
nextChar = ' ' | |
else | |
predictor = '├───' | |
nextChar = '│' |
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
$ ansible-playbook -i ./inventory setup_ssh.yaml -vvv | |
Using /vagrant/ansible.cfg as config file | |
1 plays in setup_backend_test.yaml | |
PLAY [Configure backend packages] ********************************************** | |
TASK [setup] ******************************************************************* | |
Wednesday 27 July 2016 07:36:39 +0000 (0:00:00.074) 0:00:00.074 ******** | |
<XXX.XXX.XXX.XXX> ESTABLISH SSH CONNECTION FOR USER: myuser | |
<XXX.XXX.XXX.XXX> SSH: EXEC ssh -C -q -o ForwardAgent=yes -o StrictHostKeyChecking=no -o 'IdentityFile="/home/vagrant/.ssh/id_rsa"' -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=myuser -o ConnectTimeout=10 -tt XXX.XXX.XXX.XXX '( umask 22 && mkdir -p "$( echo $HOME/.ansible/tmp/ansible-tmp-1469605000.03-213668475730631 )" && echo "$( echo $HOME/.ansible/tmp/ansible-tmp-1469605000.03-213668475730631 )" )' |