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
| JapUS <- | |
| list(set1 = structure(list(Japan = c(1L,2L,0L,3L,0L,4L,0L,5L, | |
| 0L,0L,6L,7L,0L,8L,0L,9L,0L,10L,0L,0L,0L,11L,0L,12L,0L,0L,0L, | |
| 0L,13L,0L,14L,15L,16L,0L,0L,17L,0L,0L,0L,0L,18L,0L,19L,0L,), | |
| US = c(0L,0L,1L,0L,2L,0L,3L,0L,4L,5L,0L,0L,6L,0L,7L,0L,8L,0L, | |
| 9L,10L,11L,0L,12L,0L,13L,14L,15L,16L,0L,17L,0L,0L,0L,18L,19L, | |
| 0L,20L,21L,22L,23L,0L,24L,0L,25L,)), class = "data.frame", | |
| row.names = c(NA, -44L)), set2 = structure(list(Japan = c(0L,1L, | |
| 0L,0L,2L,0L,3L,0L,4L,0L,5L,0L,0L,6L,0L,7L,0L,8L,0L,9L,10L,0L,11L, | |
| 0L,12L,13L,0L,14L,15L,0L,16L,0L,0L,17L,18L,19L,0L,20L,21L,0L,22L, |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link rel="stylesheet" href="styles.css"> | |
| <script defer src="main.dart.js"></script> | |
| </head> | |
| <body> | |
| <div class="wrap"> |
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
| void download(String text) { | |
| String encodedFileContents = Uri.encodeComponent(text); | |
| //text file | |
| new AnchorElement(href: "data:text/plain;charset=utf-8,$text") | |
| ..setAttribute("download", "manifest.json") | |
| ..click(); | |
| } |
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
| <script src="https://www.gstatic.com/firebasejs/3.2.1/firebase.js"></script> |
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
| void main() { | |
| AudioElement audioElement = AudioElement(); | |
| audioElement.src = "audio/--.mp3"; | |
| audioElement.play(); | |
| } |
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
| public function onJoin(PlayerJoinEvent $event) { | |
| $player = $event->getPlayer(); | |
| $skin_raw = $player->getSkin()->getSkinData(); | |
| $height = 64; | |
| $width = 64; | |
| switch (strlen($skin_raw)) { | |
| case 64 * 32 * 4: | |
| $height = 32; |