Skip to content

Instantly share code, notes, and snippets.

View jachermocilla's full-sized avatar

Joseph Anthony C. Hermocilla jachermocilla

View GitHub Profile
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
<name>http.agent.name</name>
<value>InsyWinsy</value>
</property>
<property>
@jachermocilla
jachermocilla / elbifiles.py
Last active August 29, 2015 14:07
Retrieve posts from "Elbi Files" using Python
"""
based on : <https://gist.github.com/mylsb/10294040>
"""
import facebook
import requests
def some_action(post):
print post['message']
print "----------------------------------------------------"
/**
* A Java implementation of Topological Sorting
*
* @author JAC Hermocilla ([email protected])
*
*/
import java.util.*;
/*