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
| | | | +-- [email protected] | |
| | | | `-- [email protected] | |
| | | +-- [email protected] | |
| | | `-- [email protected] | |
| | `-- [email protected] | |
| | `-- [email protected] | |
| +-- [email protected] | |
| `-- [email protected] | |
+-- [email protected] | |
+-- [email protected] |
This file has been truncated, but you can view the full file.
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
execFile: D:\Android\Sdk\platform-tools\adb "help" | |
execFile: D:\Android\Sdk\platform-tools\adb "help" | |
spawn: D:\Android\Sdk\platform-tools\adb "--help" | |
Socket { | |
connecting: false, | |
_hadError: false, | |
_handle: | |
Pipe { | |
bytesRead: 0, | |
_externalStream: {}, |
- To provide an utility to help students manage their homework schedule and time used more efficiently.
- A Planner including the tittle for Homework and the time supplied for each of them.
- A Countdown Timer specifically designed to follow the items in the planner and provide useful reminders so that students will do their homework faster.
- A Statistics and Score system so that students can review their efficiency on their homework.
- (Future) Allow teachers to review time on students on their Homework provided.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
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
{ | |
"symbols": [ | |
"。", | |
":", | |
",", | |
"!", | |
"?", | |
";", | |
"、", | |
"......" |
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
[{"lastName":"CHAN","firstName":["MEI","CHUN"],"class":"1A","classNo":1},{"lastName":"CHAN","firstName":["WING","YI"],"class":"1A","classNo":2},{"lastName":"CHAN","firstName":["YU","FUNG"],"class":"1A","classNo":3},{"lastName":"CHAU","firstName":["KIN","HANG"],"class":"1A","classNo":4},{"lastName":"CHAU","firstName":["WAI","YEE"],"class":"1A","classNo":5},{"lastName":"CHEN","firstName":["CHUN","HON"],"class":"1A","classNo":6},{"lastName":"CHENG","firstName":["HO","HEI"],"class":"1A","classNo":7},{"lastName":"CHEUNG","firstName":["YUN","TONG"],"class":"1A","classNo":8},{"lastName":"HAU","firstName":["CHEUK","LING"],"class":"1A","classNo":9},{"lastName":"HO","firstName":["KA","TUNG"],"class":"1A","classNo":10},{"lastName":"LAM","firstName":["HING","YI"],"class":"1A","classNo":11},{"lastName":"LAU","firstName":["YU","CHING"],"class":"1A","classNo":12},{"lastName":"LEE","firstName":["CHEUK","LAM"],"class":"1A","classNo":13},{"lastName":"LEUNG","firstName":["WING","KIU"],"class":"1A","classNo":14},{"lastName":"LI" |
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
# Mini bash script to quickly copy files between android devices using adb | |
# dependencies : depends on adb, install first by sudo apt install adb | |
# $1 : serialno of source device | |
# $2 : serialno of destination device | |
# $3 : parent directory of file/dir to be copied | |
# $4 : name of file/dit to be copied | |
# example : bash android-file-transfer <device-sn-source> <device-sn-destination> /sdcard/ DCIM | |
# remarks : if it shows the devices is currently offline, set the device's USB mode to MTP | |
# remarks : to get serialno of connected devices, used adb devices -l | |
# remarks : uses USB 3.0 port if aviliable |
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
{ | |
"includeAll": [ | |
{ | |
"model": "User", | |
"as": "user", | |
"where": { | |
"userId": 1 | |
} | |
} | |
], |
OlderNewer