Source: https://www.digitalocean.com/community/tutorials/how-to-create-a-sudo-user-on-ubuntu-quickstart
Login with root
adduser username
usermod -aG sudo username
| /* | |
| info from: | |
| https://github.com/ionomy/ion/blob/master/src/chainparams.cpp | |
| */ | |
| var assign = require('object-assign') | |
| var common = { | |
| name: 'Ion', | |
| per1: 1e8, |
| switch(name){ | |
| case '/': | |
| result = (float)x / (float)y; | |
| printf("&.3f\n"); | |
| break; | |
| case '*': | |
| result = (float)x * (float)y; | |
| printf("&.3f\n"); | |
| break; | |
Source: https://www.digitalocean.com/community/tutorials/how-to-create-a-sudo-user-on-ubuntu-quickstart
Login with root
adduser username
usermod -aG sudo username
| let mongoose = require('mongoose'); | |
| const arrayUniquePlugin = require('mongoose-unique-array'); | |
| const voutsArraySchema = mongoose.Schema({ | |
| txid: String, | |
| n: Number, | |
| value: Number, | |
| time: Number, | |
| address: String | |
| }); |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| public class loc : Monobehaviour | |
| { | |
| /*sir this code is all about | |
| when my character touches the touchingGameobject object | |
| it will destroy player aftee 30s | |
| */ | |
| public Transform touchingGameobject; | |
| public Transform player; |
| using UnityEngine; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| public class danger1rotation : MonoBehaviour { | |
| { | |
| public Transform speed = 10.0f; //this is for normal speed | |
| public Transform Jumpspeed = 20.9f; //this is for jump speed | |
| public Transform slowspeed = 05.00f; //this is for the slow speed | |
| public Transform fastspeed = 40.00f; // this is for the fast speed |
| <select name="timezone_offset" id="timezone-offset" class="span5"> | |
| <option value="-12:00">(GMT -12:00) Eniwetok, Kwajalein</option> | |
| <option value="-11:00">(GMT -11:00) Midway Island, Samoa</option> | |
| <option value="-10:00">(GMT -10:00) Hawaii</option> | |
| <option value="-09:50">(GMT -9:30) Taiohae</option> | |
| <option value="-09:00">(GMT -9:00) Alaska</option> | |
| <option value="-08:00">(GMT -8:00) Pacific Time (US & Canada)</option> | |
| <option value="-07:00">(GMT -7:00) Mountain Time (US & Canada)</option> | |
| <option value="-06:00">(GMT -6:00) Central Time (US & Canada), Mexico City</option> | |
| <option value="-05:00">(GMT -5:00) Eastern Time (US & Canada), Bogota, Lima</option> |