Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am poborin on github.
  • I am poborin (https://keybase.io/poborin) on keybase.
  • I have a public key ASBidzGUxOYl8hwZ1o86C2T52Bao903oUILFnx2Fq2exmQo

To claim this, I am signing this object:

@poborin
poborin / ItunesSearch
Created August 29, 2018 01:37
iTunes search lab
//: Playground - noun: a place where people can play
import Foundation
import PlaygroundSupport
var url = URL(string: "https://itunes.apple.com/search?")!
struct MusicTrack: Decodable {
enum CodingKeys: String, CodingKey {
case artistID = "artistId"
@poborin
poborin / bootstrap.sh
Created May 16, 2018 02:52
This is a handy file to install build dependnecies
#!/bin/bash
# Installs tools to build and initialises Carthage dependencies
# Run this after your initial clone
set -eu
ruby_version=2.5.0
function resolve_brew() {
if [ ! `which brew 2> /dev/null` ]; then