{
"compilerOptions": {
"target": "esnext", //Output JS Version (newer version -> less polyfills but also less browser compatibility)
"module": "esnext", //see note below
"declaration": true, //Generate .d.ts files
"outDir": "dist",
Thsi is a guide to reset your local windows password.
⚠️ If you dont exactly understand what you do here, this could break your operating system. Please be carefull!
Boot from another live operating system, for example from a USB stick with Linux or something similar (e.g. http://www.knoppix.org/). You need a console where you can access the hard disk of the computer.
You can also use the Windows installation CD. You can open the command line in the installation screen with SHIFT
+ F10
#!/bin/bash | |
rm -rf ~/.cache | |
rm -rf ~/.config/kwinrc ~/.config/kwinrulesrc | |
rm -rf ~/.local/share/kscreen | |
reboot |
Defined in RFC5545
Nice to read on https://www.kanzaki.com/docs/ical/
Allways start file with BEGIN:VCALENDAR
and end with END:VCALENDAR
Events allways start with BEGIN:VEVENT
and end with END:VEVENT
and are nested in VCALENDAR
Timezones are mandatory for recurring events and recommended for all events.
- Create a folder to store the script and the mail logs.
mkdir /somewhere/phpmail
mkdir /somewhere/phpmail/mails
- Place the
logmail.sh
script in thephpmail
folder - Make sure the php process has write access to this folder:
chmod -R 777 /somewhere/phpmail
#!/bin/bash | |
SERVICE="gammy" | |
if pgrep -x "$SERVICE" >/dev/null | |
then | |
pkill gammy& | |
else | |
gammy& | |
fi |
<?php | |
$inputUtc = "2022-10-23T10:00:00"; | |
$dateObject = date_create($inputUtc,timezone_open("UTC")); | |
print_r($dateObject); | |
$timestamp = date_timestamp_get($dateObject); | |
date_default_timezone_set("Europe/Berlin"); | |
echo date("d.m.Y H:i",$timestamp); |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<svg | |
id="svg2" | |
width="144" | |
height="126" | |
version="1.0" | |
viewBox="0 0 144 126" | |
sodipodi:docname="tasks.svgz" | |
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)" | |
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
mogrify -strip -interlace Plane -gaussian-blur 0.05 -quality 20% *.jpg |
See manual at: https://github.com/git-ftp/git-ftp/blob/master/man/git-ftp.1.md
Install git-ftp package: https://github.com/git-ftp/git-ftp/blob/master/INSTALL.md
curl https://raw.githubusercontent.com/git-ftp/git-ftp/master/git-ftp > /bin/git-ftp
chmod 755 /bin/git-ftp