One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| DISPLAY=:0 /usr/bin/chromium-browser \ | |
| --user-data-dir=/tmp/browser-2 \ | |
| --new-window \ | |
| --window-position=3840,0 \ | |
| --disk-cache-dir=/dev/null \ | |
| --incognito \ | |
| --disable-infobars \ | |
| --noerrdialogs \ | |
| --kiosk \ | |
| http://localhost:8012/screen-2 & |
| #handles both HTTP and www canonical redirects | |
| # change the "302" to "301" only after you are sure it's working | |
| RewriteEngine On | |
| RewriteCond %{HTTPS} !on [OR] | |
| RewriteCond %{HTTP_HOST} ^www\. [NC] | |
| RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=302,L,NE] |
| :: place in bin/data dir | |
| taskkill /f /IM /myAppName.exe | |
| timeout /t 3 | |
| start %~dp0\..\myAppName.exe |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| body { | |
| display: flex; | |
| flex-wrap: wrap; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-3.1.0.js"></script> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| #output { |
| <!-- Hiding Safari User Interface Components --> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <!-- to set the viewport width to the width of the device, add this to your HTML file: --> | |
| <meta name="viewport" content="width=device-width"> | |
| <!-- to set the initial scale to 1.0, add this to your HTML file: --> | |
| <meta name="viewport" content="initial-scale=1.0"> | |
| <!-- to set the initial scale and to turn off user scaling, add this to your HTML file: --> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>State Machine Example</title> | |
| <style id="jsbin-css"> | |
| #status { | |
| font-size: 32px; | |
| height: 100px; |
| void ofApp::update() | |
| { | |
| // snippet start | |
| std::stringstream strm; | |
| strm << "fps: " << ofGetFrameRate(); | |
| ofSetWindowTitle(strm.str()); | |
| // snippet end | |
| } |
| (* | |
| [APPLESCRIPT FOR EVERNOTE] | |
| EXAMPLE FOR SEARCHING FOR NOTEBOOKS & NOTES | |
| * by mmansion | |
| * last updated 2017.04.23 | |
| *) | |
| ---------------------------------------- |