Skip to content

Instantly share code, notes, and snippets.

View jrab66's full-sized avatar
🎣

Jose Barahona jrab66

🎣
View GitHub Profile
### Keybase proof
I hereby claim:
* I am jrab66 on github.
* I am jbarahona (https://keybase.io/jbarahona) on keybase.
* I have a public key ASAc4VdBOemra-D2m9uuUAIotFvUUqXCD3e1KfyveHNuoQo
To claim this, I am signing this object:
@jrab66
jrab66 / ranking.js
Created October 2, 2018 17:13
ranking and averages
const AverageRanking = arr => {
const reducer = (total,currentValue) => total + currentValue
const sum = arr.reduce(reducer);
return sum;
}
const RankingAscending = arr => {
for(let i =0;i<arr.length;i++){
for(let j =0;i<arr.length;j++){
@jrab66
jrab66 / LFCS_study
Created November 8, 2016 23:13 — forked from gojun077/LFCS_study
LFCS Study Outline 2015.02.28
* LFCS Domains 2015.02
Note - the domains will change somewhat in March 2015. SW RAID
with mdadm will be removed
** The Command Line
*** Editing text files on the CLI
Covers the use of the basic text editors nano and gedit as well
as the advanced editors _vi_ and _emacs_
- nano
simple CLI-based text editor