Blog Spot!


PHPDesktop

PHP desktop GUI framework with HTML5 Chrome/IE engine

PHP Desktop is an open source project founded by Czarek Tomczak in 2012 to provide a way for developing native desktop GUI applications using web technologies such as PHP, HTML5, JavaScript and SQLite. The development workflow you are used to while creating web applications remains the same. There is no new API/framework to learn. The process of turning an existing website into a desktop application is basically a matter of copying it to "phpdesktop/www/" directory.

In a certain sense phpdesktop acts as a PHP to EXE compiler. It embeds a web browser, a multithreaded web server and a PHP interpreter, all embedded into a single application. The web server embedded is Mongoose (the MIT-licensed version). Supported browsers are Internet Explorer and Google Chrome. The package with Chrome embedded has no external dependencies, everything is included in the phpdesktop binaries and works out of the box on a user's computer.

Web Site

Added on 03.Dec.2014
Tags: php

MEAN

MEAN is an opinionated fullstack javascript framework - which simplifies and accelerates web application development.

Get MEAN by running...

$ sudo npm install -g mean-cli 
$ mean init yourNewApp

MEAN stands for:

  • MongoDB
  • Express
  • AngularJS
  • NodeJS

Read more at mean.io

Added on 02.Dec.2014
Tags: js nodejs mongodb angularjs

Clear-Fix for floating elements.

Clear-Fix classes for fixing floating elements.

/* cf - Clearfix for floating elements */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

Added on 21.Nov.2014
Tags: css

Optional paramater in CI routing

The clearest way to express this would probably be to declare both routes:

$route['signup']        = "user/signup";
$route['signup/(:num)'] = "user/signup/$1";

Added on 21.Nov.2014
Tags: php ci routing

Search


PHP Libraries


Carbon lib / docs
Idiorm lib / docs
Image Workshop lib / docs
lorenzos/Minixed lib / docs
Parsedown lib / docs
PHP Paginator lib / docs
PHP Redis lib / docs
QrCode lib / docs
Requests lib / docs
Slim lib / docs
Spyc lib / docs
TWIG lib / docs
Upload lib / docs
Validation lib / docs
Zebra Image lib / docs

JS Libraries


AJV lib / docs
BackboneJS lib / docs
Bootstrap Notify lib / docs
C3.js lib / docs
ChartJS lib / docs
FastMD5 lib / docs
HighlightJS lib / docs
jQuery-Storage lib / docs
JS-Cookie lib / docs
Leaflet JS lib / docs
LowDB lib / docs
Marked lib / docs
NeedlyJS lib / docs
ParcelJS lib / docs
RequireJS lib / docs
Swig lib / docs
Toastr lib / docs
Underscore lib / docs
ValidateJS lib / docs
top