Finally, PHPUnderControl for Drupal 6 and 7.
[First draft]
[Update: Due to a latest code change in Drupal7's simpletest module, Drupal 7 support is now broken :-( ]
[First draft]
[Update: Due to a latest code change in Drupal7's simpletest module, Drupal 7 support is now broken :-( ]
[The first part of "Comet Story" was the story of failure. This part is no different with a slight twist at the end.]
Forgetting Comet was not such a bad thing actually. In the aftermath, I ended up passing the Zend Certified Engineer exam :-) But after the exam, the itch was back; time and again, I'll start thinking about Comet and online whiteboards. Regarding Comet, I was probably thinking deep inside my mind that a magic solution will appear somehow.
A few years ago, I wanted to create a remote tutoring website. I even bought a domain name - remoteguru.info. Then after a long thought, I decided against creating the site and instead concentrate on AI (no, I haven't built R2D2 yet). But in the meantime, I have done some homework on this remote tutoring site. In this piece, I'll tell what happened during that time.
CruiseControl is a continuous integration tool. When any project is listed with CruiseControl, it looks for source code changes in that project at regular intervals and runs various tools everytime the codebase is updated. These tools include build tools, unit test frameworks, coding standard checker, source code documentation generator, etc. Any tool that has anything to do with source code can be in this list as long as they fulfill one criteria - the ability to generate XML output. CruiseControl is written in Java and its focus is also on the Java world.
Recently I have been watching lots of Macgyver. I discovered that, one of my favourite episodes is "The Road Not Taken" (season 2, episode 7) where Macgyver employs some sort of rudimentary early-warning system to save a group of orphan children, himself, his boss (yes, papa Thorton, as Jack Dalton used to call him :), and his and his boss's former love interests!!!
If you like REPL (AKA interactive programming as in "php -a"), you might love this script as well. It loads the whole of Drupal and then waits for
you to type in any php statements. This statements can ALSO be any function defined in your Drupal instance. Here's a demo:
[ju@ju ~]$ php php/inter-drupal.php
Go...
echo drupal_strlen('hihi hoho haha'), PHP_EOL;
14
echo base_path(), PHP_E0L;
/./
echo 3;
3
$return_value = arg(0);
echo $return_value;
node
exit;
[ju@ju ~]$
<?php /**
0. Name the Super Global that holds the cookies.
1. Which was not available before php5 -
a) DOM b) SOAP c) SAX d) XSL
2. Is the use of type hinting available in methods only ?
3. What's the output of the following:
function foo(IAMACLASS &$arg0 = NULL) { if (is_null($arg0)) { echo 42; } }
4. What's the output of the following:
function foo(IAMACLASS &$x = NULL) { $x = 42; } $obj = new stdClass; foo($obj); echo $obj;
After this mornings performance by array_merge(), I doubt I would dare to use it again. What I was doing was pretty simple. My code was reading a textfile with the first one million primes. Each line had 8 primes and there were 125002 lines. I was extracting the primes eight-at-a-time and merging them with an array. This merge operation, as you can guess, was happening through array_merge() :
$primes = array();
while ($data = fscanf($fp, ' %d %d %d %d %d %d %d %d \n'))
{
$primes = array_merge($primes, $data);
}
Everybody on the Drupal ecosystem knows that the View module is a query builder.
You select some database fields and some rules (equals, not equals, etc) from
the View builder and gets the output of the query in page or block or some
other format. All's fine so far. The problem started when I actually tried to
create a View instead of reading its praises. The problem was simple - I
couldn't find the database fields of my love in View builders field list. I was
eventually enlightened by Mr. Nobleman.