I hereby claim:
- I am malditogeek on github.
- I am malditogeek (https://keybase.io/malditogeek) on keybase.
- I have a public key whose fingerprint is 655D 7F22 BF9A B53B 0A76 A203 BEC1 5B42 8C52 9E28
To claim this, I am signing this object:
{ | |
"openapi": "3.1.0", | |
"info": { | |
"title": "Enode API", | |
"version": "2025-10-01", | |
"description": "The Enode API is designed to make smart charging applications easy to develop. We provide an abstraction layer that reduces the complexity when extracting vehicle data and sending commands to vehicles from a variety of manufacturers.\nThe API has a RESTful architecture and utilizes OAuth2 authorization.", | |
"license": { | |
"name": "Enode Commercial License", | |
"url": "https://enode.io" | |
} |
'use strict' | |
const WKX = require('wkx') | |
const Sequelize = require('sequelize') | |
// Workaround for the missing JSON-C (ST_GeomFromGeoJSON) dep in CloudSQL | |
// Issue: https://issuetracker.google.com/issues/37302950 | |
class CloudSQLGeo extends Sequelize.DataTypes.GEOGRAPHY { | |
constructor() { | |
super() |
node-gitter PRIVMSG #malditogeek/test ``` | |
node-gitter PRIVMSG #malditogeek/test multi | |
node-gitter PRIVMSG #malditogeek/test line | |
node-gitter PRIVMSG #malditogeek/test msg | |
node-gitter PRIVMSG #malditogeek/test ``` |
IRC = require 'irc' | |
Gitter = require 'node-gitter' | |
TOKEN = process.env.TOKEN | |
ROOM = process.env.ROOM | |
CHANNEL = process.env.CHANNEL | |
gitter = new Gitter(TOKEN) | |
irc = new IRC.Client |
I hereby claim:
To claim this, I am signing this object:
~ $> nslookup vmux.co | |
Server: 8.8.8.8 | |
Address: 8.8.8.8#53 | |
Non-authoritative answer: | |
Name: vmux.co | |
Address: 165.225.131.4 | |
Name: vmux.co | |
Address: 165.225.129.253 | |
Name: vmux.co |
class LibratoProxy | |
def on_readable(socket, messages) | |
messages.each {|msg| post_to_librato *msg.copy_out_string.split(' ') } | |
end | |
def post_to_librato(channel, metric_in_json) | |
metric = JSON.parse(metric_in_json) | |
# call to Librato API | |
end |
# Send notifications to Airbrake asynchronously using em-http. | |
# Doesn't handle Airbrake conn options but works for the default settings. | |
module Airbrake | |
class Sender | |
def send_to_airbrake(data) | |
client = EM::HttpRequest.new(url) | |
client.post(:head => HEADERS, :body => data) | |
rescue => ex | |
p [:AIRBRAKE_ERROR, ex.message, data] | |
end |
after "deploy:update", "deploy:cleanup" | |
after "deploy:update", "foreman:export" | |
after "deploy:symlink", "update_haproxy_config_symlink" | |
namespace :deploy do | |
task :stop do | |
run "sudo stop goliath_app" | |
end | |
task :start do | |
run "sudo start goliath_app" |
require 'nokogiri' | |
require 'open-uri' | |
require 'pp' | |
# User provided Book Depository wishlist. | |
wishlist_url = 'http://www.bookdepository.com/wishlist/507838/Mauro-Pompilio' | |
# Fectch the wishlisted books. | |
def fetch_books(wishlist_url, page=1) | |
doc = Nokogiri::HTML(open("#{wishlist_url}/?page=#{page}")) |