Skip to content

Instantly share code, notes, and snippets.

View joren's full-sized avatar

Joren De Groof joren

View GitHub Profile

Description

Simple Dashing widget that show the amount of open issues and bugs for a Gitlab project.

The widget was made by @joren for use @openminds. If you end up using this widget, please send me a tweet! I'd love to hear about it.

Dependencies

This widget requires the curb gem for easy curl request in Ruby and your Gitlab API key.

Verifying that "joren.id" is my Blockstack ID. https://onename.com/joren
Plugin 'kchmck/vim-coffee-script'
Plugin 'kien/ctrlp.vim'
Plugin 'tpope/vim-bundler'
Plugin 'tpope/vim-endwise'
Plugin 'tpope/vim-rails'
Plugin 'tpope/vim-surround'
Plugin 'vim-ruby/vim-ruby'
Plugin 'vim-scripts/tComment'
Plugin 'scrooloose/nerdtree'
Plugin 'rking/ag.vim'
@joren
joren / README.md
Last active December 21, 2015 14:18

Description

Simple Dashing widget that show the amount of open tickets for a SirPortly departement.

The widget was made by @joren for use @openminds. If you end up using this widget, please send me a tweet! I'd love to hear about it.

Dependencies

This widget requires the sirportly gem for API communication.

@joren
joren / analyzer we use
Created July 31, 2013 08:18
Elasticsearch problem. Same anaylizer, but two different ways to search. 1. {"query":{"query_string":{"query":"name:jore"}} 2. {"query":{"query_string":{"query":"jore"}} So once with a specific field and once without. Giving differen results when I search with or without a space in the query.
settings analysis: {
filter: {
myNgram: {
type: 'nGram',
max_gram: 12,
min_gram: 3
}
},
analyzer: {
name_analyzer: {
@joren
joren / Analyzer
Last active December 20, 2015 11:00
Elasticsearch problem
settings analysis: {
filter: {
myNgram: {
type: 'nGram',
max_gram: 12,
min_gram: 3
}
},
analyzer: {
name_analyzer: {
@joren
joren / .gitconfig
Created June 12, 2013 13:09
Git config
[user]
name = Joren De Groof
email = git@jorendegroof.be
[alias]
co = checkout
st = status
ci = commit
ic = commit
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
l = "!source ~/.githelpers && pretty_git_log"
@joren
joren / README.md
Last active December 17, 2015 01:09

Description

Simple Dashing widget that show the amount of participants for a Fikket event.

The widget was made by @joren for use @openminds. If you end up using this widget, please send me a tweet! I'd love to hear about it.

Dependencies

This widget requires the curb gem for easy curl request in Ruby and your Fikket API key.

@joren
joren / gist:4214088
Created December 5, 2012 09:08
git configs
# ~/.gitconfig
[user]
name = Joren
email = git@jorendegroof.be
[alias]
co = checkout
st = status
ci = commit
ic = commit
@joren
joren / projects.zsh
Created July 4, 2012 08:15
Oh my zsh projects auto complete
PROJECT_PATHS=(~/Projects/Openminds ~/Projects/Personal)
function project () {
cmd="cd"
file=$1
if [[ "open" == "$file" ]] then
file=$2
cmd=(${(s: :)EDITOR})
fi