Skip to content

Instantly share code, notes, and snippets.

View serra's full-sized avatar

Marijn van der Zee serra

  • Serra ICT Diensten
  • The Netherlands
View GitHub Profile
@serra
serra / .block
Last active January 13, 2017 15:52
The beautiful mess that is Scrum
license: gpl-3.0
height: 600
# Makefile to create mobile versions of the Scrum Guide
#
# Examples:
#
# make epup
# make mobi
#
# Prerequisites:
#
# pandoc installed and available on PATH
#from: http://superuser.com/questions/175509/can-i-change-the-speed-of-slideshows-in-os-x
# Define variable, to save typing:
plist=/System/Library/PrivateFrameworks/Slideshows.framework/Versions/A/Resources/Content/EffectDescriptions
# make a backup copy:
cp -iv $plist.plist $HOME/Desktop/
# confirm backup copy is valid: MD5 checksums should match for both files
md5 $plist.plist $HOME/Desktop/EffectDescriptions.plist
@serra
serra / glimpse.log
Last active December 30, 2015 11:09
2013-12-06 09:20:45.3932 | DEBUG | Preloaded all referenced assemblies with System.Web.Compilation.BuildManager.GetReferencedAssemblies() |
2013-12-06 09:20:45.4142 | DEBUG | Discovering IClientScript's in 'C:\Users\marijn\AppData\Local\Temp\Temporary ASP.NET Files\root\911fcb73\b6852e7c' and all sub directories. |
2013-12-06 09:20:45.8582 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Client' and added it to collection. |
2013-12-06 09:20:45.8582 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Data' and added it to collection. |
2013-12-06 09:20:45.8582 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Metadata' and added it to collection. |
2013-12-06 09:20:45.8582 | DEBUG | Discovering IInspector's in 'C:\Users\marijn\AppData\Local\Temp\Temporary ASP.NET Files\root\911fcb73\b6852e7c' and all sub directories. |
2013-12-06 09:20:45.8722 | DEBUG | Discovered IInspector of type 'Glimpse.Core.Inspector.TraceInspector' and added it to collect
@serra
serra / readme
Last active December 19, 2015 02:48 — forked from ferventcoder/setup.ps1
This sets up your development machine to wrok with openkas.
$scriptDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
function Install-NeededFor {
param(
[string] $packageName = ''
,[bool] $defaultAnswer = $true
)
if ($packageName -eq '') {return $false}
$yes = '6'
@serra
serra / README.md
Last active June 12, 2023 15:35 — forked from joelverhagen/README.md

This is a plugin meant for Jekyll.

Example use:

Easily embed a YouTube video. Just drop this file in your _plugins directory.

{% youtube oHg5SJYRHA0 %}
@serra
serra / README.md
Last active December 14, 2015 02:19
Collapsible tree example with hyperlinks
@serra
serra / index.html
Created July 13, 2012 07:54
Example for StackOverflow question: Map custom value field to x value when using a stacked layout.
<!DOCTYPE html>
<html>
<head>
<title>Map custom value field to x value when using a stacked layout</title>
</head>
<body>
<p>
Example for StackOverflow question <a href="http://stackoverflow.com/questions/11467196">Map custom value field to x value when using a stacked layout</a>.
</p>
using System;
using System.Collections.Generic;
using System.Linq;
using QuickGraph;
using QuickGraph.Algorithms;
using QuickGraph.Graphviz;
using Spring.Context;
using Spring.Context.Support;
using Spring.Objects;
using Spring.Objects.Factory;