Requirements
- node
- npm
- svn
- git
- git-svn
Usage
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 |
npm install
#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 |
/*! | |
* jQuery imageExplode 1.0 | |
* | |
* Copyright 2013, Damien "Mistic" Sorel | |
* http://www.strangeplanet.fr | |
* | |
* thanks to Ryan Florence for the main algorythm | |
* http://ryanflorence.com/cssanimation | |
* | |
* Dual licensed under the MIT or GPL Version 3 licenses. |
/** | |
* jQuery amusesMoi! 1.0 | |
* | |
* Copyright 2012-2013, Damien "Mistic" Sorel | |
* http://www.strangeplanet.fr | |
* | |
* License: | |
* MIT and GPL dual licensing | |
* | |
* Depends: |
<?php | |
/** | |
* Squaricon | |
* | |
* @description: PHP image hash generator | |
* | |
* @author: Damien "Mistic" Sorel - http://strangeplanet.fr | |
* @license: MIT | |
* @version: 2.0.0 | |
* @date: 21/05/2015 |