I hereby claim:
- I am arhanchaudhary on github.
- I am archandstarch (https://keybase.io/archandstarch) on keybase.
- I have a public key ASCwCpPniMU2uwlUKUw_jDz9lwZ2lyULttFh8wLUfHIahgo
To claim this, I am signing this object:
#include <jni.h> | |
#include "Main.h" | |
JNIEXPORT jobject JNICALL Java_Main_getSecret(JNIEnv *env, jobject obj, jobject secretObj) | |
{ | |
jclass cls = (*env)->GetObjectClass(env, secretObj); | |
jfieldID field_id = (*env)->GetFieldID(env, cls, "secret", "Ljava/lang/Object;"); | |
jobject secret = (*env)->GetObjectField(env, secretObj, field_id); | |
return secret; | |
} |
I hereby claim:
To claim this, I am signing this object:
import re | |
import webbrowser | |
import requests | |
import PyPDF2 | |
import io | |
url = input("Enter the study guide URL: ") | |
url_raw = requests.get(url).content | |
url_contents = '' | |
with io.BytesIO(url_raw) as open_pdf_file: |
Programming