Skip to content

Instantly share code, notes, and snippets.

@kylemcdonald
kylemcdonald / Collect Parler Metadata.ipynb
Last active July 27, 2025 17:52
Collect video URLs and GPS data for Parler videos.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rockswang
rockswang / Json.java
Created August 6, 2014 09:14
A JSONObject/JSONArray wrapper, simplifies JSON usage in android & java (json.org api)
package com.roxstudio.utils;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;