###SSH into a remote machine###
ssh user@mydomain.com
#or by ip address
ssh user@192.168.1.1
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing
###SSH into a remote machine###
ssh user@mydomain.com
#or by ip address
ssh user@192.168.1.1
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing
| * { cursor: progress !important; pointer-events: none !important; } | |
| *::selection { background: none !important; } |
| <nav> | |
| <ul> | |
| <li {{#ifpage 'index'}}class="active"{{/ifpage}}><a href="index.html">Home</a></li> | |
| <li {{#ifpage 'services'}}class="active"{{/ifpage}}><a href="services.html">Services</a></li> | |
| <li {{#ifpage 'about-us'}}class="active"{{/ifpage}}><a href="about-us.html">About Us</a></li> | |
| <li {{#ifpage 'contact-us'}}class="active"{{/ifpage}}><a href="contact-us.html">Contact Us</a></li> | |
| </ul> | |
| </nav> |
| # editorconfig.org | |
| root = true | |
| [*] | |
| indent_style = tabs | |
| indent_size = 1 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true |
| /* Track outbound links -- https://support.google.com/analytics/answer/1136920?hl=en */ | |
| /* Add second onclick event after original and return false for both */ | |
| <input type="submit" onclick="(function(x){return x;})(this); trackOutboundLink('http://website.com'); return false;"> | |
| <script> | |
| (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= | |
| function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; | |
| e=o.createElement(i);r=o.getElementsByTagName(i)[0]; | |
| e.src='https://www.google-analytics.com/analytics.js'; |
| // This changes the bracket syntax of Angular applications. | |
| // Useful if you are using another templating system that uses {{}} brackets Ex. Handlebars | |
| appModule.config(function($interpolateProvider) { | |
| $interpolateProvider.startSymbol('{['); | |
| $interpolateProvider.endSymbol(']}'); | |
| }); |
| <!-- Credit Cards --> | |
| <i class="fa fa-cc-visa"></i> | |
| <i class="fa fa-cc-mastercard"></i> | |
| <i class="fa fa-cc-discover"></i> | |
| <i class="fa fa-cc-amex"></i> | |
| <i class="fa fa-credit-card"></i> | |
| <i class="fa fa-credit-card-alt"></i> | |
| <!-- Social Media --> |
| <a href="#contact" class="smooth">Scroll to #contact</a> | |
| <div id="contact"> | |
| Contact! | |
| </div> |
| The MIT License (MIT) | |
| Copyright (c) Zachary Minner <1forhlol@gmail.com> (zacharyminner.com) | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| -webkit-justify-content: space-around; | |
| -ms-flex-pack: distribute; | |
| justify-content: space-around; |