- Download docker for Windows
- Download Hyper Terminal (optional)
- Download VS Code (optional)
- Enable Windows subsystem for Linux
- Search 'Turn Windows features on or off' and enable the checkbox
- Install Ubuntu 18.04 from Microsoft store
- Download docker for Windows
- Download Hyper Terminal (optional)
- Download VS Code (optional)
- Enable Windows subsystem for Linux
- Search 'Turn Windows features on or off' and enable the checkbox
- Install Ubuntu 18.04 from Microsoft store
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"React Class Component": { | |
"prefix": "rcc", | |
"description": "Boilerplate for React Class-based component", | |
"body": [ | |
"import React, { Component} from 'react';", | |
"", | |
"class ${1:ClassName} extends Component {", | |
"\tconstructor(props) {", | |
"\t\tsuper(props);", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"React Class Component": { | |
"prefix": "rcc", | |
"description": "Boilerplate for React Class-based component", | |
"body": [ | |
"import React, { Component} from 'react';", | |
"", | |
"class ${1:ClassName} extends Component {", | |
"\tconstructor(props) {", | |
"\t\tsuper(props);", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const readline = require("readline"); | |
const fs = require("fs"); | |
const reader = readline.createInterface({ | |
input: fs.createReadStream("./aerolist.txt"), | |
output: process.stdout, | |
console: false | |
}); | |
let index = 0; |
Requires Amethyst window manager to be installed
Description | Key Command(s)cc | Handled By | Defined in | Notes |
---|---|---|---|---|
Move left a space (desktop) | ctrl+left |
mac OS | ||
Move right a space (desktop) | ctrl+right |
mac OS |
Scenic viewpoint looking out over the whole Dunedin area. Short drive from the CBD
https://www.dunedin.govt.nz/community-facilities/walking-tracks/skyline-walks/mt-cargill
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Sandbox | |
{ | |
public class Stopwatch | |
{ | |
private bool _started; | |
private DateTime _startTime; | |
public TimeSpan Duration { get; private set; } | |
OlderNewer