Skip to content

Instantly share code, notes, and snippets.

View ericcgu's full-sized avatar
🏠
Working remotely

Eric Gu (@ericguuu) ericcgu

🏠
Working remotely
  • New York, NY
View GitHub Profile
@elijahmanor
elijahmanor / .eslintrc
Last active August 16, 2021 20:29
Add Prettier & ESLint to VS Code with a Create React App
{
"extends": ["react-app", "plugin:prettier/recommended"]
}
@mpneuried
mpneuried / Makefile
Last active May 4, 2024 13:46
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
@remirobert
remirobert / preloadData.swift
Created November 11, 2014 19:24
Preload data for SpriteKit
import UIKit
import SpriteKit
class PreloadData: NSObject {
var data = Dictionary<String, AnyObject>()
class var sharedInstance: PreloadData {
struct Static {
static let instance: PreloadData = PreloadData()
}