Skip to content

Instantly share code, notes, and snippets.

View glava's full-sized avatar
🥑

Goran Ojkić glava

🥑
  • Soundcloud
  • Berlin
View GitHub Profile
# terminal command for monitoring http requests
sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E "Host\: .*|GET \/.*"
@glava
glava / RoundRobin
Created December 15, 2011 15:59
Round Robin - java
package test;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import junit.framework.TestCase;
class Robin {
private int i;