Skip to content

Instantly share code, notes, and snippets.

View juliomerisio's full-sized avatar

Julio Merisio juliomerisio

View GitHub Profile

JetBrains IDE Performance Config

High Performance Configuration for Jetbrains IDEs [IntelliJ, WebStorm, etc..]

Motivation

Once you step into the realm of multi-project development, large scale dev, or just have to have like 6 IDE's open. You really start to feel a performance hit on jetbrains IDEs.

This configuration aims to give at least 10x performance increases across the board.

Goals

@juliomerisio
juliomerisio / motivation.md
Created April 25, 2020 03:07 — forked from sibelius/motivation.md
usePermission react hook to handle frontend authorization concerns

why is this a React hook?

this is a simplified version of the production/real world version

You can consume roles from context/redux/relay or other place to improve dx and void bugs

[alias]
ps = push
ci = commit
co = checkout
cm = checkout master
cb = checkout -b
rb = rebase master
st = status -sb
sf = show --name-only
lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30
@juliomerisio
juliomerisio / css-snippets.json
Last active November 30, 2019 22:50
CSS Snippets that improve my productivity
{
"align-items": {
"prefix": "ai",
"body": "align-items: ${1|flex-start,flex-end,center,baseline,stretch,start,end,self-start,self-end|};$0",
"description": "initial value: stretch"
},
"align-items: baseline": {
"prefix": "aib",
"body": "align-items: baseline;$0"