# Create a new Rust project
cargo new learn_rust
# Change directory to the new folder
cd learn_rust
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
RUN cd /usr/local/share/fonts/ \ | |
&& wget "https://github.com/googlei18n/noto-cjk/blob/master/NotoSansCJKsc-Medium.otf?raw=true" \ | |
&& fc-cache -f -v |
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
// AUTHOR: Yishi Guo | |
// DATE: 22/11/2016 | |
// A Progress Checker for NZQA IQA. | |
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var colors = require('colors'); | |
var argv = require('optimist') | |
.usage('Usage: $0 --username [username] --password [password] --id [applicant id] --num [application id]') | |
.alias('username', 'u') |
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
// ==UserScript== | |
// @name [ANZ]Term Deposit Progress Bar | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://*.anz.co.nz/IBCS/service/home | |
// @grant none | |
// ==/UserScript== |
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
CREATE (weidong: Student {name: "Weidong"}) | |
CREATE (pan: Student {name: "Pan"}) | |
CREATE (yishi: Student {name: "Yishi"}) | |
CREATE (studentY: Student {name: "Student Y"}) | |
CREATE (cs752: Course {name: "COMPSCI 752"}) | |
CREATE (cs700: Course {name: "COMPSCI 700"}) | |
CREATE (stats782: Course {name: "STATS 782"}) | |
CREATE (scient701: Course {name: "SCIENT 701"}) |