Skip to content

Instantly share code, notes, and snippets.

View santiago-su's full-sized avatar

Santiago Suárez santiago-su

View GitHub Profile
// Playing around with currying and composing
const curry = fn => {
const arity = fn.length;
return function _curry(...args) {
if (args.length < arity) {
return _curry.bind(null, ...args);
}
@santiago-su
santiago-su / UsefulSoftware.txt
Last active February 3, 2020 14:02
Useful Software OS X
zShell
ohmyzsh
dBeaver
flux
boom
rescuetime
theunarchiver
kitematic
robo 3t
spectacle
@santiago-su
santiago-su / README.md
Last active May 7, 2019 13:03
Best Practices Frontend/React/CI

A bunch of best practices/packages/whatever-i-find-convenient that I've gathered from work and people for coding in javascript.

General react

  • eslint
  • prettier
  • eslint-config-sexy
  • eslint-config-prettier
  • eslint-plugin-prettier
  • jest/mocha/chai Unit testing
@santiago-su
santiago-su / config.yml
Created February 13, 2019 10:24
.circle/config.yml
version: 2
jobs:
build:
docker:
- image: 'circleci/node:latest'
steps:
- checkout
- run:
name: install
command: npm install