Skip to content

Instantly share code, notes, and snippets.

View philipphager's full-sized avatar

Philipp Hager philipphager

View GitHub Profile
@philipphager
philipphager / party.json
Created May 11, 2019 18:21
German Parlament Topic Data
[{"party": "spd", "members": 202, "topics": {"0": 0.04462631894897639, "1": 0.030298982545961035, "2": 0.17560700611761895, "3": 0.07978005520624103, "4": 0.06723973581172867, "5": 0.021756432741495146, "6": 0.07281972205872525, "7": 0.035198775544720784, "8": 0.026206746343589337, "9": 0.02015431514225945, "10": 0.035853569520036585, "11": 0.017522608807300777, "12": 0.04836807339928674, "13": 0.047162954414010166, "14": 0.046806188449461, "15": 0.031334624906131224, "16": 0.05220294282744657, "17": 0.04109634543171888, "18": 0.05632319260162189, "19": 0.049641409181670156}}, {"party": "gruene", "members": 71, "topics": {"0": 0.026971855540870796, "1": 0.03418054494600681, "2": 0.15935268364146812, "3": 0.08136658732358806, "4": 0.10041029331399118, "5": 0.0298567596122006, "6": 0.0781907882024178, "7": 0.045431686522771395, "8": 0.034542157803550244, "9": 0.024057724547168178, "10": 0.030199740713313643, "11": 0.019034640058956335, "12": 0.05824091447543428, "13": 0.04317808518648628, "14": 0.03046647467726
@philipphager
philipphager / BipartiteGraph.java
Last active May 15, 2019 06:16
Basic Twitter SALSA implementation
import java.util.*;
public class BipartiteGraph {
private final Map<String, List<String>> leftToRight;
private final Map<String, List<String>> rightToLeft;
public BipartiteGraph() {
leftToRight = new HashMap<>();
rightToLeft = new HashMap<>();
}
subject predicate object
confluent achieve holy grail
telegram add unsend
avast think ccleaner
google release tez
odis bring alexa
microsoft ventures back illusive networks
elon musk exit trump
sherpa turn instagram
at&t make directv
public class ReservoirSampler {
private final Random random;
private final int[] buffer;
private int writePosition;
private int readPosition;
public ReservoirSampler(int size) {
this.random = new Random();
this.buffer = new int[size];
this.writePosition = 0;
@philipphager
philipphager / AdjacencyList.java
Last active June 7, 2019 08:12
Simple GraphJet
package segments;
import java.util.*;
public class AdjacencyList {
private static final int[] NODE_THRESHOLDS;
static {
NODE_THRESHOLDS = new int[32];
NODE_THRESHOLDS[0] = 0;
{
"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}},
"hconcat": [
{
"mark": "bar",
"encoding": {
"tooltip": [
{"type": "quantitative", "field": "id"},
{"type": "nominal", "field": "name"},
{"type": "quantitative", "field": "loss"},
{
"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}},
"hconcat": [
{
"mark": "bar",
"encoding": {
"tooltip": [
{"type": "quantitative", "field": "id"},
{"type": "nominal", "field": "name"},
{"type": "quantitative", "field": "loss"},
@philipphager
philipphager / spec.json
Created June 27, 2020 23:17
Vega-Lite spec from Sun Jun 28 2020
{
"config": {
"view": {"continuousWidth": 400, "continuousHeight": 300},
"axis": {
"labelFontSize": 14,
"labelFontWeight": "normal",
"titleFontSize": 14
},
"axisX": {"titlePadding": 20},
"axisY": {"titleFontWeight": "normal"},
{
"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}},
"data": {"name": "data-1132bb181f3c2cf775a80ccf83650219"},
"mark": "line",
"encoding": {
"color": {"field": "model", "type": "nominal"},
"row": {"field": "metric", "type": "nominal"},
"tooltip": [
{"field": "epoch", "type": "quantitative"},
{"field": "model", "type": "nominal"},
{
"statistic": {
"postings": [
{
"doc_id": 0,
"tf": 1
}
],
"df": 1
},