Skip to content

Instantly share code, notes, and snippets.

@zadr
zadr / tttt.swift
Last active February 9, 2020 01:16
terminal's tiny todo tool
View tttt.swift
// 1. copy file to $PATH somewhere
// 2. chmod a+x it
// 3. run with `tttt` or `tttt [task to track]`
// 4. check out ~/Desktop/todo.txt
#!/usr/bin/env swift
import Foundation
let dateFormatter = DateFormatter()
@zadr
zadr / framework-diff.sh
Last active June 22, 2020 23:39
objc framework diffing for all .frameworks in xcode
View framework-diff.sh
set -x
set -k INTERACTIVE_COMMENTS=1 # treats everything after # as being a comment
# vars
export XCODE_RELEASE_PATH="/Applications/Xcode-11.5.app"
export XCODE_BETA_PATH="/Applications/Xcode-12-beta.app"
export XCODE_FRAMEWORKS_PATH="Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks"
export OUTPUT="${HOME}/Desktop/iosapidiff"
mkdir "${OUTPUT}"
View UIBezierPath+Smoothing.swift
import UIKit
extension UIBezierPath {
// reference: https://github.com/erica/iOS-6-Cookbook/blob/master/C01%20Gestures/08%20-%20Smoothed%20Drawing/UIBezierPath-Points.m
var points: [CGPoint] {
var bezierPoints = [CGPoint]()
cgPath.applyWithBlock { (element: UnsafePointer<CGPathElement>) in
if element.pointee.type != .closeSubpath {
bezierPoints.append(element.pointee.points.pointee)
@zadr
zadr / steps.txt
Last active August 10, 2022 19:31
MacPorts install without root privileges
View steps.txt
# fetch MacPorts sources
curl -LO https://distfiles.macports.org/MacPorts/MacPorts-2.4.1.tar.gz
# extract them and get into the dir
tar -jxf MacPorts-2.4.1.tar.gz
cd MacPorts-2.4.1
# configure things
## If you want MacPorts to run in a custom prefix, pass in the following arguments: --prefix=/usr/local --with-unsupported-prefix --with-applications-dir=/Applications
./configure --with-no-root-privileges --with-install-user=$USER --with-install-group=staff --silent
@zadr
zadr / ??.swift
Last active April 26, 2017 21:36
Ternary-ish operators without an else clause
View ??.swift
infix operator ?? : Branching
precedencegroup Branching {
associativity: left
lowerThan: ComparisonPrecedence // also accounts for NilCoalescingPrecedence
}
/// Ternary-y operators without an else clause
///
/// - Parameter lhs: The Boolean value to evaluate
@zadr
zadr / icons.jsx
Last active March 30, 2017 22:10
one-off Adobe Illustrator script to export a document with one artboard to iOS app icons
View icons.jsx
var originalDocumentSize = 1024
var folder = Folder.selectDialog();
var document = app.activeDocument;
document.artboards.setActiveArtboardIndex(0);
if (document && document.artboards[0]) {
// Icons for Universal Apps; https://developer.apple.com/library/content/qa/qa1686/_index.html
scaleArtboardAndSave((512 / originalDocumentSize) * 100);
View A.h
NS_ASSUME_NONNULL_BEGIN
@interface WObject : NSObject <NSCopying, NSSecureCoding>
+ (instancetype) objectWithJSONRepresentation:(NSDictionary *) JSONRepresentation;
+ (instancetype) objectWithJSONRepresentation:(NSDictionary *) JSONRepresentation excludingKeys:(NSArray *__nullable) keys;
+ (NSString *__nullable) replacementKeyForKey:(NSString *__nonnull) key;
+ (NSFormatter *__nullable) formatterForKey:(NSString *__nonnull) key;
+ (NSValueTransformer *__nullable) transformerForKey:(NSString *__nonnull) key;
View Demo.m
@interface NSUserDefaults (idk)
@property (nonatomic, copy) NSString *jam;
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)notification {
[NSUserDefaults standardUserDefaults].jam = @"strawberry";
NSLog(@"%@", [NSUserDefaults standardUserDefaults].jam);
}
@end
@zadr
zadr / CV.m
Created March 8, 2017 19:08
UIImage from CMSampleBuffer
View CV.m
#import <CoreMedia/CoreMedia.h>
#import <CoreVideo/CoreVideo.h>
#import <UIKit/UIKit.h>
// https://developer.apple.com/library/content/qa/qa1702/_index.html
+ (UIImage * _Nullable)imageWithSampleBuffer:(CMSampleBufferRef _Nonnull)sampleBuffer {
UIImage *returnValue = nil;
CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
CVPixelBufferLockBaseAddress(imageBuffer, 0); {
@zadr
zadr / beep.swift
Last active November 2, 2016 15:04
View beep.swift
fileprivate protocol SectionData {
static func numberOfRows(expanded: Bool) -> Int
func cell(from tableView: UITableView) -> UITableViewCell
}
fileprivate enum Section: Int {
case x
case y