Git PHP lint pre-commit hook
This post describes a small tweak to make to php lint checking via a git pre-commit hook. Using git hooks to check syntax errors – Tim Akinbo’s Blog
This post describes a small tweak to make to php lint checking via a git pre-commit hook. Using git hooks to check syntax errors – Tim Akinbo’s Blog
While Panels is great for controlling the layout of drupal pages, there are times when you can’t use the module to theme a page. For uncached content, it does introduce some performance overhead into the drupal request change. It can also be tedious to migrate changes from one environment to the other if you don’t
This is a concise example showing how you can use the Features module to bundle configurations in Drupal into a module. It's great to see the Drupal community moving towards using code to capture, reuse, and deploy configuration settings. It's been the biggest pain point in working with Drupal for me. One of the things
Feature module example to bundle WYSIWYG Configuration Read More »
Arne Blankerts – part of thePHP.cc, premium PHP consulting and training. Selenium is a java based portable testing framework. Seleniumm RC runs any browser supported by the framework, firefox, opera, etc Can operate/execute ANY browser available on the host machine On Linux, have to tweak how process is shutdown. Selenium IDE – extension for Firefox
Today's keynote is about trends that developers across platforms and languages will face. None of these should be big surprise if you keep up to date and "read the internet". Presented by the VP of Technology at dzone.com. The Rise of Agile and Lean Majority of developers report using Agile, but it means different things
I have to admit that i jumped over to using Habari for my blog mainly based on how well designed and obejct oriented the underlying API seemed from the documentation. Coming from looking at Drupal code all day, which is painfully NOT Object Oriented, yes with capitals, the code is more readable and, so far,
Its time to relaunch my blog as Bytes in the Margin. I like the new name, which is not an anagram of my own name. I was inspired by all the notebooks I have from school and work meetings, which are decorated with pen and pencil doodles in the margin. While the title is new,
Having a good debugger and error reporting can mean the difference between spending an hour hunting down the line of code causing bug and killing it quickly. For PHP, xdebug is my preferred debugger (are there others?),. Thanks to this link on debuggable.com, I was able to find a precompiled binary for OS X. Setting
There are a lot of cases where having one computer just isn’t enough. If you’re a web developer or webmaster, you’ll want to view your website in more than one browser. If you’re a PHP programmer, you may be itching to check out the new 5.3 release and test your web applications on it. Using
HOWTO: Use VirtualBox to setup an Internet Explorer testing machine Read More »
Add it to your aliases, this one liner adds all unrecognized files in the current directory (preceded by ? in svn status) to a svn project. svn st | grep ‘^?’ | cut -d ‘ ‘ -f 7 | xargs svn add