$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains hidden or 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 Post | |
{ | |
public string Title { get; set; } | |
public string Description { get; set; } | |
public DateTime CreatedAt { get; set; } | |
public int Score { get; private set; } |
This file contains hidden or 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; } | |
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
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 |
This file contains hidden or 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; |
This file contains hidden or 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 hidden or 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);", |
- 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