I hereby claim:
- I am criso on github.
- I am cris_o (https://keybase.io/cris_o) on keybase.
- I have a public key ASDj-vj41D6LRTA8W5IbAbIeo5TQLfZzWh8jh5QOSSjkngo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
const tabBtns = this.state.tabs.map((tab, index) => { | |
const tabKey = tab.key; | |
const style = this.buildMotionStyle(tabKey); | |
const isActive = this.props.selectedTabKey === tabKey; | |
return ( | |
<Motion style={style} key={index}> | |
{ | |
({scale, x, cursor, zIndex}) => { | |
return React.cloneElement(tab, { |
// Scenario: | |
// Compnonent BAR requests data from the server via an action `REQ_BAR` | |
// Component FOO receives data from a previous request `REQ_FOO_SUCCESS` | |
// --- Cannot dispatch in the middle of a dispatch. --- error is triggered | |
// `WaitFor` doesn't seem right, since the stores for these two components aren't related e.g: | |
// The store used for component FOO does not need any data from the store used for component BAR | |
// ActionsCreators | |
// =================== | |
var ActionCreators = { |
// Search form component | |
window.Ui = window.Ui || {}; | |
Ui.SearchForm = (function() { | |
return flight.component(SearchForm); | |
function SearchForm() {} | |
}()); | |
// validation mixin |
function randomTime() { | |
return Math.floor(Math.random() * 100) + 100; | |
} | |
function asyncFoo(_callback) { | |
var err = false; | |
setTimeout(function() { | |
_callback({foo: "I am foo"}, err); | |
}, randomTime()); |
#include <time.h> | |
#include "lib/dbg.h" | |
void my_function() { | |
} | |
int main (int argc, char const* argv[]) { | |
clock_t begin, end; | |
double time_spent; |
#ifndef __dbg_h__ | |
#define __dbg_h | |
#include <stdio.h> | |
#include <errno.h> | |
#include <string.h> | |
#define ANSI_COLOR_RED "\x1b[31m" | |
#define ANSI_COLOR_GREEN "\x1b[32m" | |
#define ANSI_COLOR_YELLOW "\x1b[33m" |
-- Set Root Password | |
mysqladmin -u root password <YOURNEWPASSWORD> | |
-- Set / Change MySQL Users Passwords from the Linux Shell | |
mysqladmin -u <username >-h <host> -p password <newpassword> | |
-- How To Connect to MySQL | |
mysql -ur <username> -p | |
mysql -h <hostname> -u <username> -p |
(function () { | |
with (this) { | |
!function (context) { | |
context.hello = function (msg) { | |
alert(msg); | |
}; |