start new:
tmux
start new with session name:
tmux new -s myname
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
| import os | |
| import ycm_core | |
| flags = [ | |
| '-Wall', | |
| '-std=c++11', | |
| # ...and the same thing goes for the magic -x option which specifies the | |
| # language that the files to be compiled are written in. This is mostly |