Create a websites user.
sudo adduser --disabled-password --home /src/websites websites
Login and install dropbox.
sudo -s su - websites
| <html> | |
| <head> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.2/underscore-min.js"></script> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> | |
| <script src="//ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script> | |
| <!-- | |
| TODO: |
| @echo off | |
| REM # Send To Backup Script | |
| REM # Author - Matt Little (http://matthewjlittle.com) | |
| REM # Adam Caudill (http://adamcaudill.com) | |
| REM # | |
| REM # To install: | |
| REM # | |
| REM # (windows 7): | |
| REM # Goto Start->Run. Type in shell:sendto |
| #include <SFML\Graphics.hpp> | |
| #include <vector> | |
| #include <cstdlib> | |
| #include <ctime> | |
| #include <thread> | |
| #include <mutex> | |
| void populateVector(std::vector<float>& vector, const int size); | |
| void renderVectorItem(sf::RenderWindow& window, std::vector<float>& vector, const int index, const int offset, bool highlight, const float y); | |
| void visualSelectionSort(sf::RenderWindow& window, std::vector<float>& vector, std::vector<float>& sorted); |