Skip to content

Instantly share code, notes, and snippets.

View gustavopaes's full-sized avatar

Gustavo Paes gustavopaes

View GitHub Profile
@gustavopaes
gustavopaes / loadScript.js
Created September 14, 2012 16:37
load a script, like a jsonp file, with callback and scope support
/**
* Carrega um script e executa callback
*/
(function(window, document, head) {
if(!window.loadScript) {
window.loadScript = function(url, callback, scope, charset) {
var sc = document.createElement('script');
sc.type = 'text/javascript';
sc.async = true;
sc.charset = charset || "utf-8";
@gustavopaes
gustavopaes / frete.correios.php
Created August 18, 2013 15:12
Obter frete dos correios
<?php
/**
* Create a link by joining the given URL and the parameters given as the second argument.
* Arguments : $url - The base url.
* $params - An array containing all the parameters and their values.
* $use_existing_arguments - Use the parameters that are present in the current page
* Return : The new url.
* Example :
* getLink("http://www.google.com/search",array("q"=>"binny","hello"=>"world","results"=>10));
@gustavopaes
gustavopaes / amp-story-issue.html
Created April 2, 2018 16:22
amp-story-issue.html
<!doctype html>
<html amp lang="pt">
<head>
<title>UOL Copa do Mundo 2018</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,minimal-ui">
<link rel="shortcut icon" href="https://conteudo.imguol.com.br/favicon.ico" type="image/x-icon">
<script src="https://cdn.ampproject.org/v0.js" async></script>
<script custom-element="amp-ad" src="https://cdn.ampproject.org/v0/amp-ad-0.1.js" async></script>
@gustavopaes
gustavopaes / atom-update
Created December 15, 2017 19:28
Atom update to specific version
#!/bin/bash
atom -v
echo "---------"
curl -q -s https://api.github.com/repos/atom/atom/tags | grep "name" | awk -F "\"" '{ print $4 }' | head -n 10
echo
echo -n "Update to (ctrl+c to cancel): "
#!/bin/sh
# Constantes indicando ON e OFF do relay
ON=1
OFF=0
# Hora e minuto que a irrigacao deve ocorrer
H_PERIOD=8
M_PERIOD=0
@gustavopaes
gustavopaes / benchmark.js
Created January 28, 2017 20:00
simple rabbitmq benchmark
const amqplib = require('amqplib');
const connect = amqplib.connect('amqp://172.17.0.2:5672');
const QUEUE_NAME = 'benchmark';
const TOTAL_MESSAGES = process.argv[2] || 10;
let SEND_MESSAGES = 0;
let RECEIVED_MESSAGES = 0;
let sendingStartTime;
@gustavopaes
gustavopaes / handleJsonp.js
Created May 25, 2016 16:21
mithril.js feature request: static jsonp callback name
window.jsonpRequestQueue = {};
function handleJsonp(options) {
var callbackKey = options.callback || ("mithril_callback_" +
new Date().getTime() + "_" +
(Math.round(Math.random() * 1e16)).toString(36))
var script = $document.createElement("script")
// callback já existe, faz fila
if(typeof global[callbackKey] === 'function') {
@gustavopaes
gustavopaes / start-irrigation.sh
Last active February 27, 2016 13:13
Shell script to start irrigation using Omega Hardware and Relay Expansion
#!/bin/sh
## Usage example, starts and irrigates for 30 seconds:
## start-irrigation.sh 30
APP_PATH="/app"
relay-exp -i
force_stop() {
@gustavopaes
gustavopaes / log.js
Created January 3, 2014 19:36
Active (or not) console log.
var log = /debug=true/.test(location.search) ? (function(nav) {
// ie
if(/MSIE/.test(nav) === true) return console.log;
return function() {
console.log.apply(console, arguments);
}
})(navigator.userAgent) : function() {};