Skip to content

Instantly share code, notes, and snippets.

@seanhotw
seanhotw / 20130917_001.md
Last active December 23, 2015 05:29
iOS Newsletter

RubyMotion 2.8 is released

This update includes support for iOS 7, 64bit binaries and most importantly faster build time! Clean compilation takes 1/3 of the time compared to previous version.


AFNetworking 2.0 is released

The most widely used open source projects for iOS is going to release its first major update later this week. This includes better serialization, real-time connection support and more. Interestingly it supports iOS 7 only.

@seanhotw
seanhotw / ios_resources.md
Last active April 12, 2016 16:07
iOS Resources
@seanhotw
seanhotw / proxy.rb
Created September 20, 2012 23:08
Simple Ruby Proxy Server
#!/usr/bin/env ruby
# A quick and dirty implementation of an HTTP proxy server in Ruby
# because I did not want to install anything.
#
# Copyright (C) 2009 Torsten Becker <torsten.becker@gmail.com>
require 'socket'
require 'uri'