Skip to content

Instantly share code, notes, and snippets.

View richarddas's full-sized avatar

Richard D richarddas

View GitHub Profile
@richarddas
richarddas / readinglisturls.py
Last active November 16, 2023 21:24 — forked from robmathers/readinglisturls.py
Prints out URLs of items in Safari’s Reading List
#!/usr/bin/env python3
import plistlib
from shutil import copy
import subprocess
import os
from tempfile import gettempdir
import sys
import atexit
BOOKMARKS_PLIST = '~/Library/Safari/Bookmarks.plist'
@richarddas
richarddas / LocationHelper.h
Created October 15, 2012 10:05 — forked from chrishulbert/LocationHelper.h
Blocks location helper for finding location on an iphone
//
// LocationHelper.h
//
// Created by Chris Hulbert on 24/04/12.
// Modified by Richard Das 15/10/12.
//
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
@richarddas
richarddas / LocationHelper.m
Created October 14, 2012 21:18 — forked from chrishulbert/LocationHelper.m
Blocks location helper for finding location on an iphone
//
// LocationHelper.m
//
// Created by Chris Hulbert on 24/04/12.
// Modified by Richard Das 15/10/12.
//
#import "LocationHelper.h"
@interface LocationHelper()