Time | Court 1 | Court 2 |
---|---|---|
09:00-09:45 | — | M2 · (28) BRUCE MADGE vs (37) SAHARATH TINGCHAROEN |
09:45-10:30 | — | M3 · (29) KRISHAN JHALANI vs (36) PAWAS KHOSITDITTHAPHONG |
This file contains hidden or 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
LEFT SIDE RIGHT SIDE | |
ROUND OF 64 ROUND OF 32 ROUND OF 16 QUARTERFINALS SEMIFINALS SEMIFINALS QUARTERFINAL ROUND OF 16 ROUND OF 32 ROUND OF 64 | |
(1) CHATCHAWIN ─┐ ┌─ (3) ANIROODH | |
├─────────┐ ┌─────────┤ | |
BYE ────────────┘ │ │ └─ BYE | |
├──────────┐ ┌──────────┤ | |
(32) MARVYN ────┐ │ │ |
This file contains hidden or 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
Date | Time Slot | Court 1 | Court 2 | |
---|---|---|---|---|
2025-10-18 | 09:00-09:45 | - | M2 Main R64: (28) BRUCE MADGE vs (37) SAHARATH TINGCHAROEN | |
2025-10-18 | 09:45-10:30 | - | M3 Main R64: (29) KRISHAN JHALANI vs (36) PAWAS KHOSITDITTHAPHONG | |
2025-10-18 | 10:30-11:15 | - | M4 Main R64: (27) BERND LOUIS vs (38) STEPHEN HARRISON | |
2025-10-18 | 11:15-12:00 | - | M5 Main R64: (30) RIT TURIWONGSE vs (35) PETER CARDEN | |
2025-10-18 | 12:00-12:45 | M1 Main R64: (32) KOURTNEY WONG vs (33) MARVYN LEWIS | M9 Main R32: (9) ROB LOCKHART vs (24) AISOON JADKHAM | |
2025-10-18 | 15:00-15:45 | M10 Main R32: (25) SUTHIRAPHAN ASSARAT vs (8) MIKE GEBREMEDHIN | M12 Main R32: (12) KEILIC WONG vs (21) NEIL EVANS | |
2025-10-18 | 15:45-16:30 | M13 Main R32: (13) SHIRAZ POONEVALA vs (20) NICK GOSH | M17 Main R32: (26) BART WEAVER-BERTHET vs (22) JOHN VAS | |
2025-10-18 | 16:30-17:15 | M20 Main R32: (10) CHETAN MAHENDRA vs (23) JOHN MCCOSH | M8 Main R32: (16) TIM BAILEY vs (17) DEAN THOMPSON | |
2025-10-18 | 17:15-18:00 | M7 Main R32: (1) CHATCHAWIN TANGJAITRONG vs Winner M1 | M14 Main R32: (4) STEVEN BUSSEY vs Winner M3 |
- Main: 64-player SE (38 players + 26 byes; rounds: R64, R32, R16, QF x4, SF x2, Final, 3rd).
- Plate: 32-player consolation (31 losers from main R64/R32/R16 + 1 bye; rounds: R32 x16, R16 x8, QF x4, SF x2, Final, 3rd).
- Seeding: Remove EDUARDO JUNQUEIRA (shift lower up); SUTHIRAPHAN ASSARAT to 25th (adjust subsequent).
- Feeds: Balanced loser pairings to plate R32; byes to top seeds.
- Period: Sat Oct 18–Sun Nov 2; weekends only (Oct 18/19, 25/26; Nov 1/2).
This file contains hidden or 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
$ sbt | |
[info] Loading project definition from /home/my-cool-project/project | |
[info] Set current project to my-cool-project (in build file:/home/my-cool-project/) | |
> test | |
OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=2048M; support was removed in 8.0 | |
[info] MannersSpec: | |
[info] .happyData | |
Using Spark's default log4j profile: org/apache/spark/log4j-defaults.properties | |
18/10/02 11:35:30 INFO SparkContext: Running Spark version 2.3.0 | |
18/10/02 11:35:30 WARN NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable |
This file contains hidden or 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
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.2.4") |
This file contains hidden or 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
sbt new MrPowers/spark-sbt.g8 |
This file contains hidden or 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
scala> val list = Seq(1, 7, 5, 2) | |
list: Seq[Int] = List(1, 7, 5, 2) | |
scala> list.reduceLeft((p, q) => p + q) | |
res54: Int = 15 | |
scala> list.foldLeft(0)((p, q) => p + q) | |
res55: Int = 15 | |
scala> list.reduceLeft((p, q) => p - q) |
NewerOlder