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
enum Quadrant | |
{ | |
None, | |
I, | |
II, | |
III, | |
IV | |
} | |
class Point(double x, double y) |
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
library wbi; | |
import 'dart:convert'; | |
import 'package:dartx/dartx.dart'; | |
import 'package:path/path.dart' as path; | |
import 'package:http/http.dart' as http; | |
import 'package:uri/uri.dart'; | |
void main(List<String> args) async { | |
final originalUri = |
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
pip: | |
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple | |
npm: | |
npm install -g yrm | |
yrm add nm https://registry.npmmirror.com/ | |
yrm use nm |