 | News Feed |
 | Jobs Feed |
Sections
|
| feed this: |  |
Fortrabbit.com: BETA survey results
by Chris Cornutt August 28, 2012 @ 11:19:54
Fortrabbit.com has conducted a survey of developers world-wide about what kind of platform, tools and software they use in their development work. They've posted the results to their site today, the answers from about 160 different developers.
We have asked our readers a few questions on their PHP workflows, hosting and tools. We are very curious about this, because we want to build the best PHP PaaS for dev guys.
Some of the highlights from their findings include the large share of Zend Framework use, the predominant use of git for deployment, MySQL still being the database of choice and multi-stage deployment (environments) are a preferred setup. You can see the full results here [pdf].
voice your opinion now!
survey results paas developer pdf
Symfony Blog: The Symfony Community Survey 2012 The Results
by Chris Cornutt July 27, 2012 @ 07:22:58
On the Symfony Blog there's a new post sharing the results of a recent poll they took of some of their developers covering things like job title, how long they've been working with Symfony and their work with the framework.
Before the Symfony Live Conference in Paris, we conducted the first Symfony community survey. The raffle winners will soon be contacted by Anne-Sophie. And without further ado, here are the survey results!
Results are posted both in numbers and in easy to read graphs to questions like:
- What is your job?
- How did you get to know symfony?
- Do you use any other PHP framework/CMS?
- What is the average size of projects that you/your company work on?
- How do you get trained?
The last question is interesting - it asked the community how many would be interested in getting a Symfony certification. The results were almost broken into equal thirds of "yes", "no" and "somewhat interested. You can see the full results here.
voice your opinion now!
symfony community survey usage results graph
Zend: Results from "Zend Developer Pulse" 2012 Survey Posted
by Chris Cornutt June 27, 2012 @ 11:13:25
Zend has published the results of their "Developer Pulse" survey for 2012 - the product of a survey of over three thousand developers across the PHP community.
The summer 2012 edition of the Zend Developer Pulse™ survey shows that PHP is gaining prominence as a cloud application development language of choice. The combination of speed and ease of use enables developers to build and deploy PHP-based cloud applications quickly: more than half the developers surveyed indicated that the apps they are developing today are destined to be deployed in cloud environments.
You can view the full results of the report in this PDF which touches on topics like:
- Developing in the cloud
- Working with APIs
- Versions of PHP developers are using
- Tools & best practices
voice your opinion now!
zend results survey developer
Symfony Blog: Symfony Community Survey 2012
by Chris Cornutt May 16, 2012 @ 09:05:21
The Symfony Project is running a community survey for developers using the framework. It asks some generic questions including "how long have you been working with Symfony?" and "how did you get to know Symfony?"
Symfony 2.0 has been released for quite a long time now, and so we would like to conduct a quick survey to get a better understanding of the Symfony community. I'm going to use some of the aggregated results for my Symfony Live keynote, and all the aggregated results will be published on this blog after the conference.
If you're a SenseioLabs Connect user, you can also get a badge for participating and will be included in a giveaway for tshirts and hats.
voice your opinion now!
community survey symfony project
Larry Garfield's Blog: PHP project structure survey
by Chris Cornutt January 16, 2012 @ 13:08:38
Larry Garfield has posted the results of some of his research into popular PHP frameworks and projects and see how they handle their structure as it relates to the PSR-0 standard.
As Drupal is in the process of considering how to restructure code to best leverage the PSR-0 standard, I figured it would be wise to take a quick survey of how some other major projects organize their code bases. This is not a complete rundown of every project, simply roughly comparable notes for those areas Drupal is currently discussing. I am posting it here in the hopes that it will be useful to more than just Drupal.
The projects he looked to for his examples were:
voice your opinion now!
project structure survey namespace framework drupal
Zend: Zend Takes The Pulse Of Developers In The APP Economy
by Chris Cornutt January 12, 2012 @ 12:56:15
In this new press release Zend has announced the posting of the results from their "Zend Developer Pluse" survey - a survey taken of developers world-wide about their habits, preferences and desires.
Zend Technologies addresses [the question of how a new demand for a new generation of apps] in Zend Developer Pulse, a new survey series that takes the pulse of a vibrant community of developers from around the world. The company's first developer survey conducted in late November 2011 offers insights on emerging technology and career trends captured from 3,335 respondents. The findings are summarized in a report now available at [http://www.zend.com/topics/zend-developer-pulse-survey-report-0112-EN.pdf].
The press release mentions some of the details from the survey including that 66% of developers will be working with mobile app development projcts, that next-generation UI deveopment scored high in skillsets, there was a strong interest in cloud development and that there's been a strong rise in the need for PHP development skills in the last year.
You can read the entire report here.
voice your opinion now!
zend survey pulse results developer
Zend: Zend Reveals What Music Will Keep Developers Productive (and Happy) This Holiday
by Chris Cornutt December 21, 2011 @ 10:06:59
In a new press release to their site, Zend teases at some of the results from their Zend Developer Pulse survey. In these results, they share what music developers prefer (according to the survey) for when they're developing.
The survey showed that as much as 86% of developers listen to music while coding. Of the major music genres, 42% of developers said they prefer coding to music of the rock/pop variety.
The results also included the top artists, some "guilty pleasure" choices and some of the least popular artists. The full results of this survey will be coming out in January 2012, giving a "developer perspective" on the current state of the industry, technology in general and their career.
voice your opinion now!
music survey developer productive opinion like dislike
Developer Drive: PHP User Survey Setting Variable Values and Reading from Tables
by Chris Cornutt November 30, 2011 @ 11:04:33
The Developer Drive blog has the latest post in their "PHP User Survey" series focusing on setting up admin functionality for the poll managers to use.
In Part I of this series, we started the process of creating user polls for a business web site. Part I gave the layout of the data layer and began the construction of the class file. In this part we will continue with adding methods to the class file that will enable the administrator to set the variable values and read from the database tables.
Code is included for setting the poll and answer ID values (setters), grabbing the number of polls currently defined, finding the active ones and pulling out poll data along with its answers. If you need to catch up, you can find the other parts here: part one, part two.
voice your opinion now!
survey poll tutorial database table
Developer Drive: Creating a PHP User Survey Writing to Database Tables
by Chris Cornutt November 22, 2011 @ 14:54:03
On Developer Drive today they've posted the most recent article in a tutorial series showing you how to create a user survey that stores the results to a database table. In this latest tutorial, they show how to hook the current code into a MySQL backend.
In the first two parts of this series, we created the data layer that will hold the polling data and established methods for setting the variable values and reading from the database tables. In this part, we will build the methods that will write new polls and answers to the tables.
They include the code for an "addPoll" method that inserts the questions and answers for the polls. Their "editPoll" method updates the poll questions/answers and the "addVote" method does exactly like it sounds - adding a vote to one of the poll options. Also included are "deletePoll", "activatePoll" and "deactivatePoll".
voice your opinion now!
tutorial database table poll survey answers questions
|
Community Events
Don't see your event here? Let us know!
|