Skip to content

Instantly share code, notes, and snippets.

View moughamir's full-sized avatar
:shipit:
Inspecting elements

Mohamed Moughamir moughamir

:shipit:
Inspecting elements
View GitHub Profile
@moughamir
moughamir / mapDispatchToProps.md
Created September 6, 2018 17:52 — forked from heygrady/mapDispatchToProps.md
Redux containers: mapDispatchToProps

Redux containers: mapDispatchToProps

This document details some tips and tricks for creating redux containers. Specifically, this document is looking at the mapDispatchToProps argument of the connect function from [react-redux][react-redux]. There are many ways to write the same thing in redux. This gist covers the various forms that mapDispatchToProps can take.

@moughamir
moughamir / keybase.md
Created June 28, 2018 09:19
keybase.md

Keybase proof

I hereby claim:

  • I am moughamir on github.
  • I am omnizya (https://keybase.io/omnizya) on keybase.
  • I have a public key ASDJHmguZx6oEZxyaEYP8NkUMcrE7ycAW4hSy6kYIQuVLgo

To claim this, I am signing this object:

@moughamir
moughamir / README.md
Created May 10, 2018 17:26 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@moughamir
moughamir / init.sh
Created March 6, 2018 13:16
Dev Env Init
#!/bin/bash
# Install Yarn
curl -o- -L https://yarnpkg.com/install.sh | bash
# Update Terminal
git clone --depth=1 https://github.com/Bash-it/bash-it.git ~/.bash_it
echo export BASH_IT_THEME="modern" >> ~./bashrc
~/.bash_it/install.sh
source ~./bashrc
@moughamir
moughamir / eth
Created September 6, 2017 13:44
EthWallet ofc
0x8A1d23a8CD0d453A50D783F8F775007c75D0867a
0xF7AE28007FE3A251104D2ab21BF92DA70890c259

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
$.getJSON('tarot.json', function(data){
console.log(data);
var deck = data.deck.map(function(card){
return card.Name + ': ' + card.value;
});
}, function(success){
console.info("done");
});
@moughamir
moughamir / card-shuffle-animation.markdown
Last active November 28, 2016 18:31
Card Shuffle Animation