Noutati
|
|
Is Your JavaScript Library Standards Compliant?
One of the things JavaScript libraries like jQuery, Dojo, and YUI can do for you is add support for features in the latest Web standards long before they are built into browsers. But are some libraries going too far?For the developers of JavaScript libraries, there is a temptation to extend the features of the standard, [...]

|
|
|
A PHP Guy’s Look At Python
Against all odds, I found myself with a little spare time this week. Rather than do something sensible like clean the garage or get some exercise, I took the opportunity to learn a new programming language: Python.Like may SitePoint readers, I cut my teeth on PHP. I’ve become very comfortable with it over the years, [...]

|
|
|
Job Posting: Humanitas Holdings Seeks Senior Web Software Engineer (El Segundo, CA)
| Company | Humanitas Holdings, Inc. | | Location | El Segundo, CA | | Title | Senior Web Software Engineer | | Summary | Company Overview: Our client specializes in creating premiere digital content monitoring systems for major Cable Television companies. Their innovative products provide unparalleled visibility into video streams and digital services delivery in real time Job Description: The Senior Web Engineer is a key m
|
|
|
Job Posting: Humanitas Holdings Seeks Senior Web Software Engineer (El Segundo, CA)
| Company | Humanitas Holdings, Inc. | | Location | El Segundo, CA | | Title | Senior Web Software Engineer | | Summary | Company Overview: Our client specializes in creating premiere digital content monitoring systems for major Cable Television companies. Their innovative products provide unparalleled visibility into video streams and digital services delivery in real time Job Description: The Senior Web Engineer is a key m
|
|
|
Zend Developer Zone: PHP Abstract Podcast Episode 39: Interview with Derick Rethans
The Zend Developer Zone has posted the latest episode of their PHP Abstract podcast series - an interview with Derick Rethans: Derick Rethans provides solutions for Internet related problems. He has contributed in a number of ways to PHP, including the mcrypt, Date and input-filter extensions, bug fixes, additions and leading the QA team. He now works as project leader for the eZ components project for eZ systems A.S. In his spare time he likes to work on Xdebug, watch movies, travel and practice photography. The three usual ways to get this latest show are all still there - just the mp3, using the
Citeste mai mult
| Comentarii (0)
| Salveaza
|
|
|
|
Zend Developer Zone: PHP Abstract Podcast Episode 39: Interview with Derick Rethans
The Zend Developer Zone has posted the latest episode of their PHP Abstract podcast series - an interview with Derick Rethans: Derick Rethans provides solutions for Internet related problems. He has contributed in a number of ways to PHP, including the mcrypt, Date and input-filter extensions, bug fixes, additions and leading the QA team. He now works as project leader for the eZ components project for eZ systems A.S. In his spare time he likes to work on Xdebug, watch movies, travel and practice photography. The three usual ways to get this latest show are all still there - just the mp3, using the
Citeste mai mult
| Comentarii (0)
| Salveaza
|
|
|
|
Job Posting: Integraclick (Clickbooth.com) Seeks PHP/MySQL Developer (Sarasota/Miami, FL)
| Company | Integraclick, Clickbooth.com | | Location | Sarasota, FL & Miami, FL | | Title | PHP/MySQL Developer | | Summary | Are you looking to work on cutting edge technologies? Are you a great PHP/MySQL coder that can pick up new ways of doing things and new languages quickly? Are you looking for an opportunity to be a major part of one of the most talented teams in the world? Internet Marketing Firm IntegraClick, Inc., and its subsidiary, Clickbooth.com, are seeking highly motivated, intelligent, and trustworthy employees to whom w
|
|
|
Job Posting: Integraclick (Clickbooth.com) Seeks PHP/MySQL Developer (Sarasota/Miami, FL)
| Company | Integraclick, Clickbooth.com | | Location | Sarasota, FL & Miami, FL | | Title | PHP/MySQL Developer | | Summary | Are you looking to work on cutting edge technologies? Are you a great PHP/MySQL coder that can pick up new ways of doing things and new languages quickly? Are you looking for an opportunity to be a major part of one of the most talented teams in the world? Internet Marketing Firm IntegraClick, Inc., and its subsidiary, Clickbooth.com, are seeking highly motivated, intelligent, and trustworthy employees to whom w
|
|
|
Job Posting: Cyber Switching, Inc Seeks PHP Developer (San Jose, CA)
| Company | Cyber Switching, Inc. | | Location | San Jose, CA | | Title | PHP Developer | | Summary | Cyber Switching, Inc. designs and manufactures a comprehensive line of power management devices that provide solutions for remote access, rebooting, and power cycling of any attached device, anywhere in the world. The company began developing products in 1994, incorporated in 1999 and employs a team that is dedicated to turning ideas into solutions. We are expanding our team to include PHP Web Developers for future product innovation.
|
|
|
Job Posting: Cyber Switching, Inc Seeks PHP Developer (San Jose, CA)
| Company | Cyber Switching, Inc. | | Location | San Jose, CA | | Title | PHP Developer | | Summary | Cyber Switching, Inc. designs and manufactures a comprehensive line of power management devices that provide solutions for remote access, rebooting, and power cycling of any attached device, anywhere in the world. The company began developing products in 1994, incorporated in 1999 and employs a team that is dedicated to turning ideas into solutions. We are expanding our team to include PHP Web Developers for future product innovation.
|
|
|
Larry Garfield's Blog: Drupal 7 gets introspective code registry
Larry Garfield talks about a new feature of Drupal 7 in a new post to his blog - the new introspective code registry that's been introduced in this latest version. As a GHOP Task , Cornil did a performance analysis of Drupal and found its two largest performance drains were the bootstrap process and the theming layer. Quite simply, Drupal spends too much time including code. [...] Fortunately, Drupal 7's self-learning code registry system has just landed, which should obliterate most of the wasted bootstrap cost. Larry describes the "heart of it all", the
Citeste mai mult
| Comentarii (0)
| Salveaza
|
|
|
|
Larry Garfield's Blog: Drupal 7 gets introspective code registry
Larry Garfield talks about a new feature of Drupal 7 in a new post to his blog - the new introspective code registry that's been introduced in this latest version. As a GHOP Task , Cornil did a performance analysis of Drupal and found its two largest performance drains were the bootstrap process and the theming layer. Quite simply, Drupal spends too much time including code. [...] Fortunately, Drupal 7's self-learning code registry system has just landed, which should obliterate most of the wasted bootstrap cost. Larry describes the "heart of it all", the
Citeste mai mult
| Comentarii (0)
| Salveaza
|
|
|
|
Richard Heyes' Blog: Displaying Errors (based on hostname)
In a response to this post on the PHP 10.0 Blog, Richard Heyes offers a method for what Stas was wanting: OK, then what we do if something weird happens in production and we want to see the errors, but we don't want others to see them? [...] Maybe PHP could have some setting like display_errors=local which would enable display_errors for requests originating from developer machine but would disable it when outsider accesses it? Richard's solution checks the HTTP_HOST value of the current request and, based on whether it's marked as "live" or "dev", uses a ini_set to chang
|
|
|
Richard Heyes' Blog: Displaying Errors (based on hostname)
In a response to this post on the PHP 10.0 Blog, Richard Heyes offers a method for what Stas was wanting: OK, then what we do if something weird happens in production and we want to see the errors, but we don't want others to see them? [...] Maybe PHP could have some setting like display_errors=local whichwould enable display_errors for requests originating from developer machine but would disable it when outsider accesses it? Richard's solution checks the HTTP_HOST value of the current request and, based on whether it's marked as "live" or "dev", uses a ini_set to change
|
|
|
PHP Abstract Podcast Episode 39: Interview with Derick Rethans
Today I’m going to talk to Derick Rethans. Derick Rethans provides solutions for Internet related problems. He has contributed in a number of ways to PHP, including the mcrypt, Date and input-filter extensions, bug fixes, additions and leading the QA team. He now works as project leader for the eZ components project for eZ systems A.S. In his spare time he likes to work on Xdebug, watch movies, travel and practise photography.
|
|
|
|
|
|
|
|
|
|
|
| | |