Open a console. Terminal.app on Macs, your shell or whatever on PCs.
Python is easiest:
python -m SimpleHTTPServer 8000
Then go to http://localhost:8000/ in a web browser.
| console.log('Loading event'); | |
| // Twilio Credentials | |
| var accountSid = ''; | |
| var authToken = ''; | |
| var fromNumber = ''; | |
| var https = require('https'); | |
| var queryString = require('querystring'); |
| <?php | |
| // template for setting CURL proxy options for OpenVBX | |
| // add the configuration lines below to the file | |
| // `OpenVBX/libraries/OpenVBX.php` on line 375 with the | |
| // config below and then enter the values for your Proxy | |
| // proxy type | |
| $_proxy_type = 'HTTP'; // proxy type | |
| // The address of your proxy server |
| #!/bin/bash | |
| ### USAGE | |
| ### | |
| ### ./ElasticSearch.sh 1.7 will install Elasticsearch 1.7 | |
| ### ./ElasticSearch.sh will fail because no version was specified (exit code 1) | |
| ### | |
| ### CLI options Contributed by @janpieper | |
| ### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch |
| cd ~ | |
| ##If you want to install OpenJDK | |
| #sudo apt-get update | |
| #sudo apt-get install openjdk-8-jre-headless -y | |
| ###Or if you want to install Oracle JDK, which seems to have slightly better performance | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install oracle-java8-installer |