- Normal: Zamazenta-C4x > Shuckle2 > Zamazenta-C
- Fighting: (Lugia)2 > Gengar
- Flying/Dragon: Zacian-C
- Poison/Rock/Bug/Steel: Zamazenta-C
- Ground: (Lugia)2 > Articuno2 > Butterfree
- Ghost: Blissey
- Fire: (Coalossal)2 > Omastar
- Water: (Appletun)2 > Suicune2 > Latias
- Grass: (Ho-Oh)2 > Eternatus2 > (Archaludon) > Zamazenta-C4x > (Lugia)2 > Corviknight
- Electric: (Sandaconda) > (Appletun)2 > Latias
| { | |
| 1: "ERR_NET_DOWN", | |
| 3: "ERR_UNKNOWN_HOST", | |
| 4: "ERR_AUTH", | |
| 6: "ERR_HEARTBEAT_ACK_TIMEOUT", | |
| 10: "ERR_UNKNOWN", | |
| 11: "ERR_DISABLED", | |
| 14: "ERR_PROTOCOL", | |
| 15: "ERR_SERVICE_END", | |
| 16: "ERR_IO_CONNECTING", |
Ivysaur, Butterfree, Ekans, Arbok, Pikachu, Raichu, Raichu-Alola, Nidoran♂, Gloom, Paras, Parasect, Venonat, Diglett, Diglett-Alola, Dugtrio, Dugtrio-Normal, Dugtrio-Alola, Growlithe-Hisuian, Doduo, Dodrio, Gengar, Onix, Drowzee, Hypno, Electrode, Electrode-Hisuian, Exeggcute, Marowak, Starmie, Omanyte, Kabutops, Snorlax, Bayleef, Feraligatr, Sentret, Furret, Hoothoot, Crobat, Togepi, Hoppip, Murkrow, Misdreavus, Snubbull, Teddiursa, Remoraid, Porygon2, Tyrogue, Combusken, Poochyena, Beautifly, Dustox, Lombre, Swellow, Pelipper, Shroomish, Breloom, Slakoth, Nincada, Lairon, Medicham, Plusle, Minun, Numel, Spoink, Spinda, Whiscash, Claydol, Kecleon, Tropius, Walrein, Clamperl, Metang, Piplup, Staraptor, Luxio, Roserade, Cranidos, Bastiodon, Wormadam, Wormadam-Trash, Pachirisu, Floatzel, Mismagius, Skuntank, Bronzong, Munchlax, Snover, Lickilicky, Togekiss, Mamoswine, Porygon Z, Probopass, Servine, Emboar, Watchog, Stoutland, Gigalith, Swoobat,
| let lv25 = false; | |
| let candyXl = false; | |
| let spinap = false; | |
| let medal = 1.4; // https://gamepress.gg/pokemongo/catchcalc#/ | |
| let bcr = 0.02; // base capture rate | |
| let thr = 1.7; // excellent 1.7, great 1.3 | |
| let candyBonus = (candyXl ? lv25 ? 85 : 55 : 0) + 3 + 2; | |
| let candyPinap = (spinap ? 7 : 6) + candyBonus; | |
| let candyGrazz = 3 + candyBonus; |
| import android.content.Context | |
| import android.util.AttributeSet | |
| import android.util.Log | |
| import android.view.MotionEvent | |
| import android.view.View | |
| import android.webkit.WebView | |
| import androidx.customview.widget.ViewDragHelper | |
| class NestedScrollingWebView @JvmOverloads constructor(context: Context, | |
| attrs: AttributeSet? = null) : WebView(context, attrs) { |
| sudo apt-get install --install-recommends gcc-mips-linux-gnu cpp-mips-linux-gnu | |
| # libpcap | |
| git checkout libpcap-1.9.0 | |
| mkdir out | |
| export LIBPCAP=`pwd`/out | |
| ./configure --host=mips-linux-gnu --prefix=$LIBPCAP | |
| make install | |
| # libncurses |
| #!/usr/bin/env python | |
| import errno | |
| import os | |
| import sys | |
| import codecs | |
| import sqlite3 | |
| adb connect <your TV IP> | |
| # if adb connect didn't work, try enabling network debugging via whatever means possible, e.g. root + telnetd | |
| adb shell | |
| # this step is optional but recommended | |
| su | |
| pm disable com.tpv.xmic.recommender.ebony2k15 | |
| # disable ads? | |
| pm disable com.sharp.advert | |
| pm disable com.tianci.ad |
| From a818cb9ca7d4746b5508943ba6dee931ce3aa3ef Mon Sep 17 00:00:00 2001 | |
| From: Mygod <[email protected]> | |
| Date: Sun, 4 Feb 2018 16:59:49 -0800 | |
| Subject: [PATCH] SVGParser comma and whitespace enhancement | |
| Please see explanation here: https://piazza.com/class/jcawl9n5m3s4s3?cid=63 | |
| --- | |
| src/svgparser.cpp | 59 ++++++++++++++++++++++++++++++++++++++----------------- | |
| 1 file changed, 41 insertions(+), 18 deletions(-) |
| #!/usr/bin/python3 | |
| """ | |
| Copyright 2021 Mygod | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 |