- node
- npm
- svn
- git
- git-svn
npm install- Create empty repositories on Github
| .textareaLinesNumbers { | |
| position: relative; | |
| } | |
| .textareaLinesNumbers textarea.linesContainer { | |
| display:block; | |
| border:none; | |
| position:absolute; | |
| overflow:hidden; | |
| text-align:right; |
| /*! | |
| * 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. |
| <?php | |
| /** | |
| * Recursive builder pattern | |
| * | |
| * Usage: | |
| * $tree = \Tree\Builder::init() | |
| * ->setName('parent') | |
| * ->addChild() |
| #ifndef QCOMBOBOXEXT_H | |
| #define QCOMBOBOXEXT_H | |
| #include <QWidget> | |
| #include <QComboBox> | |
| /** | |
| * @brief QComboBox With direct access to item data | |
| * @signal currentDataChanged(QVariant) |
| <?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 QWIDGETBLINKER_H | |
| #define QWIDGETBLINKER_H | |
| #include <QWidget> | |
| #include <QTimeLine> | |
| #include <QEvent> | |
| /** | |
| * @brief Utility allowing to make any QWidget blink |
| #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 |
| <?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() |
| #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; | |
| } |