Skip to content

Instantly share code, notes, and snippets.

Abkhaz
Afar
Afrikaans
Akan
Albanian
Amharic
Arabic
Aragonese
Armenian
Assamese
@haroldjones
haroldjones / list_of_world_countries
Last active March 22, 2016 23:46 — forked from helmutgranda/list_of_world_countries
List of World Countries
Afghanistan
Albania
Algeria
Andorra
Angola
Antigua and Barbuda
Argentina
Armenia
Australia
Austria
@haroldjones
haroldjones / git-tfs.md
Created March 3, 2016 04:57 — forked from jschementi/git-tfs.md
Using TFS and GIT together

Using TFS and GIT together

What if your team uses TFS, but you want offline support? You can have a Git repo as well, but then getting your changes to TFS is burdensome. Here’s where a GIT to TFS bridge would be handy.

Setting up your repo

Here’s how to keep a TFS repository foo, and a GIT repository bar, in sync. First step is you need to create a new TFS workspace:

cd \

tf workspace /new /noprompt Foo

@haroldjones
haroldjones / ViewController.swift
Last active October 27, 2015 20:56
SWIFT: Print out all the fonts available to your application
import UIKit
class ViewController: UIViewController {
var stockTickerLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
for family: String in UIFont.familyNames()