Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| var { ApiPromise, WsProvider } = require('@polkadot/api'); | |
| var { BN_ZERO } = require('@polkadot/util'); | |
| async function main() { | |
| const provider = new WsProvider("wss://kusama-rpc.polkadot.io/", false); | |
| provider.connect(); | |
| const api = await ApiPromise.create({ provider }); | |
| // Get general information about the node we are connected to | |
| const [chain, nodeName, nodeVersion] = await Promise.all([ |
| { | |
| "final_space": true, | |
| "console_title": true, | |
| "console_title_style": "folder", | |
| "blocks": [ | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "horizontal_offset": 0, | |
| "vertical_offset": 0, |
In this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc
Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server
Use this link and get $10 free. Just select the $5 plan unless this a production app.
Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.
You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.
| /* | |
| * Usage | |
| * The following code will modify the title of the browser tab on the "blur" event and change it back to the original on the "focus" event. | |
| * http://developers.optimizely.com/javascript/code-samples/index.html#advanced-use-cases-browserTab-test | |
| */ | |
| // store the original tab title | |
| var origTitle = document.title; | |
| // function to change title when focusing on tab |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParentThis has been incorporated in a small library.