- node
- npm
- svn
- git
- git-svn
npm install- Create empty repositories on Github
| <?php | |
| /** | |
| * Generate a very simple image containing some text | |
| * | |
| * Basic usage: | |
| * (new SimpleTextImage('Hello world!'))->render(); | |
| * | |
| * All functionalities: | |
| * (new SimpleTextImage()) | |
| * ->setText('Hello world!') |
| <?php | |
| /** | |
| * Write text on image with silkscreen font http://kottke.org/plus/type/silkscreen | |
| * | |
| * Usage: | |
| * $img = imagecreatetruecolor(65, 15); | |
| * $bg = imagecolorallocate($img, 0, 0, 0); | |
| * $fg = imagecolorallocate($img, 255, 255, 255); | |
| * | |
| * silk::write($img, 5, 5, 'Hello world', $fg, 1, false, 0); |
| [Code] | |
| // mark installer for deletion if argument "-delete-installer" is present | |
| procedure DeinitializeSetup(); | |
| var i: integer; | |
| begin | |
| for i:= 0 to ParamCount do | |
| begin | |
| if ParamStr(i) = '-delete-installer' then | |
| begin | |
| RestartReplace(ExpandConstant('{srcexe}'), ''); |
| #define SettingsFile "settings.xml" | |
| [CustomMessages] | |
| english.DeleteSettings=Delete settings file? | |
| [Code] | |
| // ask for delete config file during uninstall | |
| procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep); | |
| begin | |
| case CurUninstallStep of |
| #ifndef QWIDGETBLINKER_H | |
| #define QWIDGETBLINKER_H | |
| #include <QWidget> | |
| #include <QTimeLine> | |
| #include <QEvent> | |
| /** | |
| * @brief Utility allowing to make any QWidget blink |
| <?php | |
| /** | |
| * My Movie Database - A Windows Movie Indexer | |
| * | |
| * @author: Damien "Mistic" Sorel - http://strangeplanet.fr | |
| * @license: GNU General Public License | |
| * @since: 25/05/2013 | |
| * | |
| * @version: 1.1.0 | |
| * @date: 25/07/2013 |
| #ifndef QLINEEDITCOLOR | |
| #define QLINEEDITCOLOR | |
| #include <QtWidgets/QLineEdit> | |
| #include <QColorDialog> | |
| #include <QEvent> | |
| /** | |
| * @brief A QLineEdit combined with a QColorDialog | |
| * @signal colorChanged(QColor) |
| #ifndef QCOMBOBOXEXT_H | |
| #define QCOMBOBOXEXT_H | |
| #include <QWidget> | |
| #include <QComboBox> | |
| /** | |
| * @brief QComboBox With direct access to item data | |
| * @signal currentDataChanged(QVariant) |
| <?php | |
| /** | |
| * Compare versions with alphabetical components. | |
| * Usesversion_compare after having converted single chars to their decimal values. | |
| * Needed because version_compare does not understand versions like '2.5.c'. | |
| * | |
| * @param string $a | |
| * @param string $b | |
| * @param string $op | |
| */ |