Skip to content

Instantly share code, notes, and snippets.

View pemo11's full-sized avatar
🏠
Working from home

Peter pemo11

🏠
Working from home
View GitHub Profile
@pemo11
pemo11 / memozeit1.yaml
Last active July 21, 2025 15:55
Eine Terminerinnerung für meine Memozeit2000 app
title: "MemoZeit von Oma"
name: Omi
date: "2025-07-21"
reminders:
- time: "08:00"
label: "Blutdrucktablette nehmen"
details: 2 Tabletten und ein Glas Wasser
- time: "12:00"
label: "Mittagessen"
details: Im Essensaal
@pemo11
pemo11 / DateCompare.ps1
Created March 2, 2017 08:31
Compares two DateTime values with Poweshell based on diferent cultures
<#
.Synopsis
Datumsvergleich
#>
function Compare-Date
{
param([Parameter(Mandatory=$true)][String]$Date1,
[CultureInfo]$CultureDate1 = (Get-Culture),
[Parameter(Mandatory=$true)][String]$Date2,