Skip to content

Instantly share code, notes, and snippets.

View tonycosentini's full-sized avatar
🍕

Tony Cosentini tonycosentini

🍕
View GitHub Profile
@tonycosentini
tonycosentini / RxJava.java
Created April 18, 2017 21:06
Retrofit bug
public class RxJava {
public static void main(String[] args) {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://google.com/")
.addCallAdapterFactory(RxJavaCallAdapterFactory.createAsync())
.build();
Service service = retrofit.create(Service.class);
@tonycosentini
tonycosentini / hack.sh
Created December 6, 2012 06:57 — forked from amrox/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/4222316/hack.sh | sh
#
http://twitter.com/statuses/user_timeline.json?screen_name=mindsnacks
@tonycosentini
tonycosentini / .vimrc
Created May 31, 2012 14:28
Safari Reload Vim Plugin
autocmd BufWriteCmd *.html,*.css,*.gtpl :call Refresh_safari()
function! Refresh_safari()
if &modified
write
execute "silent ! osascript ~/.vim/applescript/reload_safari.applescript"
endif
endfunction
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
public class RssHandler extends DefaultHandler {
private Stack<String> mTagStack = new Stack<String>();
private String currentTagContents;
private String currentTag() { return mTagStack.peek(); }
private String parentTag() { return mTagStack.get(mTagStack.size() - 2); }
public ArrayList<RssItem> mItems = new ArrayList<RssItem>();
private RssItem mCurrentItem;
public RssParser(String feedURLString) throws Exception {
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(feedURLString);
HttpResponse response = client.execute(request);
SAXParserFactory f = SAXParserFactory.newInstance();
SAXParser parser = f.newSAXParser();
XMLReader reader = parser.getXMLReader();
RssHandler handler = new RssHandler();
reader.setContentHandler(handler);
public class RssItem {
public String title;
public String body;
public String permalinkURL;
public String author;
public Date publishedTime;
}
@tonycosentini
tonycosentini / Enter.js
Created October 24, 2011 23:43
Empty Last.fm Page
$('#search').keypress(function(e) {
if(e.which == 13) {
$("#form").fadeOut(function() {
$("#loading").fadeIn();
});
// The rest of the code will go here.
}
});
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="http://localhost:3000/socket.io/socket.io.js"></script>
<script src="./jquery-1.6.2.min.js"></script>
<script type="text/javascript">
var socket = io.connect('http://localhost:3000/');
var handle = "";