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
import sys | |
import math | |
import numpy as np | |
class Drone(): | |
def __init__(self, x, y): | |
self.x = x | |
self.y = y |
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
Nexus 5 4.4.4 | |
1. setup: | |
a. need to downgrade to 4.4.4, root | |
b. luckypactcher, GG, xposed | |
c. put libhook.so and android_server and libsubstrate.so in /data/local/tmp/ and install aadbg | |
d. patch with luckypatcher the middle 2 | |
2. adb shell su -> android_server | |
3. adb forward tcp:23946 tcp: 23946 | |
4. adb forward tcp:8700 jdwp:PID_OF_GAME | |
jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=8700 |
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
// dijkstra.cpp | |
// author: Kevin Jeong | |
// 4/1/2018 | |
// implementation of random graph generation and using dijkstra's algorithm to get average shortest paths from the | |
// first vertex | |
#include "dijkstra.h" | |
using namespace std; | |
const int SIZE = 50; // number of vertices the graph has | |
const double DENSITY_ONE = .4; // density of the graph |
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
{ | |
"Ansi 6 Color" : { | |
"Red Component" : 0.60392171144485474, | |
"Color Space" : "sRGB", | |
"Blue Component" : 0.99607843160629272, | |
"Alpha Component" : 1, | |
"Green Component" : 0.92941170930862427 | |
}, | |
"Tags" : [ |