$ convert your.jpg -transparent white your.png
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install and download the latest Version of IMSCP | |
LATEST_VERSION=$(curl -s https://github.com/i-MSCP/imscp/releases/latest|grep -Po '(?<=/tag/)[0-9.]+') | |
INSTALLED_VERSION=$(cat /etc/imscp/imscp.conf|grep -Po '(?<=Version = )[0-9.]+') | |
TARGET=/usr/local/src/ | |
echo "installed imscp-version: $INSTALLED_VERSION" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<?php | |
/* | |
* Copyright (C) 2015 Thom Heemstra <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU General Public License | |
* as published by the Free Software Foundation; either version 2 | |
* of the License, or (at your option) any later version. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
+-----------------------------------------------------------------------+ | |
| ./plugins/pop3fetcher/localization/nl_NL.inc | | |
| Language file of roundcube-pop3fetcher plugin | | |
| Copyright (C) 2010-2013, Paolo 'morepaolo' Moretti | | |
| Licensed under the GNU GPL | | |
| | | |
+-----------------------------------------------------------------------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$randomValue = mt_rand(); | |
$even = $randomValue & ~1; | |
$odd = $randomValue | 1; | |
// magical unicorn isn't it? |