Skip to content

Instantly share code, notes, and snippets.

View dfch's full-sized avatar

Ronald Rink dfch

View GitHub Profile
@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" {
@dfch
dfch / Get-Functions.ps1
Last active March 12, 2018 22:01
Enumerate all functions in a PowerShell script file via AST
#Requires -Version 3
# http://d-fens.ch/2015/04/26/nobrainer-enumerate-all-functions-in-a-powershell-script-file-via-ast
[CmdletBinding(
SupportsShouldProcess = $true
,
ConfirmImpact = 'Low'
,
DefaultParameterSetName = 'list'
)]
Param
@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 / 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 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 / ### 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 / ### Sending Gelf messages to Graylog2 via PowerShell.md
Last active May 5, 2020 21:17
Sending Gelf messages to Graylog2 via PowerShell
@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 / ### PowerShell modules, digital signatures, NuGet nuspec and packages.md
Last active January 1, 2022 20:19
PowerShell modules, digital signatures, NuGet nuspec and packages

PowerShell modules, digital signatures, NuGet nuspec and packages

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/'