Skip to content

Instantly share code, notes, and snippets.

@nkt
nkt / Results.md
Last active December 22, 2024 11:44
ReactPHP vs Node.js

wrk -t4 -c400 -d10s http://127.0.0.1:1337/

PHP

Running 10s test @ http://127.0.0.1:1337/
  4 threads and 400 connections
  Thread Stats   Avg      Stdev     Max   +/- Stdev
 Latency 7.02ms 6.94ms 82.86ms 85.27%
@erikhenrique
erikhenrique / bin-cc.md
Last active June 30, 2024 22:14
Bin de cartões de crédito para validação

Validação para cartão de crédito.

Bin e padrões para validação de cartão de crédito.

Bandeira Começa com Máximo de número Máximo de número cvc
Visa 4 13,16 3
Mastercard 5 16 3
@leocavalcante
leocavalcante / month-name.js
Created June 25, 2012 15:51
returns the name of the given month (pt)
(function ( global, undefined ) {
var months = ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'];
function monthName ( month, short ) {
month = parseInt( month ) - 1;
return short && month !== 4 ? months[month].slice( 0, 3 ) : months[month];
}
global.monthName = global.monthName || monthName;
} ( this ));
@leocavalcante
leocavalcante / slugify.js
Created June 25, 2012 15:19
slug strings
(function ( global, undefined ) {
function slugify ( str ) {
return str
.toLowerCase()
.replace( /á|à|â|ã/g, 'a' )
.replace( /é|è|ê/g, 'e' )
.replace( /í|ì|î/g, 'i' )
.replace( /ó|ò|ô|õ/g, 'o' )
.replace( /ú|ù|û/g, 'u' )
.replace( /ç/g , 'c' )
@leocavalcante
leocavalcante / observer.js
Created June 25, 2012 14:29
javascript observer object
(function ( global, undefined ) {
var observer = {},
topics = {};
observer.on = function ( topic, fn ) {
if ( !topics[topic] ) topics[topic] = [];
topics[topic].push( fn );
return topics[topic].length - 1;
};
observer.trigger = function () {
var args = Array.prototype.slice.call( arguments ),
@netojoaobatista
netojoaobatista / Date.prototype.diff.js
Created April 26, 2012 20:09
Returns the difference between two Date objects.
Object.defineProperty(Date.prototype,"diff",{
writable: false, configurable: false, enumerable: true,
/**
* Returns the difference between two Date objects.
* @param {Date} The date to compare to.
* @return {Object}
* @throws {TypeError}
*/
value: function(date) {