Skip to content

Instantly share code, notes, and snippets.

View xidameng's full-sized avatar
🏠
Working from home

SimonXI xidameng

🏠
Working from home
  • Singapore
View GitHub Profile
@phamquocbuu
phamquocbuu / README.md
Last active October 1, 2020 02:51
Run Cygwin from Sublime Text 3 with Terminal package
@damondouglas
damondouglas / random.dart
Last active May 20, 2021 08:13
Generate Random String based on length
import 'dart:math';
String _randomString(int length) {
var rand = new Random();
var codeUnits = new List.generate(
length,
(index){
return rand.nextInt(33)+89;
}
);