Keybase proof
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:
-- 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 |
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, { |
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" |
(function () { | |
with (this) { | |
!function (context) { | |
context.hello = function (msg) { | |
alert(msg); | |
}; |
var props = { | |
foo: true, | |
bar: 1, | |
baz: false | |
}; | |
if (props.baz) { | |
console.log("Won't work") | |
} |
app.get('/help', function(req, res){ | |
res.send('some help'); | |
}); | |
app.get('/search/:query/p:page', function(req, res){ | |
var query = req.params.query | |
, page = req.params.page; | |
res.send('search "' + query + '", page ' + (page || 1)); | |
}); |