Skip to content

Instantly share code, notes, and snippets.

View rickbarrette's full-sized avatar

Rick Barrette rickbarrette

View GitHub Profile
@rickbarrette
rickbarrette / converter.cs
Created June 28, 2012 17:29
A simple program I used to convert my jeep build thread from a forum to a wordpress friendly format
/**
* converter.cs
* @date June 27, 2012
* @author rickbarrette@gmail.com
*
* Copyright 2012 Richard Barrette
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@rickbarrette
rickbarrette / routes.rb
Created August 6, 2016 02:51
Redmine Project as homepage
# config/routes.rb
# replace root :to => 'welcome#index', :as => 'home'
# by this line for the homepage of a project
root :to => 'projects#show', :id => '<myproject>', :as => 'home'
@rickbarrette
rickbarrette / .bashrc
Last active September 15, 2016 11:24
Redmine Plugin post-merge Hook
# Add this to ~/.bashrc file
# Modify the path for your needs
alias restart-redmine="/srv/redmine/plugins/redmine_qbo/.git/hooks/post-merge"