Skip to content

Instantly share code, notes, and snippets.

View DreamingInBinary's full-sized avatar

Jordan Morgan DreamingInBinary

View GitHub Profile
@DreamingInBinary
DreamingInBinary / ASDisplayNode+BFREmptyView.m
Created November 14, 2017 16:07
Empty data set for ASDisplayNode
//
// ASDisplayNode+BFREmptyView.m
// Buffer
//
// Created by Jordan Morgan on 10/27/17.
//
#import "ASDisplayNode+BFREmptyView.h"
#import <objc/runtime.h>
#import <AsyncDisplayKit/AsyncDisplayKit.h>
cp -r /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0\ \(15A5278f\) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/
@DreamingInBinary
DreamingInBinary / oldComments.m
Last active March 28, 2017 17:24
Retrieving old comments in the Buffer Retreat App V1
PFQuery *query = [self.event.comments query];
[query includeKey:@"created_by"];
[query orderByAscending:@"createdAt"];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error){
//Handle comments
}];
//
// ViewController.swift
// The Unofficial IGN App
//
// Created by Jordan Morgan on 8/21/16.
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved.
//
import UIKit
//
// NetworkError.swift
// Unofficial Metacritic
//
// Created by Jordan Morgan on 8/29/16.
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved.
//
import Foundation
//
// IGNNetworking.swift
// Unofficial Metacritic
//
// Created by Jordan Morgan on 8/22/16.
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved.
//
import Foundation
//
// IGNNetworking.swift
// Unofficial Metacritic
//
// Created by Jordan Morgan on 8/21/16.
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved.
//
import Foundation
import UIKit