This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ "key": "ctrl+cmd+left", "command": "workbench.action.navigateBack" }, | |
{ "key": "ctrl+cmd+right", "command": "workbench.action.navigateForward" }, | |
{ "key": "cmd+y", "command": "editor.action.goToDeclaration", | |
"when": "editorTextFocus" }, | |
{ "key": "cmd+r", "command": "workbench.action.debug.start", | |
"when": "!inDebugMode" }, | |
{ "key": "cmd+s", "command": "workbench.action.files.saveAll" } | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pico-8 cartridge // http://www.pico-8.com | |
version 5 | |
__lua__ | |
-- A* pathfinding | |
-- by @richy486 | |
function _init() | |
printh("---------------") | |
printh("starting a star") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Protocols.html | |
print("Brick maker!") | |
// for testing on http://swiftlang.ng.bluemix.net/ | |
typealias CGFloat = Float | |
struct CGPoint { | |
var x: CGFloat | |
var y: CGFloat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Pool tests | |
// @richy486 | |
// using Then | |
// https://github.com/devxoul/Then | |
public protocol Then {} | |
extension Then { | |
/// Makes it available to set properties with closures just after initializing. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Pool.swift | |
// @richy486 | |
// | |
// Created by Richard Adem on 8/02/2016. | |
// Copyright © 2016 Richard Adem. All rights reserved. | |
// | |
import Foundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://alcatraz.io/ | |
curl -fsSL https://raw.githubusercontent.com/supermarin/Alcatraz/deploy/Scripts/install.sh | sh | |
https://github.com/omz/ColorSense-for-Xcode | |
https://github.com/johnno1962/GitDiff | |
https://github.com/stefanceriu/SCXcodeSwitchExpander | |
https://github.com/stefanceriu/SCXcodeEditorInset | |
https://github.com/kattrali/deriveddata-exterminator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// RSTimingFunction+CAMedia.h | |
// | |
// Created by Richard Adem for Raphael Schaad's RSTimingFunction | |
// | |
#import "RSTimingFunction.h" | |
@interface RSTimingFunction (CAMedia) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git rebase -i master | |
# if conflict | |
# see which files are conflicted | |
$ git status | |
# fix it and do: | |
$ git commit -a | |
# then if it's all good |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
View hierarchy | |
[[UIWindow keyWindow] recursiveDescription] | |
View controller hierachy | |
[[[UIWindow keyWindow] rootViewController] _printHierarchy] |