Skip to content

Instantly share code, notes, and snippets.

View josh-'s full-sized avatar

Josh Parnham josh-

View GitHub Profile
@josh-
josh- / export_tabs.rb
Created February 12, 2018 11:05
Export iCloud Tabs to CSVs
#!/usr/bin/env ruby
require 'net/http'
require 'json'
require 'csv'
class CloudyTabsServer
attr_accessor :port
attr_accessor :http

Keybase proof

I hereby claim:

  • I am josh- on github.
  • I am joshparnham (https://keybase.io/joshparnham) on keybase.
  • I have a public key whose fingerprint is 9CE6 F9FB 122D 6F0B 42FD 55EF E62D FB51 3F98 535D

To claim this, I am signing this object:

@josh-
josh- / Gemfile
Created April 22, 2015 10:15
Grape issue code
source 'https://rubygems.org'
gem 'grape', '~> 0.10.1'
gem 'activesupport', '~> 4.2.0'
@josh-
josh- / JPAppDelegate.m
Created April 23, 2014 03:46
NSMenu Services Example
@implementation JPAppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
[NSApp registerServicesMenuSendTypes:[NSArray arrayWithObjects:NSStringPboardType, nil] returnTypes:[NSArray arrayWithObjects:nil]];
[self updateMenu];
}
#pragma mark - Services