Skip to content

Instantly share code, notes, and snippets.

View Smallinger's full-sized avatar

Marc Schirrmann Smallinger

  • Germany
View GitHub Profile
@Smallinger
Smallinger / filters.txt
Last active October 29, 2023 12:34
email.t-online.de Ad filters.
! 2023-10-29 https://email.t-online.de
email.t-online.de###adFooterContainer
email.t-online.de##.adSuperBannerContainer
email.t-online.de###adBlockerActiveContainer
email.t-online.de###skyScraperXLContainer
email.t-online.de###skyScraperLContainer
email.t-online.de###upsellingBanner
email.t-online.de###mainFooter:style(bottom: 0px !important)
email.t-online.de###frameScaleLeft:style(bottom: 0px !important)
email.t-online.de###frameScaleRight:style(bottom: 0px !important)
@Smallinger
Smallinger / windows_and_office_kms_setup.adoc
Created April 4, 2023 03:54 — forked from jerodg/windows_and_office_kms_setup.adoc
Activate Windows and Office Using KMS Server

Microsoft Windows and Office KMS Setup

@Smallinger
Smallinger / Dockerfile
Created January 23, 2023 05:42
Dockerfile for Ganymede to work on a Debian ARM64/AARCH64 Raspberry Pi 4 Model B.
FROM arm64v8/golang:1.18 AS build-stage-01
RUN mkdir /app
ADD . /app
WORKDIR /app
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags "-s -X main.Version=${VERSION} -X main.BuildTime=`TZ=UTC date -u '+%Y-%m-%dT%H:%M:%SZ'` -X main.GitHash=`git rev-parse HEAD`" -o ganymede-api cmd/server/main.go
FROM arm64v8/debian AS build-stage-02
#!/bin/bash
# scrot -> rokket.space, by @Smallinger
# https://rokket.space
# darwin screenshot options
# https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/screencapture.1.html
SCROTARGS=(-C -s)
# screenshots save or delete after upload ? 1 or 0
DELETE=0
# change here the folder for the screenshots to save
@Smallinger
Smallinger / teamspeak3
Last active December 16, 2016 06:08
Teamspeak 3 Server Debian Startup Script
#!/bin/sh
### BEGIN INIT INFO
# Provides: teamspeak3
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Teamspeak 3 Server
### END INIT INFO