Skip to content

Instantly share code, notes, and snippets.

View kocheck's full-sized avatar
📱

Kyle Kochanek kocheck

📱
View GitHub Profile
@hirajanwin
hirajanwin / Automator Outline - Rajan 25Jan
Created January 25, 2022 11:16
This automator.design plugin will outline child components in selection. Even if it's not on 0,0 position. Use this file for checking it out.
{
"id": "kytz3856ioelgfp8kuo",
"name": "Outline Rajan ",
"description": "",
"color": "yellow",
"actions": [
{
"id": "kxhwzmxaw0m900n8f5c",
"command": {
"name": "getCurrentSelection",
@jordansinger
jordansinger / Import from Airtable.json
Last active January 21, 2022 11:29
Importing from Airtable into Figma - Automator automation
{
"id": "kyiz0pkjsx75lgnm6wi",
"name": "Import from Airtable",
"description": "",
"color": "red",
"actions": [{
"id": "kyj1sgob42s5s6o8ef8",
"command": {
"name": "note",
"metadata": {
@woeldiche
woeldiche / Procfile
Last active December 4, 2018 19:30
Share your Framer.js prototypes
web: NODE_ENV=production node server.js
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream