Skip to content

Instantly share code, notes, and snippets.

View dfch's full-sized avatar

Ronald Rink dfch

View GitHub Profile
@dfch
dfch / ### Miscellaneous Scripts.md
Last active August 29, 2015 14:09
LightSwitch: Modifying roles, permissions and users via PowerShell

Miscellaneous Scripts

d-fens GmbH General-Guisan-Strasse 6 CH-6300 Zug Switzerland

@dfch
dfch / CreatevCACManagementModelEntitesobjectsfromODATARESTcallwithPowerShell.ps1
Last active August 29, 2015 14:10
Create vCAC ManagementModelEntites objects from ODATA REST call with PowerShell
# http://d-fens.ch/2014/01/27/create-vcac-modelmanagemententites-objects-from-odata-rest-call-with-powershell/
function Get-VcacEntity {
[CmdletBinding(
SupportsShouldProcess = $false
,
ConfirmImpact = 'Low'
,
DefaultParameterSetName = 'guid'
,
HelpURI='http://dfch.biz/PS/Vcac/Utilities/Get-VcacEntity/'
@dfch
dfch / libmc02.c
Last active August 29, 2015 14:12
SCMC
/*
* libmc02.c
*
*/
#include "libmc02.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@dfch
dfch / ### Miscellaneous Test Scripts.md
Last active August 29, 2015 14:13
### Miscellaneous Test Scripts

d-fens Miscellaneous Test Scripts

d-fens GmbH General-Guisan-Strasse 6 CH-6300 Zug Switzerland

@dfch
dfch / Dockerfile
Last active August 29, 2015 14:13
Graylog2 Plugin Test Dockerfile
# Dockerfile to build Graylog2/allinone and d-fens Plugins
#
# Copyright 2015 Ronald Rink, d-fens GmbH
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
@dfch
dfch / Dockerfile-jBPM
Created January 19, 2015 06:31
Dockerfiles
# taken from https://github.com/wmarinho/docker-jbpm
FROM wmarinho/ubuntu:oracle-jdk-7
MAINTAINER Wellington Marinho wpmarinho@globo.com
ENV JBPM_VERSION 6.1.0.Final
ENV JBPM_HOME /opt/jbpm
# Apply JAVA_HOME
@dfch
dfch / Dockerfile
Last active August 29, 2015 14:13
Graylog2 Intermediate Version Dockerfile
FROM graylog2/allinone
MAINTAINER Ronald Rink <ronald.rink@d-fens.net>
ENV GRAYLOG2_BASE_DIR /opt/graylog2
ENV GRAYLOG_SERVER_VERSION 0.93.0-SNAPSHOT-20150112150701
ENV GRAYLOG_WEB_VERSION 0.93.0-SNAPSHOT-20150112102527
RUN apt-get install -y wget tar
RUN cd /opt/ && wget http://packages.graylog2.org/nightly-builds/graylog2-${GRAYLOG_SERVER_VERSION}.tar.gz
@dfch
dfch / --- README.md
Last active August 29, 2015 14:24
biz.dfch.PS.Pester.Tests - Verifiable Mocks
@dfch
dfch / TSGET.CMD
Created August 13, 2015 09:35
TSGET - get X.509 timestamp via Windows Cmd file and utilities
@ECHO OFF
SETLOCAL
FOR /F "tokens=* delims=?" %%I IN ('ECHO %0') DO @SET SCRIPTPATH=%%~dpI
FOR /F "tokens=* delims=?" %%I IN ('ECHO %SCRIPTPATH%') DO @SET SCRIPTPATH=%%~I
FOR /F "tokens=* delims=?" %%I IN ('ECHO %SCRIPTPATH%') DO @SET SCRIPTPATH=%%~sI
IF "\" EQU "%SCRIPTPATH:~-1%" SET SCRIPTPATH=%SCRIPTPATH:~0,-1%
IF "\" EQU "%SCRIPTPATH:~0,1%" (
PUSHD "%SCRIPTPATH%"
@dfch
dfch / HashtableDuplicateKey.Tests.ps1
Last active December 26, 2015 09:09
[Bug] PowerShell Hashtables and duplicate keys with Import-CliXml
#Requires -Module Pester
#Requires -Version 3.0
# see http://d-fens.ch/2015/06/28/bug-powershell-import-clixml-incorrectly-creates-hashtables-with-duplicate-keys/ for further explanation
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$ImportCliXmlDuplicateKeys = "{0}.xml" -f $MyInvocation.MyCommand.Name.Replace('.Tests.ps1', '');
Describe -Tags "Test-ImportCliXml" "Test-ImportCliXml" {