Archive for the ‘programming’ Category

 

Outputs the time in seconds that it takes for a PHP page to load.

 <!--?php 
 
// Insert this block of code at the very top of your page: 
 
$time = microtime(); 
$time = explode(" ", $time); 
$time = $time[1] + $time[0]; 
$start = $time; 
 
// Place this part at the very end of your page 
 
$time = microtime(); 
$time = explode(" ", $time); 
$time = $time[1] + $time[0]; 
$finish = $time; 
$totaltime = ($finish - $start); 
printf ("This page took %f seconds to load.", $totaltime); 
 
?>  

CSharp For Programmers | 521 Mb

Contents:

1.1 Introduction

1.1.1 Course Introduction
1.1.2 Course Prerequisites
1.1.3 Object-oriented Programming
1.1.4 Object-oriented Programming Concepts

(more…)

VTC (Virtual Training Company) | 581 Mb

In Real World PHP Programming: The Basics, VTC Author Mike Morton introduces PHP programming in a fashion that is immediately applicable to experienced programmers, and new programmers alike. This programming title does not focus on getting certified in PHP, but rather focuses on the application of PHP in everyday programming, including the proper terminology as well as learning PHP slang. Starting with the absolute basics of PHP types and statements, Mike progresses you through conditional and loops, MySQL, and into advanced topics such as functions and session management. With working examples, and application of what you are learning shown throughout, Mike makes learning PHP an easy and enjoyable endeavour.

(more…)

From Java to C#

Posted: May 30, 2010 in E-Books, programming
Tags: , ,

Glenn Rowe, “From Java to C#” | 21.8 Mb
Addison Wesley | 2004 | ISBN: 0321155726 | Pages: 688 | PDF

(more…)

OReilly: Head First C Sharp | 132.61 Mb

Head First C# (Brain-Friendly Guides) [ILLUSTRATED] (Paperback)
AUTHOR : by Andrew Stellman (Author), Jennifer Greene (Author)
PUBLISHER : O’Reilly Media publisher
ISBN : 0596514824
EDITION : 1st
PUB DATE : November 26, 2007
LANGUAGE : English
RLS DATE : 03/10/2008

(more…)

Neal Goldstein, “iPhone Application Development For Dummies, Second Edition”
For Dummies | 2009-11-09 | ISBN: 0470568437 | 432 pages | PDF | 11.98 MB

(more…)