Skip to content

Instantly share code, notes, and snippets.

@hirokiky
hirokiky / README.md
Created June 8, 2015 00:31
Dynamic locust tasks

Dynamic tasks for locust.io

Install

pip install locustio

Try it

@d3noob
d3noob / .block
Last active January 13, 2022 22:59
Interactive Linux process tree using d3.js
license: mit
@bricef
bricef / AES.c
Last active May 26, 2025 08:43
A simple example of using AES encryption in Java and C.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
* MCrypt API available online:
* http://linux.die.net/man/3/mcrypt
*/
#include <mcrypt.h>
@searls
searls / maven-git-flow.sh
Created June 24, 2011 00:25
My approximation of nvie's git flow when using maven-release-plugin to cut releases. - http://nvie.com/posts/a-successful-git-branching-model/
# How to perform a release with git & maven following the git flow conventions
# ----------------------------------------------------------------------------
# Finding the next version: you can see the next version by looking at the
# version element in "pom.xml" and lopping off "-SNAPSHOT". To illustrate,
# if the pom's version read "0.0.2-SNAPSHOT", the following instructions would
# perform the release for version "0.0.2" and increment the development version
# of each project to "0.0.3-SNAPSHOT".
# branch from develop to a new release branch
git checkout develop