Skip to content

Instantly share code, notes, and snippets.

View wendellpereira's full-sized avatar
💭
doing stuff

Wendell wendellpereira

💭
doing stuff
  • Minneapolis,MN, USA
View GitHub Profile

You can use Redux together with React, or with any other view library.
It is tiny (2kB, including dependencies).

New! Learn Redux from its creator:
Getting Started with Redux (30 free videos)

Testimonials

@wendellpereira
wendellpereira / README.md
Created March 12, 2019 16:59 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@wendellpereira
wendellpereira / arrayObjectIndexOf
Created March 28, 2017 22:06
Search a element by value in a Object Array
function arrayObjectIndexOf (key, prop, array) {
for (var i=0; i < array.length; i++) {
if (array[i][prop] === key) {
return i;
}
}
return -1;
};