Skip to content

Instantly share code, notes, and snippets.

View fmr's full-sized avatar

Francis Reyes fmr

  • Melbourne, Australia
View GitHub Profile

Keybase proof

I hereby claim:

  • I am fmr on github.
  • I am fmr (https://keybase.io/fmr) on keybase.
  • I have a public key ASCUeGxxxfwY8alZmRSo06sSsQfSGIeRXsto2WKjU3BVCAo

To claim this, I am signing this object:

language: objective-c
env:
- TI_SDK=3.5.0.GA PLATFORM=ios
- TI_SDK=3.5.1.GA PLATFORM=ios
- TI_SDK=3.5.0.GA PLATFORM=android
- TI_SDK=3.5.1.GA PLATFORM=android
script:
- ti build $TI_OPTS -p $PLATFORM
before_install:
- ./set_up_android.sh
@fmr
fmr / scrapper.py
Last active August 29, 2015 14:13 — forked from madjar/scrapper.py
import asyncio
import aiohttp
import bs4
import tqdm
@asyncio.coroutine
def get(*args, **kwargs):
response = yield from aiohttp.request('GET', *args, **kwargs)
return (yield from response.read_and_close(decode=True))