Skip to content

Instantly share code, notes, and snippets.

View floriank's full-sized avatar
Infinite time resources.

Florian Kraft floriank

Infinite time resources.
View GitHub Profile
@floriank
floriank / branch_name.rb
Last active November 20, 2020 08:22
A small helper tool to help you think of branch names
#!/usr/bin/env ruby
=begin
0. Install `go-jira` (https://github.com/go-jira/jira)
1. Put this file into your $PATH and make it executable:
$ chmod +x /usr/local/bin/branch_name
2. You can use `branch_name <ISSUE_KEY>` to get a branch name
@floriank
floriank / keybase.md
Last active March 28, 2019 08:24
keybase.md

Keybase proof

I hereby claim:

  • I am floriank on github.
  • I am schnuffi (https://keybase.io/schnuffi) on keybase.
  • I have a public key whose fingerprint is 9928 920F 3CBC 6AB7 6BD1 7772 7EDD 540C EE36 2266

To claim this, I am signing this object:

@floriank
floriank / .bashrc
Created January 18, 2014 15:12
Quikly clean branches which have been merged into origin/master. Useful if you want to delete branches you have not use for anymore.
alias gitc="git branch --merged origin/master | xargs git branch -d"
@floriank
floriank / Gemfile
Created October 8, 2013 13:37 — forked from nebiros/Gemfile
group :production do
gem "unicorn"
end
@floriank
floriank / DecimalFormat.js
Last active December 23, 2015 17:59 — forked from oskansavli/DecimalFormat.js
The decimal format library updated with custom locale support.
/**
* @class DecimalFormat
* @constructor
* @param {String} formatStr
* @author Oskan Savli
*/
function DecimalFormat(formatStr, locale)
{
/**
* @fieldOf DecimalFormat