Skip to content

Instantly share code, notes, and snippets.

View ceronman's full-sized avatar

Manuel Cerón ceronman

View GitHub Profile
Buenos días,
Desde hace unos años junto con las fundaciones Karisma [1] y la FLIP [2], ambas
organizaciones que promueven o defienden derechos digitales entre otros, se ha venido
desarrollando una aplicación para la protección de periodistas y activistas llamada Hancel
[3][4] q contiene funcionalidades de Botón de pánico, tracking anónimo, anillos de
confianza privados entre otras. La aplicación se ha mostrado y a recibo apoyo en diversos
eventos a nivel mundial relacionados con temas de seguridad y privacidad para periodistas
y activistas.

Booking.com es uno de los sitios de e-commerce más grandes del mundo con millones de visitantes al día. Buscamos gente dispuesta a mudarse a Ámsterdam, donde están nuestras oficinas principales. La empresa ofrece completo soporte para la relocación.

Posiciones:

Desarrollador Backend. Buscamos buenos desarrolladores sin importar la tecnología que **usen. Nosotros usamos Perl, Java, MySQL Hadoop, Redis, Spark, entre muchos otros.

http://grnh.se/wg41qj

@ceronman
ceronman / messages.py
Created October 5, 2012 00:03
Code I'm proud of
# In Pixtream, a P2P program I wrote a few years ago, I used a custom binary
# protocol similar to the one used by BitTorrent. The peers in Pixtream
# communicate with each other using small binary messages sent through TCP.
# Each message started with four bytes indicating the message's length, and a
# single byte indicating the message's type. The protocol consisted of several
# different messages types.
# The Handshake message was something like this:
# [Message Length][Message Header][Protocol ID][Extensions][Peer ID]
# In bytes it would look like this:
@ceronman
ceronman / embassy.html
Created September 4, 2012 16:47
Small selenium script to check colombian french embassy dates.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="https://pastel.diplomatie.gouv.fr/" />
<title>Prueba</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
@ceronman
ceronman / gitcleanbranches.sh
Created June 19, 2012 20:13
gitcleanbranches.sh
#!/bin/bash
set -x
# update master first
git checkout master
git pull upstream master
git push origin master
for branch in `git branch --merged | grep -v '*' | tr -d ' '`
@ceronman
ceronman / gitcleanbranches
Created October 18, 2011 17:36
Git clean branches
#!/bin/bash
set -x
# update master first
git checkout master
git pull upstream master
git push origin master
for branch in `git branch --merged | grep -v '*' | tr -d ' '`
@ceronman
ceronman / gitnewbranch
Created October 18, 2011 17:35
Git new branch
#!/bin/bash
set -x -e
# update master first
git checkout master
git pull upstream master
git push origin master
case $# in
@ceronman
ceronman / gist:1206493
Created September 9, 2011 15:19
Git review
#!/bin/bash
set -x
set -e
# update master first
git checkout master
git pull upstream master
git push origin master
@ceronman
ceronman / post-commit
Created August 23, 2011 00:54
Publish-bot git commit hook
#!/bin/bash
HOST=
PORT=
PUBLISH_PASSWORD=
IRC_CHANNEL=
IRC_CHANNEL_PASSWORD=
CURRENT_BRANCH=$(git branch --no-color 2>/dev/null | grep '^*' | cut -d' ' -f2)
COMMIT_MESSAGE=$(git log -n 1 --pretty=short)