We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder
python -m venv ./venv
❯ gh gist create --help | |
Create a new GitHub gist with given contents. | |
Gists can be created from one or multiple files. Alternatively, pass "-" as | |
file name to read from standard input. | |
By default, gists are secret; use '--public' to make publicly listed ones. | |
USAGE |
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |
import React from 'react'; | |
import { render } from 'react-dom'; | |
import {PageContent, PageSidebar} from './Content'; | |
import Layout from './Layout'; | |
const Example = Layout({Content: PageContent, Sidebar: PageSidebar}); | |
render(Example, document.getElementById('app')) |
const { XrplClient } = require('xrpl-client') | |
const account = 'rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B' // The issuer, Bitstamp USD | |
const currency = 'USD' | |
const client = new XrplClient() | |
const main = async () => { | |
await client.ready() | |
const { account_data } = await client.send({ command: 'account_info', account }) |
We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder
python -m venv ./venv
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.
Edit: This list is now maintained in the rust-anthology repo.