 | News Feed |
 | Jobs Feed |
Sections
|
| feed this: |  |
Community News: The DooPHP Framework
by Chris Cornutt July 29, 2009 @ 11:49:53
The DooPHP framework has officially laid their claim on being one of the "fastest MVC based PHP frameworks available" with features like URI routing, RESTful API support, ORM support and a flexible license.
DooPHP is a rapid development framework for PHP using commonly known design patterns like MVC and ORM, reduces development costs and helps developers write less code. The framework itself is designed with main focus on its core performance rather than the wide range of features. It is for those who need a more structured project but do not wish to spend much time on learning a framework or a new language.
Features included in the framework are things like: internationalization support, templating, logging/profiling, E_STRICT compliance and being "Ajax friendly". If you're interested in seeing just how fast the framework is in comparison, check out their benchmarks.
They seem a little bit suspicious, though, in comparison to some other numbers generated by the Yii framework project.
voice your opinion now!
doophp framework speed fast benchmark
Job Posting: FAST (Recruiter) Seeks PHP Developer (St. Louis, MO)
by Chris Cornutt September 05, 2008 @ 08:22:24
| Company |
FAST (Recruiter) |
| Location |
St. Louis, MO |
| Title |
PHP Developer |
| Summary |
This role is for a programming developer. The programming developer is responsible for developing software according to specification and standards for a packaged software application.
Technical experience is required, and domain knowledge within the functional components is a plus.
Software developer responsibilities include.
- Perform programming activities to deliver software according to specification and standards.
- Work with project manager and functional lead to ensure clarity of specification.
- Perform software build activities to ensure compliance with standards and best practices for the software package.
- Demonstrate ability to perform programming tasks.
- Must be a self-starter; possess excellent communication and organizational skills along with the ability to work well under pressure.
- Assist with the development of procedures and processes to improve operational efficiency.
- Work in an environment that adheres to work plans/schedules and status reporting.
- Work effectively with internal and external clients.
- Additional duties as assigned.
Education/ Work experience requirements:
- Bachelor degree or equivalent. Equivalent combination of education and experience may be substituted for degree.
- Strong skills in web application components such as PHP, SOAP, Tomcat, Struts, JSP's, and MySQL.
- Familiarity with object oriented programming techniques and common design patterns
- Working knowledge of Linux is highly desirable
- Experience with Web Services a plus
- Demonstrate a strong track record as a programmer
- 2+ years programming experience in web application environment
- Demonstrate the ability to meet deadlines and solve issues.
- Possess good judgment, positive attitude and professional demeanor.
- Dependable, with excellent organizational skills.
- Strong interpersonal skills, and be flexible in a dynamic team environment.
- Ability to multi-task meeting multiple deadlines
Please email Katie Scheuermann at kscheu@fastsearch1.com
|
voice your opinion now!
job post fast recruiter developer stlouis mo
Cormac's Blog: Fast server-side rejection of large image uploads using $_FILES
by Chris Cornutt August 29, 2008 @ 12:58:04
Recently on his blog Cormac has posted a quick little tutorial on making things a bit faster when rejecting file uploads in PHP that are just a bit too large.
Discovered today you can report to a user if the file(s) he/she is uploading is too large without having to wait for the file to finish uploading by checking $_FILES.
The key is the "error" field in the $_FILES array that actually returns its value before the upload is finished if the size of the file is larger than the MAX_FILE_SIZE set in the POSTed information of the form. The Content-length header is sent before the actual payload (the file upload data) so PHP can interpret that before the upload starts and kick it back with an error if it's too large.
voice your opinion now!
file upload maxfilesize contentlength fast tutorial
Nick Halstead's Blog: Tweetmeme - building stuff fast in PHP
by Chris Cornutt January 29, 2008 @ 07:52:00
Nick Halstead has pointed out a website, written in PHP he's created to help make a little bit of sense out of the links that go flying past in your twitter client - tweetmeme.
What is it? It tracks the public timeline from twitter and picks up any links that get posted. It then follows each link to find final destination and then categorizes the content into blogs / video / images / audio. This project really shows what is possible using PHP if you know what you are doing.
Most of the work was done by another developer, Stuart Dallas as one of four that worked on the project together. It's written in PHP5 and uses only about 20 PHP files to get the job done. You can also check out the launch post over on tweetmeme's blog for more information on the service.
voice your opinion now!
fast tweetmeme twitter links stream category
Jonathan Street's Blog: Lightning Fast Sites & Better Benchmarks
by Chris Cornutt September 25, 2007 @ 12:56:00
Jonathan Street has a few tips for developers out there looking to speed things up on their site - seven tips towards "lightning fast sites".
I was recently creating a small tool in PHP and found myself hitting the max execution time and getting a fatal error. As it was only for my personal use I just bumped up the max execution time but it made me stop and think about how I could improve the speed of those scripts I do put up for public use. Most people aren't going to wait for 60 seconds for a page to load. Naturally I hit the internet looking for tips.
The tips he came across (each including the simple benchmarks to show the differences) were:
- sizeof vs count
- is_int vs is_integer
- chop vs rtrim
- doubleval vs floatval
- fwrite vs fputs
- implode vs join
- ini_alter vs ini_set
Be sure to also check out his follow up post talking about building better benchmarks to test the sorts of tips he's given above.
voice your opinion now!
lightning fast tip benchmark lightning fast tip benchmark
IBM developerWorks: Make PHP apps fast, faster, fastest (Part 1)
by Chris Cornutt February 23, 2007 @ 12:35:00
The IBM developerWorks website has posted the first part of a series looking at boosting the performance and throughput of your PHP applications through an opcode caching software, specifically XCache.
PHP is a scripting language most often used to create Web applications. It's easy to learn and produces visible results quickly. However, because PHP is interpreted, PHP code is parsed and translated to opcodes every time it executes. An opcode cache eliminates that rework, making PHP applications faster.
They start with the installation of the software (just XCache, they assume everything else is installed) and what to edit in the php.ini file to get things up and running. They follow this up with a sample benchmark for a local phpmyadmin installation.
voice your opinion now!
xcache opcode cache performance throughput fast xcache opcode cache performance throughput fast
|
Community Events
Don't see your event here? Let us know!
|