Skip to content

Instantly share code, notes, and snippets.

@MadeAja
MadeAja / IMscript-png.sh
Created June 1, 2022 10:38 — forked from pleabargain/IMscript-png.sh
this will write the file name on to the png image
for img in *.png; do
width=$(identify -format %W ${img})
width=$(( ${width} * 9 / 10 ))
convert \
-background '#0008' \
-gravity center \
-fill white \
-size ${width}x100 \
@MadeAja
MadeAja / PHPMailer.php
Created May 27, 2021 04:33 — forked from Mo45/PHPMailer.php
Rust-Server-Website-Template — How to use PHPMailer Example
<?php
/**
* PHPMailer - PHP email creation and transport class.
* PHP Version 5.5.
*
* @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
*
* @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
* @author Jim Jagielski (jimjag) <jimjag@gmail.com>
* @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>