Skip to content

Instantly share code, notes, and snippets.

@kvnsmth
kvnsmth / get_oauth_access_token.rb
Created February 15, 2011 21:11
A quick script to get an OAuth access token
# run from a command line to get the access token information
require 'rubygems'
require 'oauth'
@consumer_key = "YOUR_CONSUMER_KEY"
@consumer_secret = "YOUR_CONSUMER_SECRET"
@consumer = OAuth::Consumer.new(@consumer_key, @consumer_secret, {
:site => "http://api.awesomeapp.com" # example: "http://api.twitter.com"
@kvnsmth
kvnsmth / Rakefile
Created November 26, 2012 18:20
Example Rakefile for distributing through TestFlight
PROJECT_NAME = "Awesome" # the name of your xcode project
APP_NAME = "Awesome" # whatever your app name is
@configuration = "Release" # xcode project configuration to use
@app_suffix = "-Staging"
SDK_VERSION = "5.1"
SDK_DIR = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator#{SDK_VERSION}.sdk"
BUILD_DIR = File.join(File.dirname(__FILE__), "build")
TESTFLIGHT_API_TOKEN = "TESTFLIGHT_API_TOKEN"
@kvnsmth
kvnsmth / roam-export-jq-examples.sh
Last active June 4, 2020 08:04
JQ recipes to use with Roam Export JSON
##########################################################################
## List Page Titles
##########################################################################
# list in same order as export
jq ".[].title" export.json
# sort by title
jq "sort_by(.title) | .[].title" export.json
@kvnsmth
kvnsmth / cloudSettings
Last active July 30, 2020 01:29
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-07-30T01:28:59.299Z","extensionVersion":"v3.4.3"}
@kvnsmth
kvnsmth / example-subtree-usage.md
Last active March 5, 2023 21:58
A real world usage for git subtrees.

Let's say you have an iOS project, and you want to use some external library, like AFNetworking. How do you integrate it?

With submodules

Add the project to your repo:

git submodule add git@github.com:AFNetworking/AFNetworking.git Vendor/AFNetworking

or something to that effect.