- Update HISTORY.md
- Commit the changes:
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
| #!/bin/bash | |
| # | |
| # sqlite3_backup.sh | |
| # Script for backing up sqlite3 database with integrity checking | |
| # Intended for use with cron for regular automated backups | |
| # | |
| # @author <shaune@princeton.edu> | |
| # |
| import operator | |
| import functools | |
| import itertools | |
| import os | |
| import json | |
| import struct | |
| #import math | |
| import bitarray |
| #pragma once | |
| #pragma warning(push) | |
| #pragma warning(disable:4996) | |
| #include <cassert> | |
| #include <memory> | |
| #include <vector> | |
| The MIT License (MIT) | |
| Copyright (c) <year> <copyright holders> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
| // Copyright (c) 2013 Amanieu d'Antras | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: | |
| // | |
| // The above copyright notice and this permission notice shall be included in |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."
| #!/usr/bin/env bash | |
| size=1024 # MB | |
| mount_point=$HOME/tmp | |
| name=$(basename "$mount_point") | |
| usage() { | |
| echo "usage: $(basename "$0") [mount | umount | remount | check | orphan]" \ | |
| "(default: mount)" >&2 | |
| } |
| #!/bin/sh | |
| # | |
| # Author: Matthieu Prat <matthieuprat@gmail.com> | |
| # Date: 01/22/2015 | |
| # | |
| # Sync a local work tree with a remote one. | |
| # It's rsync on steroids within large Git repositories. | |
| USAGE='<repository>' | |
| LONG_USAGE='Sync a local work tree with a remote one.' |
| {-# LANGUAGE TypeSynonymInstances #-} | |
| import Data.Monoid | |
| import Data.Maybe | |
| -- How much water does a "histogram" hold? | |
| -- | |
| -- Inspired by Guy Steele's talk "Four Solutions to a Trivial Problem" | |
| -- https://www.youtube.com/watch?v=ftcIcn8AmSY |