Nexus 6P MMB29P from MMB29M
Nexus 6P MMB29P from MMB29N
Nexus 5X MMB29P from MMB29K
Nexus 6 MMB29S from MMB29K
Nexus Player MMB29T from MMB29M
Nexus 9 (LTE) [MMB29S from MMB29K](https://android.googleapis.com/packages/ota/google_flounderlte_volantisg/20fe3d376
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
package analysis; | |
import java.io.IOException; | |
import java.util.*; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import org.apache.hadoop.fs.Path; | |
import org.apache.hadoop.io.*; | |
import org.apache.hadoop.mapred.*; |
Pixel C MXB48T from MXB48J
Pixel C MXB48T from MXB48K
Nexus 6P MMB29Q from MMB29P
Nexus 5X MMB29Q from MMB29P
Nexus 6 MMB29Q from MMB29S
Nexus Player MMB29U from MMB29T
Nexus 9 (LTE) [MMB29R from MMB29S](https://android.go
Pixel C MXC14G from MXB48T
Nexus 6P MHC19I from MMB29Q
Nexus 6P MHC19I from MMB29V
Nexus 5X MHC19J from MMB29Q
Nexus 6 MMB29V from MMB29Q
Nexus Player [MMB29V from MMB29U](https://android.googleapis.com/packages/ota/google_fugu_fugu/8793bbdb81c005f5cb0f2a224b2

- Run Docker Toolbox from shortcut Docker Quickstart Terminal
- Shutdown boot2docker
docker-machine stop
- Open VirtualBox and goto Settings of default machine
- At Shared Folders menu, click + icon, Select folder path to drive D: and set folder name is d, checked all options
- Copy attach-drive-d.sh script to Docker Toolbox folder (C:\Program Files\Docker Toolbox)
- Edit start.sh add command
sh attach-drive-d.sh
before finalize step - Run Docker Toolbox from shortcut Docker Quickstart Terminal again
- Have fun!!!
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
Enterprise: NJVYC-BMHX2-G77MM-4XJMR-6Q8QF | |
Professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDH | |
Keys are generic ones. These are the same from MSDN account. | |
Product Key : -6Q8QF | |
Validity : Valid | |
Product ID : 00369-90000-00000-AA703 | |
Advanced ID : XXXXX-03699-000-000000-00-1032-9200.0000-0672017 |
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
const src = ` | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ | |
๑๒๓๔๕๖๗๘๙๐ |
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
fun calc() { | |
val ans = mutableListOf<Double>() | |
do { | |
val random8 = mutableListOf<Int>() | |
for (i in 1..8) { | |
random8.add(Random.nextInt(0, 9 + 1)) | |
} | |
fun charToRandomNumber(ch: Char) = random8[ch.toByte() - 65] | |
fun transformDigit(digit: Int, ch: Char) = 10.0.pow(digit - 1) * charToRandomNumber(ch) |