Tag Archive

$_FILES limitation when uploading files in PHP

Published on October 14, 2011 By admin

Along with the “upload_max_filesize” when uploading files with PHP there is another parameter named “max_file_uploads” witch prevent uploading more files that the value of this parameter. Default size of this parameter is 20 and is should be enough for more apps then I can count but today I had to repair a bug in a [...]

Free programming eBooks

Published on November 3, 2010 By admin

Becouse as programmer eBooks and programming eBooks are always good to be around I will post here some free ones. Objective-C 2.0 Essentials C# Yellow Book The C Book The Art of Assembly Language Algorithms: Parsing Techniques Algorithms Web, HTML and related: Building Accessible Websites Dive Into HTML 5 Building iPhone Apps with HTML, CSS, [...]

jQuery Visual Cheat Sheet

Published on September 3, 2010 By admin

If you are like me you “learn from walking” (learn something in time you write a script, an application ). jQuery is a great framework but it become so big that sometimes you can not remember all methods, selectors and basically every stuff  implemented there to make your work easy. For this there are Cheat [...]

jQuery, disable right click browser menu

Published on August 25, 2010 By admin

When working on complex applications with jQuery you get to a point where you need to have your own right click menu. You have the options to disable entire page right click menu or just for a div. Disable for the entire document: $(document).ready(function() {        $(document).bind("contextmenu",function(e){               [...]

jQuery, check witch mouse button had been pressed

Published on August 25, 2010 By admin

The .click is great, but witch button had been pressed? $(document).click(function(e) {    if ((e.button == 0)  && (e.button == 1)){       // was the left button pressed       alert(‘clicked’);    }    if (e.button == 3){       // was the right button pressed       alert(‘click’);   [...]

LiveUI open source framework for .NET websites

Published on March 9, 2010 By admin

It is possible? In the web development open source is similar with PHP & MySQL and a tone of free CMS based on them. Now it is possible with .NET too. How? LiveUI is the answer and is built for .NET 3.5 sp1 Based on pure ASP .NET Pluggable to any asp.net application jQuery and [...]