start new:
tmux
start new with session name:
tmux new -s myname
# add remove command in .bashrc | |
# remove python | |
alias remove-python="sudo rm -rf /usr/local/lib/python3.3 && sudo rm -rf /usr/local/lib/libpython3.3m.a && sudo rm -rf /usr/local/lib/pkgconfig/python-3.3.pc && sudo rm -rf /usr/local/bin/python3.3 && sudo rm -rf /usr/local/bin/python3.3m && sudo rm -rf /usr/local/bin/python3.3m-config" | |
# remove pip | |
alias remove-pypi="sudo python3.3 -m pip uninstall pip" | |
# or | |
alias remove-pip="sudo rm -rf /usr/lib/python3.3/site-packages/pip && sudo rm -rf /usr/lib/python3.3/site-packages/pip-8.1.0.dist-info" |
{ | |
"node_path": { | |
"linux": "/usr/bin/node", | |
}, | |
"format_on_save": false, | |
"format_selection_only": true, | |
"print_diagnostics": true |
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 *} |
Python | |
-- IDLE | |
-- Pip | |
-- Virtuelenv | |
-- Django | |
-- etc. | |
Text Editor | |
-- Sublime Text 3 | |
-- Package Control |
snake=""" | |
.-=-. .--. | |
__ .' '. / " ) | |
_ .' '. / .-. \ / .-'\ | |
( \ / .-. \ / / \ \ / / ^ | |
\ `-` / \ `-' / \ `-` / | |
\---` '.____.' `.____.' | |
2016 | |
""" |
#!/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 |
# 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 |
[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 |