Skip to content

Instantly share code, notes, and snippets.

View diogok's full-sized avatar

Diogo Souza da Silva diogok

View GitHub Profile
@diogok
diogok / ruby.sh
Created April 3, 2014 01:20
Ruby and rbenv setup, for vagrant.
#!/usr/bin/env bash
# basic ruby
apt-get update
apt-get install aptitude libxslt-dev libxml2-dev ruby ruby1.9.1-dev libssl-dev build-essential -y
# config ruby gems to https
gem sources -r http://rubygems.org
gem sources -r http://rubygems.org/
gem sources -a https://rubygems.org
@diogok
diogok / docker2etcd.rb
Last active August 29, 2015 14:01
More complete "docker inspect" into etcd
#!/usr/bin/env ruby
require 'uri'
require 'json'
require 'net/http'
def http_get(uri)
JSON.parse(Net::HTTP.get(URI(uri)))
end
@diogok
diogok / README.md
Created June 6, 2014 20:23
No name

README is empty

@diogok
diogok / index.html
Created July 13, 2015 16:05
Grafico de contagem de downloads do gbif
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contador de Downloads de recurso do GBIF</title>
</head>
<body>
<canvas id="myChart" width="700" height="300"></canvas>
dofile("utils/http.lua")
dofile("utils/json.lua")
search = function(query)
local url = "http://en.wikipedia.org/w/api.php?action=query&list=search&format=json&srsearch=".. http.encode(query);
local headers = {
{
"User-Agent",
"AnySearch"
}
<?php
$mail = "email@gmail.com" ;
$header = "From: email@gmail.com\n" ;
$msg = "Mensagem" ;
$subject = "Assunto" ;
mail($mail,$subject,$msg,$header);
(ns twitter-search
(:require [clojure.contrib.json.read :as json])
(:require [clojure.contrib.http.agent :as http ])
(:import (java.net URL URLEncoder))
)
(defn search [word last-id]
(let [term (URLEncoder/encode word "UTF-8")
result (http/string (http/http-agent (str
"http://search.twitter.com/search.json?q="
@diogok
diogok / couchdb.clj
Created August 17, 2010 12:35
couchdb.clj
(ns couchdb
(:use clojure.data.json)
(:refer-clojure :exclude [get key]))
(defn server
"Wraps a server"
[host port] {:server (str "http://" host ":" port)})
(defn db
"Wraps a database on a server"
@diogok
diogok / etcd-to-env.sh
Last active December 6, 2015 07:55
Register running docker containers and vagrant vms into ETCD and reads them out into ENVironment vars.
#!/bin/bash
# this script tries to turn your etcd into env vars
[[ ! $EHOST ]] && EHOST="$(hostname -I | awk '{ print $1 }')"
[[ ! $EPORT ]] && EPORT=4001
[[ ! $ETCD ]] && ETCD="http://${EHOST}:$EPORT"
ETCD_FILE="/tmp/$(date +%s).etcd.json"
wget "$ETCD/v2/keys/?recursive=true" -O $ETCD_FILE
<?php
namespace cncflora\repository;
class Profiles {
public $user = null;
public $couchdb = null;
public $db = null;
public function __construct($user=null) {