Skip to content

Instantly share code, notes, and snippets.

View boennemann's full-sized avatar

Stephan Bönnemann-Walenta boennemann

View GitHub Profile

Keybase proof

I hereby claim:

  • I am boennemann on github.
  • I am boennemann (https://keybase.io/boennemann) on keybase.
  • I have a public key whose fingerprint is F70C B400 09DB A932 CE78 80E2 FC69 316C 9866 3CFE

To claim this, I am signing this object:

Triage new issues/PRs on github

This document illustrates the steps the Hoodie community is taking to triage issues. The labels are used later on for planning releases. If you want to help by sorting issues please leave a comment here asking to join the triaging team.

Triaging Process

This process based on the idea of minimizing user pain from this blog post.

  1. Open the list of non triaged issues
@boennemann
boennemann / hybird.js
Created June 10, 2015 19:05
Using Babel while keeping individual commits and branches installable
var main
try {
main = require('../dist/main')
} catch (e) {
require('babel/register')
main = require('../src/main')
}
// do your thing
{
"scripts": {
"preparepublish": "changelog",
"prepublish": "transpile && minify && docs",
"mypublsih": "npm run preparepublish && npm publish"
}
}
@boennemann
boennemann / coloring.less
Created February 7, 2012 12:18
Environment aware coloring with lesscss
/* http://lesscss.org/ */
@color: #607794; // contrast -> white
@color: #6f86a4; // contrast -> black
@lightness: lightness(@color);
@contrast-color: color(~`(function(){if(parseInt('@{lightness}')>50){return '#000'}else{return '#fff'}})()`);
@boennemann
boennemann / .htaccess
Created March 22, 2012 10:59
Adapt WebApp Viewport & Icon settings of the "Add to Home Screen" option on iOS
AddType text/cache-manifest .appcache
@boennemann
boennemann / scale.less
Created November 2, 2012 16:12
Infinitly large WebApp Screenshots
@scale: 10;
/* Galaxy
@width: 360px;
@height: 640px;
*/
/* iPhone */
@width: 320px;
@height: 568px;
@boennemann
boennemann / Preferences.sublime-settings.json
Last active October 13, 2015 23:58
My Sublime Text 2 `Preferences.sublime-settings`
{
"auto_complete_triggers": [
{
"characters": "<",
"selector": "text.html"
},
{
"characters": "(=-",
"selector": "text.coffee"
}
@boennemann
boennemann / semantic-release-setup.sh
Last active October 26, 2015 21:54
semantic-release setup
#!/bin/sh
export GITHUB_TOKEN=$GH_TOKEN
curl -Lo travis_after_all.py https://git.io/vLSON
python travis_after_all.py
export $(cat $(pwd)/.to_export_back 2> /dev/null) &> /dev/null
rm travis_after_all.py .to_export_back
@boennemann
boennemann / Default (OSX).sublime-keymap.json
Created February 19, 2013 10:03
My Sublime Text 2 `Default (OSX).sublime-keymap`
[
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }
]