Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
| import { createCampaign, dashboard, logout, payment, profile, withdraw } from '../assets'; | |
| export const navlinks = [ | |
| { | |
| name: 'dashboard', | |
| imgUrl: dashboard, | |
| link: '/', | |
| }, | |
| { | |
| name: 'campaign', |
| @INPROCEEDINGS{nearcloud, | |
| author={J. P. Talusan and Y. Nakamura and T. Mizumoto and K. Yasumoto}, | |
| booktitle={2018 IEEE 42nd Annual Computer Software and Applications Conference (COMPSAC)}, | |
| title={Near Cloud: Low-cost Low-Power Cloud Implementation for Rural Area Connectivity and Data Processing}, | |
| year={2018}, | |
| volume={02}, | |
| number={}, | |
| pages={622-627}, | |
| abstract={Information and communication technologies (ICTs) has enabled growth in developed countries and urban cities through improvements in communication systems, devices and applications. In rural areas, especially in developing countries, ICT penetration is not as high, often due to lack of available infrastructure and funding. With the increasing availability of Internet-of-Things (IoT) devices, low-cost large-scale deployments have become possible even in rural areas. We design, develop and implement, Near Cloud, a cloud-less platform that allows users and IoT devices to communicate and share information. This is built on top of a wireless mesh netw |
| #CODE | |
| #Generate root password | |
| import random, string | |
| password = ''.join(random.choice(string.ascii_letters + string.digits) for i in range(20)) | |
| #Download ngrok | |
| ! wget -q -c -nc https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip | |
| ! unzip -qq -n ngrok-stable-linux-amd64.zip | |
| #Setup sshd |
All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
| var RadixTrie = function(words) { | |
| this.T = {}; | |
| this.initialize(words); | |
| }; | |
| RadixTrie.prototype = { | |
| initialize: function(words) { | |
| var self = this; | |
| words = words || []; |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # "./Vagrantfile" | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "ubuntu/trusty64" | |
| # set ports: according to your ngnix configuration | |
| config.vm.network :forwarded_port, guest: 8080, host: 8080 |
| #!/bin/bash | |
| set -euo pipefail | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| # Thanks: | |
| # * https://github.com/alestic/alestic-git/blob/master/bin/alestic-git-build-ami for the overall approach and ec2 commands | |
| # * https://github.com/kickstarter/build-ubuntu-ami/blob/master/data/user_data.sh.erb for the user script run in chroot | |
| # * https://blog.tinned-software.net/mount-raw-image-of-entire-disc/ for how to mount the raw image with losetup | |
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |