programming
Most Popular Programming Languages of 2014
Python retains it’s #1 dominance followed by Java, C++, and Javascript. This year’s most noticeable changes were a 300% increase in Objective-C submissions, a 100% surge in C#, as well as a 33% increase in Javascript submissions while PHP lost -55%, Perl dropped -16%, and Java shrank -14%.
Programmer Interrupted
Based on a analysis of 10,000 programming sessions recorded from 86 programmers using Eclipse and Visual Studio and a survey of 414 programmers (Parnin:10), we found: A programmer takes between 10-15 minutes to start editing code after resuming work from an interruption. When interrupted during an edit of a method, […]
CakePHP – To display two or more fields in displayField
Model class UserDetail extends AppModel { public $virtualFields = array( ‘collector_name’ => ‘CONCAT(UserDetail.first_name, ” “, UserDetail.middle_name, ” “, UserDetail.last_name)’); public $displayField= “collector_name”; } Controller $userDetails = $this->CustomerSubscription->UserDetail->find(‘list’, array(‘conditions’=> array(‘UserDetail.department_id’=>’2’))); $this->set(compact(‘userDetails’));
PHP foreach loop to display certain range
<?php foreach ($personnels as $key =>$personnel): if ($key < 1) continue;?> <?php echo $personnel; ?> <?php if ($key > 2) break; endforeach; ?>
tutorialspoint : quality online education technical and non-technical subjects
The tutorialspoint is an absolutely FREE website which has been created to provide quality online education to the people who are enthusiastic to study different technical and non-technical subjects in “Simply Easy Learning” way…. The tutorialspoint is aiming to provide the best tutorials on almost every subject related to academic, […]
Programmers! Do you need an excuse?
Programmers! Do you need an excuse? Check out the following two sites for lots of excuses. http://developerexcuses.com http://programmingexcuses.com
Android Web Editor
One of the best Web Editor on Android. https://play.google.com/store/apps/details?id=com.webeditlite.app
WinMerge : Open Source differencing and merging tool for Windows
WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare both folders and files, presenting differences in a visual text format that is easy to understand and handle. WinMerge is highly useful for determining what has changed between project versions, and then merging changes between versions. […]