Skip to content

Instantly share code, notes, and snippets.

View flolanger's full-sized avatar

Florian Langer flolanger

View GitHub Profile
@flolanger
flolanger / README.md
Last active February 22, 2023 17:30
StreamDeck: Win / Loss counters for your stream (Windows, OBS / Streamlabs OBS)

StreamDeck: Win / Loss counters for your stream (Windows, OBS / Streamlabs OBS)

I created 3 simple scripts, which you can execute with your StreamDeck to increase or reset your win / loss counters while you are streaming.

Installation

Create the following batch files on your Windows-PC and paste in the code snippets:

reset_script.bat

@flolanger
flolanger / sort.php
Created February 21, 2019 18:11
QuickSort algorithm in PHP
<?php
class sort
{
public function quicksort(array $data, $left, $right)
{
if ($left < $right) {
$splitpos = $this->split($data, $left, $right);
$data = $this->quicksort($data, $left, $splitpos -1);