Skip to content

Instantly share code, notes, and snippets.

View Silthus's full-sized avatar

Michael Reichenbach Silthus

View GitHub Profile
# Redmine Woltlab Community Framework 2 Authentication Source
#
# Copyright (C) 2014 Michael 'Silthus' Doering
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
@Silthus
Silthus / README.md
Created September 12, 2018 17:04
Quest Example Readme

Beispiel Quest

Hier sollte in ein bis zwei kurzen Sätzen der Kern der Quest erzählt werden, so dass man schnell weiß um was es in der Quest geht.

Die README Dateien für Quests können auch von den Quest Schreibern entworfen werden um den Quest Entwicklern die Arbeit zu erleichtern.

Ablauf

Ein kurzer Überblick über den schematischen Ablauf der Quest wie sie vom Quest Schreiber geplant wurde.

@Silthus
Silthus / Export-VMTemplate.ps1
Last active December 11, 2018 14:57 — forked from jstangroome/Export-VMTemplate.ps1
Export-VMTemplate
param (
[parameter(Mandatory=$true)]
$VM,
[parameter(Mandatory=$true)]
[string]
$TemplateName,
[parameter(Mandatory=$false)]
$VMMServer,
@Silthus
Silthus / drop-all.sql
Last active January 7, 2019 10:12
Drops all stored procs, views, constraints and tables
/* Drop all non-system stored procs */
DECLARE @name VARCHAR(128)
DECLARE @SQL VARCHAR(254)
SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'P' AND category = 0 ORDER BY [name])
WHILE @name is not null
BEGIN
SELECT @SQL = 'DROP PROCEDURE [dbo].[' + RTRIM(@name) +']'
EXEC (@SQL)
/* USE [YOUR_DATABASE] */
DECLARE @schema VARCHAR(128)
SELECT @schema = (SELECT TOP 1 [name] FROM sys.schemas ORDER BY [name])
WHILE @schema is not null
BEGIN
/* Drop all non-system stored procs */
{
"settingsReloadIntervalMinutes": 1,
"fullscreen": false,
"autoStart": true,
"lazyLoadTabs": true,
"websites": [
{
"url": "https://www.patreon.com/kevdev",
"duration": 10,
"tabReloadIntervalSeconds": 15
@Silthus
Silthus / PseudoRandomGenerator.java
Last active January 9, 2021 05:12
A pseudo random generator that brings the perceived randomness closer to the truth.
import java.util.Random;
import java.util.concurrent.ThreadLocalRandom;
/**
* The PseudoRandomGenerator is used to test an increasing chance based of the initial chance.
* <p>
* Use it to align the preceived chance of randomness for users with the actual randomness.
* <p>
* The generator will keep track of an iteration counter that will increase with every
* failed check and increase the chance for the next check. It resets after the chance was hit.
@Silthus
Silthus / IPseudoRandomGenerator.java
Created January 9, 2021 18:06
Pseudo Random Generator Comparison
public interface IPseudoRandomGenerator {
/**
* The iteration count is increased on every failure and reset on a success.
* <p>You can reset it manually by calling {@link #reset()}.
*
* @return the current iteration count
*/
int iteration();
float chance();
@Silthus
Silthus / Get-FailedFiles.ps1
Created March 12, 2018 08:57
Powershell script that parses RoboCopy log and extracts failed files to .csv. Copied from: https://gallery.technet.microsoft.com/scriptcenter/Powershell-script-to-parse-a1bc8a92
#Requires -Version 4
function Log {
<#
.Synopsis
Function to log input string to file and display it to screen
.Description
Function to log input string to file and display it to screen. Log entries in the log file are time stamped. Function allows for displaying text to screen in different colors.
@Silthus
Silthus / Dockerfile
Last active February 3, 2023 07:59
Backstage Secured Production Dockerfile
# Stage 1 - Create yarn install skeleton layer
FROM base/alpine-npm:alpine-3.17 AS packages
USER root
WORKDIR /app
COPY package.json yarn.lock ./
COPY packages packages
# Comment this out if you don't have any internal plugins