- node
- npm
- svn
- git
- git-svn
npm install- Create empty repositories on Github
| #define AppId "{INSERT HERE YOUR GUID}" | |
| #define AppName "My App" | |
| #define AppVersion "1.7" | |
| [CustomMessages] | |
| english.NewerVersionExists=A newer version of {#AppName} is already installed.%n%nInstaller version: {#AppVersion}%nCurrent version: | |
| [Code] | |
| // find current version before installation | |
| function InitializeSetup: Boolean; | |
| var Version: String; |
| #define ProjectURL "http://www.google.fr" | |
| [CustomMessages] | |
| english.Website=Website | |
| [Code] | |
| // link in installer footer | |
| procedure URLLabelOnClick(Sender: TObject); | |
| var | |
| ErrorCode: Integer; |
| #include <windows.h> | |
| int main(int argc, char *argv[]) | |
| { | |
| // ensure only one running instance | |
| HANDLE hMutexHandle = CreateMutex(NULL, TRUE, L"my.mutex.name"); | |
| if (GetLastError() == ERROR_ALREADY_EXISTS) | |
| { | |
| return 0; | |
| } |
| <?php | |
| /** | |
| * Draw a rectangle with rounded corners. | |
| * @param ressource &$img An image resource | |
| * @param int $x1 Upper left x coordinate | |
| * @param int $y1 Upper left y coordinate | |
| * @param int $x2 Bottom right x coordinate | |
| * @param int $y2 Bottom right y coordinate | |
| * @param int $r Corners radius | |
| * @param int $color A color identifier created with imagecolorallocate() |
| #ifndef QTOOLBAREXT_H | |
| #define QTOOLBAREXT_H | |
| #include <QToolBar> | |
| #include <QMenu> | |
| #include <QToolButton> | |
| /** | |
| * @brief Custom QToolBar allowing to add a button/menu with text and icon |
| #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 QCOMBOBOXEXT_H | |
| #define QCOMBOBOXEXT_H | |
| #include <QWidget> | |
| #include <QComboBox> | |
| /** | |
| * @brief QComboBox With direct access to item data | |
| * @signal currentDataChanged(QVariant) |
| <?php | |
| /** | |
| * Recursive builder pattern | |
| * | |
| * Usage: | |
| * $tree = \Tree\Builder::init() | |
| * ->setName('parent') | |
| * ->addChild() |