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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Create Private Key with OpenSSL | |
| //openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -pkeyopt rsa_keygen_pubexp:3 -out privateKey.pem | |
| //Generate Public Key to be used at the client side (Mobile) | |
| //openssl pkey -in privateKey.pem -out publicKey.pem -pubout | |
| const crypto = require('crypto') | |
| const fs = require('fs') | |
| const private_key = fs.readFileSync('digital_sign/privateKey.pem', 'utf-8') | |
| //File to be signed | |
| const package = fs.readFileSync('webpackage.zip') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://sha256timestamp.ws.symantec.com/sha256/timestamp | |
| http://timestamp.globalsign.com/scripts/timstamp.dll | |
| https://timestamp.geotrust.com/tsa | |
| http://timestamp.verisign.com/scripts/timstamp.dll | |
| http://timestamp.comodoca.com/rfc3161 | |
| http://timestamp.wosign.com | |
| http://tsa.startssl.com/rfc3161 | |
| http://time.certum.pl | |
| http://timestamp.digicert.com | |
| https://freetsa.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity >=0.4.22 <0.6.0; | |
| contract AndiroVoteToken { | |
| struct Voter { | |
| uint weight; | |
| bool voted; | |
| uint8 vote; | |
| address delegate; | |
| } | |
| struct Proposal { |
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
To be completed!
A Pen by Mohamed Moughamir on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0x8A1d23a8CD0d453A50D783F8F775007c75D0867a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0xF7AE28007FE3A251104D2ab21BF92DA70890c259 |