<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://www.windowscomputer.com/feed.xsl" ?>
<?xml-stylesheet type="text/css" href="http://www.windowscomputer.com/feed.css" ?>
<rss version="2.0" xml:base="http://www.windowscomputer.com">
<channel>
 <title>Hiveminds Magazine - Web Developer</title>
 <link>http://www.windowscomputer.com/taxonomy/term/184/Web-Developer</link>
 <description></description>
 <language>en</language>
 <copyright><![CDATA[Hiveminds Magazine copyrighted 2005-2006]]></copyright>
<item>
 <title>Known criticisms of PHP or "how to bash a language"</title>
 <link>http://www.windowscomputer.com/content/known-criticisms-of-php-or-how-to-bash-a-language.html</link>
 <description><![CDATA[Criticisms of PHP include those general criticisms associated with other scripting programming languages and dynamically typed languages. Some  the problems will be fixed but many of them are built into the architecture of the language and will remain there.
]]></description>
<comments>http://www.windowscomputer.com/content/known-criticisms-of-php-or-how-to-bash-a-language.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/39">PHP</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/185">Tips and Tricks</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
<pubDate>Mon, 17 Nov 2008 21:56:18 -0800</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/4181</guid>
</item>
<item>
 <title>PHP 5.3 and call_user_func() changes for the better</title>
 <link>http://www.windowscomputer.com/content/php-5-3-and-call-user-func-changes-for-the-better.html</link>
 <description><![CDATA[Drupal is built on the PHP call_user_func() construct. The function has gotten a face lift in PHP 5.2.3 and will be getting further inhanced in PHP 5.3. But will Drupal and other similar  applications be able to take advantage of the new power of PHP 5.3 or even PHP 6?
]]></description>
<comments>http://www.windowscomputer.com/content/php-5-3-and-call-user-func-changes-for-the-better.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/185">Tips and Tricks</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/947">php5</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/948">php6</category>
<pubDate>Sun, 24 Aug 2008 13:07:27 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/4081</guid>
</item>
<item>
 <title>Totally useless PHP code written in beer</title>
 <link>http://www.windowscomputer.com/content/totally-useless-php-code-written-in-beer.html</link>
 <description><![CDATA[I fell asleep while reading the Java Server Programming  J2EE Edition again. But this time when I awoke I sat down and wrote some PHP code that  is total gibberish, does not produce any errors and seems to be written in beer language.

&amp;lt;?phpclass&amp;nbsp;Foo{&amp;nbsp;&amp;nbsp;private&amp;nbsp;$_stock&amp;nbsp;=&amp;nbsp;null;&amp;nbsp;&amp;nbsp;private&amp;nbsp;$_keg&amp;nbsp;=&amp;nbsp;null;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;function&amp;nbsp;__construct($name,$arg4)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;$name('&amp;nbsp;today');&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$arg1&amp;nbsp;=&amp;nbsp;'&amp;nbsp;has&amp;nbsp;ale';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$arg2&amp;nbsp;=&amp;nbsp;'&amp;nbsp;and&amp;nbsp;pale&amp;nbsp;ale';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$arg3&amp;nbsp;=&amp;nbsp;'&amp;nbsp;and&amp;nbsp;light&amp;nbsp;beer';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;$name($arg1,$arg2);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;$name($arg1,$arg2,$arg3,$arg4);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;function&amp;nbsp;Variable()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$string&amp;nbsp;=&amp;nbsp;implode(func_get_args());&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;Bar($string);&amp;nbsp;//&amp;nbsp;This&amp;nbsp;calls&amp;nbsp;the&amp;nbsp;Bar()&amp;nbsp;method&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;function&amp;nbsp;Bar($string)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;"This&amp;nbsp;is&amp;nbsp;Bar"&amp;nbsp;.&amp;nbsp;$string&amp;nbsp;.'&amp;lt;br&amp;gt;';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}}$funcname&amp;nbsp;=&amp;nbsp;"Variable";$foo&amp;nbsp;=&amp;nbsp;new&amp;nbsp;Foo($funcname,&amp;nbsp;'&amp;nbsp;tomorrow');$foo-&amp;gt;Bar('&amp;nbsp;is&amp;nbsp;open');$foo-&amp;gt;$funcname('&amp;nbsp;has&amp;nbsp;moved');?&amp;gt;


I have no idea what problem I was trying to solve while asleep but it might be that I was just thirsty?
Happy Publishing!
]]></description>
<comments>http://www.windowscomputer.com/content/totally-useless-php-code-written-in-beer.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/39">PHP</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/602">Pencil</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/945">beer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/946">code</category>
<pubDate>Sat, 23 Aug 2008 22:43:00 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/4080</guid>
</item>
<item>
 <title>Freemarker the Java web development template engine</title>
 <link>http://www.windowscomputer.com/content/freemarker-the-java-web-development-template-engine.html</link>
 <description><![CDATA[
What is FreeMarker?
 FreeMarker is a &amp;quot;template engine&amp;quot;; a generic tool to generate        text output (anything from HTML to autogenerated source code) based on templates.        It's a Java package, a class library for Java programmers. It's not an        application for end-users in itself, but something that programmers can embed into their        products. 
]]></description>
<comments>http://www.windowscomputer.com/content/freemarker-the-java-web-development-template-engine.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/173">Announcements</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/42">Java</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/899">framework</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/943">templating</category>
<pubDate>Sat, 23 Aug 2008 01:18:27 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/4078</guid>
</item>
<item>
 <title>Stripes 1.5 Java framework for web development</title>
 <link>http://www.windowscomputer.com/content/stripes-1-5-java-framework-for-web-development.html</link>
 <description><![CDATA[The strongest reason for me switching to PHP for web development few years ago was that I felt that Java was just complicated to build a website on. Hundreds of XML files was a pure turn off. I wish that Stripes existed back then. ]]></description>
<comments>http://www.windowscomputer.com/content/stripes-1-5-java-framework-for-web-development.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/173">Announcements</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/42">Java</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/899">framework</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/942">stripes</category>
<pubDate>Sat, 23 Aug 2008 00:53:09 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/4076</guid>
</item>
<item>
 <title>Jscript.NET is it  Microsofts hidden powerhouse and future?</title>
 <link>http://www.windowscomputer.com/content/jscript-net-is-it-microsofts-hidden-powerhouse-and-future.html</link>
 <description><![CDATA[Is it the black sheep of the family? The redheaded step child? or maybe one of the best keep secrets of Microsoft. Jscript.NET has long been hidden and removed from the choices among the ASP.NET family languages. It is probably the most versitile of all .NET languages and if handled right could push PHP aside as the dominant web language.
]]></description>
<comments>http://www.windowscomputer.com/content/jscript-net-is-it-microsofts-hidden-powerhouse-and-future.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/851">.NET</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/410">Review</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/608">asp.net</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/850">jscript.NET</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/788">microsoft</category>
<pubDate>Wed, 06 Aug 2008 06:04:33 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3928</guid>
</item>
<item>
 <title>Actions and Triggers for Drupal 6</title>
 <link>http://www.windowscomputer.com/content/actions-and-triggers-for-drupal-6.html</link>
 <description><![CDATA[Drupal 6 offers built-in actions that can be performed whenever something happens on your site. Typically, you want to use this to get an alert when someone publishes content on the site, or a new user signs up.

In the Video
]]></description>
<comments>http://www.windowscomputer.com/content/actions-and-triggers-for-drupal-6.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/180">Drupal</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/699">Video</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/782">video</category>
<pubDate>Mon, 14 Jul 2008 21:16:52 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3861</guid>
</item>
<item>
 <title>How to bridge PHP and Java on Windows IIS</title>
 <link>http://www.windowscomputer.com/content/how-to-bridge-php-and-java-on-windows-iis.html</link>
 <description><![CDATA[In a previous tutorial it was shown how to set up the php/java bridge on Windows using the Apache
web server. In this tutorial you learn how to do the same using Windows IIS web server. Though this is a
beginners tutorial you are expected to have some familiarity with IIS. Notice that the version of the PHP Java  bridge used is the older version 3.2.1. 
]]></description>
<comments>http://www.windowscomputer.com/content/how-to-bridge-php-and-java-on-windows-iis.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/177">Tutorials</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/642">php-java</category>
<pubDate>Wed, 09 Jul 2008 12:33:25 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3811</guid>
</item>
<item>
 <title>How to Bridge PHP and Java for Powerful Web Solutions</title>
 <link>http://www.windowscomputer.com/content/how-to-bridge-php-and-java-for-powerful-web-solutions.html</link>
 <description><![CDATA[Here's how to team up two of the most popular and powerful platforms for web development together. With the php-java bridge you can build classes and jar files in Java and call them and use their methods in PHP. Use the quick and easy PHP language to bring Java muscle to your web pages.
]]></description>
<comments>http://www.windowscomputer.com/content/how-to-bridge-php-and-java-for-powerful-web-solutions.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/177">Tutorials</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/642">php-java</category>
<pubDate>Wed, 25 Jun 2008 03:55:42 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3172</guid>
</item>
<item>
 <title>An excellent tutorial on Mambo component development</title>
 <link>http://www.windowscomputer.com/content/an-excellent-tutorial-on-mambo-component-development.html</link>
 <description><![CDATA[Mambo CMS has always intrigued me because it is just so easy to install and operate. But I have not yet done anything more than do a few installs and templates. I left the hard work of developing Mambo components up to those that knew how. Now suddenly my interest in Mambo was lost when I looked up components in the documentation.
]]></description>
<comments>http://www.windowscomputer.com/content/an-excellent-tutorial-on-mambo-component-development.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/182">Mambo</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/177">Tutorials</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
<pubDate>Thu, 10 Apr 2008 10:23:45 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/713</guid>
</item>
<item>
 <title>How to Do Mullti-language Panels in Drupal</title>
 <link>http://www.windowscomputer.com/content/how-to-do-mullti-language-panels-in-drupal.html</link>
 <description><![CDATA[First a caveat. This is an ugly solution according to my colleague who came up with it. What we needed was a way to get panels module to work in three different languages.   This solution was the quickest and easiest way of accomplishing the task without going into the core code and changing things.
Before you start you have to do the normal installation of i18n module and all of its companion modules.
]]></description>
<comments>http://www.windowscomputer.com/content/how-to-do-mullti-language-panels-in-drupal.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/180">Drupal</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
<pubDate>Fri, 21 Dec 2007 23:16:25 -0800</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3634</guid>
</item>
<item>
 <title>Joomla Developers Manual in CHM Format</title>
 <link>http://www.windowscomputer.com/content/joomla-developers-manual-in-chm-format.html-0</link>
 <description><![CDATA[Joomla began life as Mambo and morphed into Joomla in September 2005 at which time the version numbering for Joomla was started at 1.0.  Consequently you may see occassional references in this document to Mambo versions which are direct ancestors of Joomla.  In general, versions of Mambo prior to 4.5 are of historical interest only and are not documented here.  Mambo 4.5.2.3 was directly followed by Joomla 1.0.]]></description>
<comments>http://www.windowscomputer.com/content/joomla-developers-manual-in-chm-format.html-0#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/292">Access control</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/293">Administration</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/425">Community Builder</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/134">Components</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/294">Content</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/135">Documentation</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/295">E-commerce</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/296">Helper components</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/297">Integration</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/181">Joomla</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/133">Joomla</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/426">Joomla 1.0</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/427">Joomla 1.1</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/424">Language</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/137">Modules</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/139">Patches</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/136">Plugins</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/138">Templates</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
<pubDate>Wed, 03 Oct 2007 01:28:12 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3587</guid>
</item>
<item>
 <title>eRuby: Getting Started with Ruby on the Web</title>
 <link>http://www.windowscomputer.com/content/eruby-getting-started-with-ruby-on-the-web.html</link>
 <description><![CDATA[How to setup a windows development PC and a shared web host so you can start developing Ruby web applications in the same way you do PHP, embedded in HTML. Ruby is easy to learn and has features that make it more useful than other web scripting languages. Now you can use eRuby to create robust web applications and websites.
]]></description>
<comments>http://www.windowscomputer.com/content/eruby-getting-started-with-ruby-on-the-web.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/177">Tutorials</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/603">eRuby</category>
<pubDate>Sun, 02 Sep 2007 11:35:33 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3094</guid>
</item>
<item>
 <title>How to Install eAccelarator PHP Cache</title>
 <link>http://www.windowscomputer.com/content/how-to-install-eaccelarator-php-cache.html</link>
 <description><![CDATA[eAccelerator is a free open-source PHP accelerator, optimizer, and dynamic content cache. It increases the performance of PHP scripts by caching them. This is the second part of a series on how to install PHP and optimize it with a cache handler. Here we take a look at installing eAccelerator on a shared hosting account at Dreamhost. eAccelerator typically reduces server load and increases the speed of your PHP code by 1-10 times.
]]></description>
<comments>http://www.windowscomputer.com/content/how-to-install-eaccelarator-php-cache.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/39">PHP</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/177">Tutorials</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
<pubDate>Thu, 30 Aug 2007 00:35:21 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3202</guid>
</item>
<item>
 <title>Forms API - How to use hook_form_alter</title>
 <link>http://www.windowscomputer.com/content/forms-api-how-to-use-hook-form-alter.html</link>
 <description><![CDATA[This a step by step for overriding a form element that is built by one module and then changed by another. 
The module doing the overrride must be loaded after the originating module and its form. You can do this by naming the override module to load after the originator. Modules are loaded in alphabetical order unless set by weight. All modules have a default weight of 0. To change this go into the stystem table of the database, find the rows with the modules to be used and change the weights to a numerical order of 1 and 2.
]]></description>
<comments>http://www.windowscomputer.com/content/forms-api-how-to-use-hook-form-alter.html#comment-form</comments>
 <category domain="http://www.windowscomputer.com/taxonomy/term/180">Drupal</category>
 <category domain="http://www.windowscomputer.com/taxonomy/term/184">Web Developer</category>
<pubDate>Sun, 26 Aug 2007 04:21:12 -0700</pubDate>
<guid isPermaLink="true">http://www.windowscomputer.com/node/3109</guid>
</item>
</channel>
</rss>
