Skip to content

Instantly share code, notes, and snippets.

View matax87's full-sized avatar

Matteo Matassoni matax87

  • DIMENSION S.r.l.
  • Rovereto, Trento, Italy
  • X @matax
View GitHub Profile
@matax87
matax87 / instapapercsv_to_readinglist.py
Created May 13, 2013 14:12
Use this script to export Instapaper unread list to Safari's Reading List. Download your instapaper-export.csv from http://www.instapaper.com/u in the "Export CSV…" section on the right.
#!/usr/bin/python
import os
import csv
reader = csv.DictReader(open('./instapaper-export.csv', 'rb'), delimiter = ',', quotechar = '"')
unread = []
for row in reader:
@matax87
matax87 / MTXTableViewController.h
Created November 8, 2018 11:07
Customize UITableViewController table view class
//
// MTXTableViewController.h
// InBankMobile
//
// Created by Matteo Matassoni on 08/11/2018.
// Copyright © 2018 Matteo Matassoni. All rights reserved.
//
#import <UIKit/UIKit.h>