If I had to pick one library for a topic, what would I pick today?
Gramener's public/semi-public speaking engagements.
- 16 Dec 2011. Visualising Data at ISB Solstice, Hyderabad
- 2 Feb 2012. Pictures through Numbers at Ignite Chennai
- 18 Feb 2012. Data Visualisation in Javascript at jsFoo, Chennai
- 9 Mar 2012. Data Visualisation. IIM Bangalore, Business Analytics course. Repeated on 24 Jul 2012, 29 Aug 2012
- 24 Mar 2012. Pictures through Numbers at OpenDataCamp, Bangalore
- 24 Mar 2012. Migration Patterns in India at [OpenDataCamp
Alternatives for Google services (open source, preferably self-hosted, or easy to switch out off).
- Adsense: Don't advertise
- AJAX libraries: <cdnjs.com>
- Alerts: ?
- Analytics: ?
- AppEngine: Amazon EC2
- Apps for domains: ?
- Blogger: WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gitlab 5.1: https://github.com/gitlabhq/gitlabhq/blob/5-1-stable/doc/install/installation.md | |
# Set up an AWS EC2 Ubuntu 12.04 LTS Server. | |
# Use ap-southeast-1b: spot pricing is smoother | |
# Log in as ubuntu@ | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
# Install the required packages. |
Convert topojson file into SVG via Albers projection using node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
""" | |
Author: Bastin Robin | |
""" | |
import os | |
import logging | |
from urllib import urlencode | |
import datetime | |
import pandas as pd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.pyc |
- How media works
- There's a difference in positioning: in-depth vs breaking news
- Crunch in talent, margin pressures. Not enough staff to 'break news'
- Sources of breaking news: agencies, in-house, competition, social media
- Increasingly, social media is a dominant source
- How can we source social media data at scale
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.7z | |
*.list | |
*.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import geopandas | |
import os | |
import pandas as pd | |
import requests | |
def mcdonalds(): | |
url = 'https://www.mcdonalds.com/googleapps/GoogleRestaurantLocAction.do' | |
data = requests.get(url, params={ | |
'method': 'searchLocation', |