Skip to content

Instantly share code, notes, and snippets.

View jodem's full-sized avatar

Jocelyn Demoy jodem

  • Sage
View GitHub Profile
@robizz
robizz / pom.xml
Created April 19, 2015 20:27
maven configuration to run AWS SWF Java Library with Java 8 and AWS SDK 1.9.27 in Eclipse
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- adapted from: https://github.com/pedropaulovc/aws-flow-maven-eclipse-samples
then upgraded to 1.9.27 and java 1.8 following http://stackoverflow.com/a/28843218/4094090 -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.amazonaws.services.simpleworkflow.flow</groupId>
<artifactId>startstop</artifactId>
<version>1.8.4</version>
@nocturnalgeek
nocturnalgeek / MailinatorAliases
Last active February 23, 2026 06:30
A list of alternate domains that point to @mailinator.com
@binkmail.com
@bobmail.info
@chammy.info
@devnullmail.com
@letthemeatspam.com
@mailinater.com
@mailinator.net
@mailinator2.com
@notmailinator.com
@reallymymail.com
@ezhuk
ezhuk / haproxy_force_https
Last active March 28, 2017 20:37
Force HTTPS in HAProxy behind Amazon ELB.
frontend main *:80
acl is_http hdr(X-Forwarded-Proto) http
redirect prefix https://example.com code 301 if is_http
@jbenet
jbenet / simple-git-branching-model.md
Last active February 26, 2026 00:08
a simple git branching model

a simple git branching model (written in 2013)

This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.

Update: Woah, thanks for all the attention. Didn't expect this simple rant to get popular.

@pitch-gist
pitch-gist / gist:2999707
Created June 26, 2012 22:21
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>