Github will be the main account and bitbucket the secondary.
ssh-keygen -t rsa -C "github email"
Enter passphrase when prompted. If you see an option to save the passphrase in your keychain, do it for an easier life.
[innotec@innotec ~]$ export LANG=en_US.UTF-8 | |
[innotec@innotec ~]$ sudo localectl set-locale LANG=en_US.UTF-8 | |
[innotec@innotec ~]$ locale | |
LANG=en_US.UTF-8 | |
LC_CTYPE="en_US.UTF-8" | |
LC_NUMERIC="en_US.UTF-8" | |
LC_TIME="en_US.UTF-8" | |
LC_COLLATE="en_US.UTF-8" | |
LC_MONETARY="en_US.UTF-8" | |
LC_MESSAGES="en_US.UTF-8" |
[innotec@innotec ~]$ locate teamviewerd | |
/etc/init/teamviewerd.conf | |
/opt/teamviewer8/logfiles/install_teamviewerd.log | |
/opt/teamviewer8/tv_bin/teamviewerd | |
/opt/teamviewer8/tv_bin/script/teamviewerd.conf | |
/opt/teamviewer8/tv_bin/script/teamviewerd.service | |
/opt/teamviewer8/tv_bin/script/teamviewerd.sysv | |
/opt/teamviewer8/tv_bin/script/teamviewerdMint.conf | |
[innotec@innotec ~]$ sudo /opt/teamviewer/tv_bin/teamviewerd start | |
[innotec@innotec ~]$ teamviewer |
# Sublime Text 3 Keyboard Shortcuts | |
## Text | |
CTRL-L: Select Entire Line | |
CTRL-D: Select Word | |
CTRL-SHIFT-A: Select text inside HTML Tags | |
CTRL-SHIFT-J: Select code that's indented to same level | |
CTRL-] / CTRL-[: Increase Indent / Decrease Indent | |
CTRL-SHIFT-V: Paste matching indentation | |
CTRL-CTRL-UP / CTRL-CTRL-DOWN: Move line up / Move Line down |
#!/bin/sh | |
# -*- MAINTAINER -*- Lasha Gogua [email protected] | |
# -*- RUN -*- $ bash install.sh | |
# system update and install epel package | |
yum install epel-release | |
# or | |
wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm |
snake=""" | |
.-=-. .--. | |
__ .' '. / " ) | |
_ .' '. / .-. \ / .-'\ | |
( \ / .-. \ / / \ \ / / ^ | |
\ `-` / \ `-' / \ `-` / | |
\---` '.____.' `.____.' | |
2016 | |
""" |
Python | |
-- IDLE | |
-- Pip | |
-- Virtuelenv | |
-- Django | |
-- etc. | |
Text Editor | |
-- Sublime Text 3 | |
-- Package Control |
building '_ssl' extension | |
gcc -pthread -fPIC -Wno-unused-result -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I./Include -I. -IInclude -I/usr/local/include -I/opt/Python-3.3.3/Include -I/opt/Python-3.3.3 -c /opt/Python-3.3.3/Modules/_ssl.c -o build/temp.linux-x86_64-3.3/opt/Python-3.3.3/Modules/_ssl.o | |
/opt/Python-3.3.3/Modules/_ssl.c: In function ‘context_new’: | |
/opt/Python-3.3.3/Modules/_ssl.c:1751:27: warning: implicit declaration of function ‘SSLv3_method’ [-Wimplicit-function-declaration] | |
ctx = SSL_CTX_new(SSLv3_method()); | |
^ | |
/opt/Python-3.3.3/Modules/_ssl.c:1751:27: warning: passing argument 1 of ‘SSL_CTX_new’ makes pointer from integer without a cast [-Wint-conversion] | |
In file included from /opt/Python-3.3.3/Modules/_ssl.c:108:0: | |
/usr/include/openssl/ssl.h:2131:10: note: expected ‘const SSL_METHOD * {aka const struct ssl_method_st *} |
{ | |
"node_path": { | |
"linux": "/usr/bin/node", | |
}, | |
"format_on_save": false, | |
"format_selection_only": true, | |
"print_diagnostics": true |