Skip to content

Instantly share code, notes, and snippets.

View NatuMyers's full-sized avatar
🎯
Focusing

Natu Myers NatuMyers

🎯
Focusing
View GitHub Profile
@NatuMyers
NatuMyers / getting-started.md
Created October 12, 2016 23:32 — forked from dwayne/getting-started.md
Django Notes (Python 3.5.1 and Django 1.9.x)

Getting Started

Install Python, follow the steps here.

Steps I take when beginning a new Django project.

$ mkdir [project_name]_project
$ cd [project_name]_project
@NatuMyers
NatuMyers / gist:374f3457915d7b35f4d1
Created November 27, 2015 18:28 — forked from hamzasood/gist:02e6e87835a17f4e1b9e
Apple Pencil 3D Touch
#import <UIKit/UIKit.h>
#import <objc/runtime.h>
// Hook with ObjC runtime functions
%config(generator=internal)
// New methods created below
@interface UIGestureRecognizer ()
+ (void)hs_beginForcingAllNewGestureRecognizersToAllowPencilInput;
+ (void)hs_endForcingAllNewGestureRecognizersToAllowPencilInput;