Skip to content

Instantly share code, notes, and snippets.

View silverbux's full-sized avatar

Alex Quiambao silverbux

  • Philippines
View GitHub Profile

Hosting compatible with Node

Managed

Managed providers provide a simplified "Node Appliance" solution. Node and NPM will already be set up for you, and deploys are typically done via git push or similar method. You will have less control of your server, but everything will be set up for you.

Name Node Version Web Sockets IP/Hostname IRC Repository Free Plan Paid Plans Notes
appfog 0.4.12, 0.6.17, 0.8.14, 0.10.22 No Yes, custom domains in paid plan only appfog Free Signups suspended Yes – monthly subscriptions and enterprise support available General Availability
Azure 0.6+ Yes Yes Azure-Sdk-for-Node 3 month free trial 10 free web sites forever Yes
// Node.js CheatSheet.
// Download the Node.js source code or a pre-built installer for your platform, and start developing today.
// Download: http://nodejs.org/download/
// More: http://nodejs.org/api/all.html
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@silverbux
silverbux / nationality.html
Created May 22, 2017 07:19 — forked from didats/nationality.html
Nationality List in HTML Dropdown
<select name="nationality">
<option value="">-- select one --</option>
<option value="afghan">Afghan</option>
<option value="albanian">Albanian</option>
<option value="algerian">Algerian</option>
<option value="american">American</option>
<option value="andorran">Andorran</option>
<option value="angolan">Angolan</option>
<option value="antiguans">Antiguans</option>
<option value="argentinean">Argentinean</option>
@silverbux
silverbux / gist:960ff93aea3897a658e38a7da25d95b0
Created November 10, 2018 01:39 — forked from dosjota/gist:9666a7274b4036588b92987b84267245
Downgrade php 7.2 to 7.1 in Ubuntu 18.04 LTS
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php7.1
sudo apt-get install php7.1-cli php7.1-common php7.1-json php7.1-opcache php7.1-mysql php7.1-mbstring php7.1-mcrypt php7.1-zip php7.1-fpm php7.1-intl php7.1-simplexml
sudo a2dismod php7.2
sudo a2enmod php7.1
sudo service apache2 restart
sudo update-alternatives --set php /usr/bin/php7.1
sudo update-alternatives --set phar /usr/bin/phar7.1
sudo update-alternatives --set phar.phar /usr/bin/phar.phar7.1