1) Get $35 / $25 / $20 / $10 free DigitalOcean Credit.
2) Get DigitalOcean 1 Year Free Trial.
3) Get $100 Credit For 60 Days. $100 Free Credits
1) Get $35 / $25 / $20 / $10 free DigitalOcean Credit.
2) Get DigitalOcean 1 Year Free Trial.
3) Get $100 Credit For 60 Days. $100 Free Credits
Steps to deploy a Node.js app to Digital Ocean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
| ; /usr/local/bin/nasm -f macho 32.asm && ld -macosx_version_min 10.7.0 -o 32 32.o && ./32 | |
| global start | |
| section .text | |
| start: | |
| push dword msg.len | |
| push dword msg | |
| push dword 1 | |
| mov eax, 4 |
| /* | |
| This file is part of Ext JS 6.0.1.250 | |
| Copyright (c) 2011-2015 Sencha Inc | |
| Contact: http://www.sencha.com/contact | |
| GNU General Public License Usage | |
| This file may be used under the terms of the GNU General Public License version 3.0 as | |
| published by the Free Software Foundation and appearing in the file LICENSE included in the |
| <!-- layout file --> | |
| <% if current_user %> | |
| Welcome <%= current_user.username %>. Not you? <%= link_to "Log out", logout_path %> | |
| <% else %> | |
| <%= link_to "Sign up", signup_path %> or <%= link_to "log in", login_path %>. | |
| <% end %> |
| # A simple CMake script for building the application. | |
| cmake_minimum_required(VERSION 2.8) | |
| project(create-x509) | |
| # Our only dependency is OpenSSL | |
| find_package(OpenSSL REQUIRED) | |
| include_directories(${OPENSSL_INCLUDE_DIR}) | |
| add_executable(create-x509 create-x509.cpp) |
| { | |
| "USD": { | |
| "symbol": "$", | |
| "name": "US Dollar", | |
| "symbol_native": "$", | |
| "decimal_digits": 2, | |
| "rounding": 0, | |
| "code": "USD", | |
| "name_plural": "US dollars" | |
| }, |
| import akka.actor._ | |
| import java.net.InetSocketAddress | |
| import akka.util.ByteString | |
| class TCPServer(port: Int) extends Actor { | |
| override def preStart { | |
| IOManager(context.system).listen(new InetSocketAddress(port)) | |
| } |