You might ask: What is Laravel (and Laravel 4)? In short, it is the PHP frameworks for web artisans. This contains notes for beginners. We can generate tables for application by utilizing the migration feature with artisan. For example, in order to setup a user table, we use parameters –table and –create:[bash]php […]
Technology
Lets start with the basics. The “netstat” command is quite useful for checking connections to your machine. If we wanted to see ALL of the connections (which i really recommend you don’t do unless you’re trying to debug something and then you should probably pipe it to a file) we […]
This article will explain about different kinds of PHP handlers and how it will impact to each aspect of an application: from resources usage to security level of each. Understanding pros and cons of each handler might help you save much effort on tuning your website performance. The original article […]
Below are some tips from WordPress pros from across the community. Many of the tips cover development, but there’s also advice on business, running your website and, of course, getting involved with the community. Image: Phil Oakley Tips For Developers USE EVERYTHING WORDPRESS HAS TO OFFER WordPress’ core can do a […]
Introduction Memcache is a Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, […]
Xdebug is a PHP extension created by Derick Rethans, one of the PHP core developers. Webgrind is an Xdebug profiling web frontend in PHP5. It implements a subset of the features of kcachegrind and installs in seconds and works on all platforms. For quick’n’dirty optimizations it does the job. This article will show how to install […]
Whenever analysts or journalists assemble lists of the top trends for this year, “big data” is almost certain to be on the list. While the catchphrase is fairly new, in one sense, big data isn’t really a new concept. Computers have always worked with large and growing sets of data, […]
Althought CSS3 is currently fully supported by recent browsers, there are many problems when finding a “falling back” solution for IE <= 8. We can surely change the way we display HTML code, or use javascript for some contents, but these are also not in our favor. Fortunatelly, there is a library called Selectivizr providing an “IE-CSS3 library” http://selectivizr.com/. […]
General Concept Security Assertion Markup Language (SAML, pronounced “sam-el”) is an XML-based open standard data format for exchanging authentication and authorization data between parties, in particular, between an identity provider and a service provider. SAML is a product of the OASIS Security Services Technical Committee. SAML dates from 2001; the most recent update of SAML is from 2005. The single most important problem […]