nvm (node version manager) https://github.com/nvm-sh/nvm
git (version control system) https://git-scm.com/
github account (hosting service for Git repositories) https://github.com/
sourcetree (git gui)
| using UnityEngine; | |
| namespace Ditzelgames | |
| { | |
| public static class PhysicsHelper | |
| { | |
| public static void ApplyForceToReachVelocity(Rigidbody rigidbody, Vector3 velocity, float force = 1, ForceMode mode = ForceMode.Force) | |
| { | |
| if (force == 0 || velocity.magnitude == 0) |
| // This page demonstrates running multiple functions simultaneously | |
| // and waiting on them to finish. | |
| // Maybe you have an api call that takes 6 seconds... | |
| // And you only need the response at the end | |
| // Would you like to start a function and check if the promise is resolved later? | |
| // Then check out the async/await and the promiseAll functions | |
| main(); |
| #!/bin/bash | |
| echo "************************************" | |
| echo | |
| echo "This script initializes a new database schema export in this project" | |
| echo "It exports the database schema from localhost with the mysql and mysqldump cli tools" | |
| echo | |
| echo "You may want to make a new database user named 'export' with the correct permissions" | |
| echo "permissions example: mysql> GRANT SELECT,LOCK TABLES ON DBNAME.* TO 'username'@'localhost';" | |
| echo | |
| echo "------WARNING------" |
nvm (node version manager) https://github.com/nvm-sh/nvm
git (version control system) https://git-scm.com/
github account (hosting service for Git repositories) https://github.com/
sourcetree (git gui)
| // ==UserScript== | |
| // @name noVNC Paste for Proxmox | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2a | |
| // @description Pastes text into a noVNC window (for use with Proxmox specifically) | |
| // @author Chester Enright | |
| // @match https://* | |
| // @include /^.*novnc.*/ | |
| // @require http://code.jquery.com/jquery-3.3.1.min.js | |
| // @grant none |