Skip to content

Instantly share code, notes, and snippets.

View RainerBlessing's full-sized avatar

Rainer Blessing RainerBlessing

  • Stuttgart, Germany
View GitHub Profile
@RainerBlessing
RainerBlessing / Vagrantfile
Last active March 25, 2017 09:32
vagrant, ubuntu 14.04, jenkins, nexus
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
@RainerBlessing
RainerBlessing / savvyclubdvds.txt
Last active May 31, 2018 19:42
Uebersicht Savvy Club DVD Inhalt.
Savvy Club DVD Issue 1 December 2003
-------------------------------------
A Tribute to Tom Dorrance and Ronnie Willis Part 1
A Tribute to Tom Dorrance and Ronnie Willis Part 2
Behind The Scenes - A Royal Visit
Inspiration - Savvy Kids
https://parellisavvyclub.com/#!/library/308/resources?parent=12&title=Savvy%20Club%20DVD%20Issue%201%20December%202003
=========================================
Savvy Club DVD Issue 2 March 2004
----------------------------------
September 2017
---------------
Student Lesson Series with Linda - Level 2 with Vonni & Ollie Lesson 3
https://parellisavvyclub.com/#!/library/660/resources?parent=659&title=September%202017
=========================================
October 2017
-------------
Student Lesson Series with Linda - Kristie & Miles Building Confidence Lesson 1
https://parellisavvyclub.com/#!/library/662/resources?parent=659&title=October%202017
=========================================
@RainerBlessing
RainerBlessing / touchstones.txt
Created May 31, 2018 19:59
Twelve Touchstones
Horse Psychology and Philosophy Volume 1
-----------------------------------------
The Friendly Game with Linda Parelli
The Friendly Game with Pat Parelli
Teaching the Friendly Game with Linda Parelli
The Porcupine Game with Pat Parelli
https://parellisavvyclub.com/#!/library/17/resources?parent=11&title=Horse%20Psychology%20and%20Philosophy%20Volume%201
=========================================
Savvy and Safe Volume 1
------------------------
Month 01
---------
How To Have A Happy Horse
https://parellisavvyclub.com/#!/library/595/resources?parent=594&title=Month%2001%20
=========================================
Month 02
---------
Savvy & Safe
https://parellisavvyclub.com/#!/library/596/resources?parent=594&title=Month%2002
=========================================
On Line Level 1
----------------
On Line Level 1
OL L1 Patterns - Touch It
OL L1 Patterns - Figure 8
OL L1 Tips - Zoneology
https://parellisavvyclub.com/#!/library/532/resources?parent=531&title=On%20Line%20Level%201
=========================================
On Line Level 2
----------------
@RainerBlessing
RainerBlessing / gist:920103530a9cabfa3c906fb1932f8546
Created October 9, 2020 13:00
GitL Do a Pull before creating a Branch
#usage: git br test
git config --global alias.br "!f() { git pull && git checkout -b $1; }; f"