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,
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
{ | |
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", |
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
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; |
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
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) { |
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
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 |
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
#!/usr/bin/env python | |
import errno | |
import os | |
import sys | |
import codecs | |
import sqlite3 | |
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
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 |
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
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(-) |
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
#!/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 |
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
#include <cassert> | |
#include <condition_variable> | |
#include <iostream> | |
#include <mutex> | |
#include <thread> | |
using namespace std; | |
condition_variable tester; | |
mutex sync0, sync1, a, b, graph_sync; |
NewerOlder