Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View AugustoAleGon's full-sized avatar
🎯
Focusing

Augusto Gonzalez AugustoAleGon

🎯
Focusing
View GitHub Profile
@AugustoAleGon
AugustoAleGon / MEMOIZE.md
Created June 24, 2021 21:08 — forked from mrousavy/MEMOIZE.md
Memoize!!! 💾 - a react (native) performance guide
In computing, memoization or memoisation
is an optimization technique used primarily
to speed up computer programs by storing
the results of expensive function calls and  
returning the cached result when the same
inputs occur again.                                         
                                                     — wikipedia
@AugustoAleGon
AugustoAleGon / how-to-squash-commits-in-git.md
Created February 20, 2020 21:11 — forked from patik/how-to-squash-commits-in-git.md
How to squash commits in git

Squashing Git Commits

The easy and flexible way

This method avoids merge conflicts if you have periodically pulled master into your branch. It also gives you the opportunity to squash into more than 1 commit, or to re-arrange your code into completely different commits (e.g. if you ended up working on three different features but the commits were not consecutive).

Note: You cannot use this method if you intend to open a pull request to merge your feature branch. This method requires committing directly to master.

Switch to the master branch and make sure you are up to date:

@AugustoAleGon
AugustoAleGon / cloudSettings
Last active October 29, 2020 16:03
Cloud Settings VSCode
{"lastUpload":"2020-10-29T16:03:03.733Z","extensionVersion":"v3.4.3"}
@AugustoAleGon
AugustoAleGon / GitCommitEmoji.md
Created February 18, 2020 14:52 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@AugustoAleGon
AugustoAleGon / js
Last active December 9, 2017 20:26
MozioTest
1. Write a function that repeats the String with the following output:
String.prototype.repeatify = function(n){
//Base case
if( n == 1){
return this;
} else{
return (this + this.repeatify(n -1));
}
}