Skip to content

Instantly share code, notes, and snippets.

View sartimo's full-sized avatar
‼️
PA

Timo Sarkar sartimo

‼️
PA
View GitHub Profile
@sartimo
sartimo / sdk.sh
Created February 18, 2024 14:47
Java Version Manager
https://sdkman.io/jdks#open
@sartimo
sartimo / mdtotoc.c
Last active February 16, 2024 08:54
Markdown to ToC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define TOP 1
#define MAX 10
typedef struct {
char *source_file;
@sartimo
sartimo / install.sh
Last active January 6, 2022 15:24
Installing Rubinius 2 via RVM on WSL 1.0
# fetch rvm
gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
\curl -sSL https://get.rvm.io | bash -s stable
# add package source for libssl-dev1.0
sudo nano /etc/apt/sources.list
add deb http://security.ubuntu.com/ubuntu bionic-security main
sudo apt update && apt-cache policy libssl1.0-dev
sudo apt-get install libssl1.0-dev
@sartimo
sartimo / main.ps1
Created December 18, 2021 08:46
Our solution for the M122 project
<#
# Copyright 2021 - 2022 Timo Sarkar & Aaron Camenzind
# Redistribution des Codes ohne Genehmigung nicht gestattet
# Verwendung des Codes als eigene Lösung nicht gestattet
#>
<#
# Titel: M122 Backup Script
# Zweck: PowerShell GUI App um Backups zu erstellen
# Datum: 07.12.2021 - 12.12.2021