User Adam Franco - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T18:31:35Z http://stackoverflow.com/feeds/user/15872 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1844519/zend-framework-how-to-do-a-db-select-with-multiple-params/1844531#1844531 4 Answer by Adam Franco for Zend Framework: How to do a DB select with multiple params? Adam Franco 2009-12-04T02:41:33Z 2009-12-04T03:39:10Z <p>You can use multiple where clauses which will be ANDed together by default:</p> <pre><code>$select-&gt;from('group_members') -&gt;where('user_id = ?', $userId) -&gt;where('group_id = ?', $groupId); </code></pre> http://stackoverflow.com/questions/1844426/javascript-toggling/1844474#1844474 0 Answer by Adam Franco for Javascript Toggling Adam Franco 2009-12-04T02:15:11Z 2009-12-04T02:26:25Z <p>Here is a working example with jQuery. </p> <p>Note that I had to change your div classes and <code>td</code> labels to remove whitespace so that the labels would be equivalent to the class-names. If you didn't want dashes in the labels you could do string manipulation in Javascript to remove white-space or give the <code>td</code>s the same classname as their corresponding div and then look at the classname of the clicked <code>td</code> rather than its inner-text.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;jQuery hiding example&lt;/title&gt; &lt;script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'&gt;&lt;/script&gt; &lt;script type='text/javascript'&gt; $(document).ready(function(){ $('td').click(function() { var target = $(this).text(); if (target == 'All Dates') { $('div.box').show(); } else { $('div.box').hide(); $('div.' + target).show(); } }); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;table class="left-dates"&gt; &lt;tr&gt;&lt;td&gt;All Dates&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;01-dec-2009&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;02-dec-2009&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;03-dec-2009&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;04-dec-2009&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;div class="box 01-dec-2009"&gt; foo &lt;/div&gt; &lt;div class="box 03-dec-2009"&gt; bar &lt;/div&gt; &lt;div class="box 04-dec-2009"&gt; foobar &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1844387/session-persistence/1844420#1844420 0 Answer by Adam Franco for session persistence Adam Franco 2009-12-04T01:56:22Z 2009-12-04T01:56:22Z <p>Each web-server and runtime environment has its own (and often several) ways of storing session data. Common session stores are temporary files, databases, distributed caches such as memcached, and web-server memory.</p> <p>As an example, by default PHP stores its session information in temporary files, making existing sessions available after a server restart. </p> <p>Storing session information in a database or memcache will likewise result in sessions persisting after web-server restart, but with the advantage of them being available to a cluster of web-servers.</p> <p>Some platforms or configurations may store the session data in web-server memory or a slab of memory shared by all web-server process. This sort of configuration will result in the session data being dropped when the web-server process is killed.</p> http://stackoverflow.com/questions/1680939/how-can-i-access-the-configuration-of-a-zend-framework-application-from-a-control 2 How can I access the configuration of a Zend Framework application from a controller? Adam Franco 2009-11-05T14:34:03Z 2009-11-17T08:43:16Z <p>I have a Zend Framework application based on the <a href="http://framework.zend.com/docs/quickstart/" rel="nofollow">quick-start</a> setup. </p> <p>I've gotten the demos working and am now at the point of instantiating a new model class to do some real work. In my controller I want to pass a configuration parameter (specified in the application.ini) to my model constructor, something like this:</p> <pre><code>class My_UserController extends Zend_Controller_Action { public function indexAction() { $options = $this-&gt;getFrontController()-&gt;getParam('bootstrap')-&gt;getApplication()-&gt;getOptions(); $manager = new My_Model_Manager($options['my']); $this-&gt;view-&gt;items = $manager-&gt;getItems(); } } </code></pre> <p>The example above does allow access to the options, but seems extremely round-about. Is there a better way to access the configuration?</p> http://stackoverflow.com/questions/1608427/how-can-i-determine-if-a-pdo-statement-cursor-is-closed 0 How can I determine if a PDO statement cursor is closed? Adam Franco 2009-10-22T16:30:25Z 2009-10-22T16:30:25Z <p>I have a search class that keeps prepared PDO statements around for re-execution with new parameters each time the search is run. A conflict occurs if a second search is run while a previous search still has a result set open and is returning results. What I'd like to do in this case is simply create and execute a new statement rather than reusing the open one.</p> <p>Is there a way to determine if PDOStatement has had <code>closeCursor()</code> called on it or that all records have been fetched?</p> <p>Alternatively, how can I determine if more results are available in a PDOStatement without advancing past the next result? </p> http://stackoverflow.com/questions/87192/when-would-you-need-to-use-late-static-binding/87584#87584 3 Answer by Adam Franco for When would you need to use late static binding? Adam Franco 2008-09-17T20:56:18Z 2009-10-15T03:35:17Z <p>One primary need I have for late static binding is for a set of static instance-creation methods. </p> <p>This <a href="http://harmoni.sourceforge.net/harmoniDoc/phpdoc/harmoni/primitives.chronology/DateAndTime.html" rel="nofollow">DateAndTime class</a> is part of a chronology library that I ported to PHP from Smalltalk/Squeak. Using static instance-creation methods enables creation of instances with a variety of argument types, while keeping parameter checking in the static method so that the consumer of the library is unable to obtain an instance that is not fully valid. </p> <p>Late static binding is useful in this case so that the implementations of these static instance-creation methods can determine what class was originally targeted by the call. Here is an example of usage:</p> <p><strong>With LSB:</strong></p> <pre><code>class DateAndTime { public static function now() { $class = static::myClass(); $obj = new $class; $obj-&gt;setSeconds(time()); return $obj; } public static function yesterday() { $class = static::myClass(); $obj = new $class; $obj-&gt;setSeconds(time() - 86400); return $obj; } protected static function myClass () { return 'DateAndTime'; } } class Timestamp extends DateAndTime { protected static function myClass () { return 'Timestamp'; } } // Usage: $date = DateAndTime::now(); $timestamp = Timestamp::now(); $date2 = DateAndTime::yesterday(); $timestamp2 = Timestamp::yesterday(); </code></pre> <p>Without late static binding, [as in my current implementation] each class must implement every instance creation method as in this example:</p> <p><strong>Without LSB:</strong></p> <pre><code>class DateAndTime { public static function now($class = 'DateAndTime') { $obj = new $class; $obj-&gt;setSeconds(time()); return $obj; } public static function yesterday($class = 'DateAndTime') { $obj = new $class; $obj-&gt;setSeconds(time() - 86400); return $obj; } } class Timestamp extends DateAndTime { public static function now($class = 'Timestamp') { return self::now($class); } public static function yesterday($class = 'Timestamp') { return self::yesterday($class); } } </code></pre> <p>As the number of instance-creation methods and class-hierarchy increases the duplication of methods becomes a real pain in the butt. LSB reduces this duplication and allows for much cleaner and more straight-forward implementations.</p> http://stackoverflow.com/questions/1533675/php-exec-return-value-for-background-process-linux/1533818#1533818 2 Answer by Adam Franco for PHP exec() return value for background process (linux) Adam Franco 2009-10-07T19:54:48Z 2009-10-15T03:31:21Z <p>My guess is that what you are trying to do is not directly possible. By backgrounding the process, you are letting your PHP script continue (and potentially exit) before a result exists.</p> <p>A work around is to have a second PHP (or Bash/etc) script that just does the command execution and writes the result to a temp file. </p> <p>The main script would be something like:</p> <pre><code>$resultFile = '/tmp/result001'; touch($resultFile); exec('php command_runner.php '.escapeshellarg($resultFile).' &gt; /dev/null 2&gt;&amp;1 &amp;'); // do other stuff... // Sometime later when you want to check the result... while (!strlen(file_get_contents($resultFile))) { sleep(5); } $result = intval(file_get_contents($resultFile)); unlink($resultFile); </code></pre> <p>And the <code>command_runner.php</code> would look like:</p> <pre><code>$outputFile = $argv[0]; exec('badcommand &gt; /dev/null 2&gt;&amp;1', $output, $result); file_put_contents($outputFile, $result); </code></pre> <p>Its not pretty, and there is certainly room for adding robustness and handling concurrent executions, but the general idea should work.</p> http://stackoverflow.com/questions/83887/is-there-any-way-to-detect-the-target-class-in-php-5-static-methods 1 Is there any way to detect the target class in PHP 5 static methods? Adam Franco 2008-09-17T14:34:48Z 2009-09-06T04:22:27Z <p>Below is an example class hierarchy and code. What I'm looking for is a way to determine if 'ChildClass1' or 'ChildClass2' had the static method whoAmI() called on it without re-implementing it in each child class.</p> <pre><code>&lt;?php abstract class ParentClass { public static function whoAmI () { // NOT correct, always gives 'ParentClass' $class = __CLASS__; // NOT correct, always gives 'ParentClass'. // Also very round-about and likely slow. $trace = debug_backtrace(); $class = $trace[0]['class']; return $class; } } class ChildClass1 extends ParentClass { } class ChildClass2 extends ParentClass { } // Shows 'ParentClass' // Want to show 'ChildClass1' print ChildClass1::whoAmI(); print "\n"; // Shows 'ParentClass' // Want to show 'ChildClass2' print ChildClass2::whoAmI(); print "\n"; </code></pre> http://stackoverflow.com/questions/83887/is-there-any-way-to-detect-the-target-class-in-php-5-static-methods/1384848#1384848 1 Answer by Adam Franco for Is there any way to detect the target class in PHP 5 static methods? Adam Franco 2009-09-06T04:16:26Z 2009-09-06T04:22:27Z <p>Now that PHP 5.3 is widely available in the wild, I wanted to put together a summary answer to this question to reflect newly available techniques. </p> <p>As mentioned in the other answers, PHP 5.3 has introduced <a href="http://php.benscom.com/manual/en/language.oop5.late-static-bindings.php" rel="nofollow">Late Static Binding</a> via a new <a href="http://php.benscom.com/manual/en/language.oop5.static.php" rel="nofollow"><code>static</code></a> keyword. As well, a new <a href="http://php.benscom.com/manual/en/function.get-called-class.php" rel="nofollow"><code>get_called_class()</code></a> function is also available that can only be used within a class method (instance or static). </p> <p>For the purpose of determining the class as was asked in this question, the <code>get_called_class()</code> function is appropriate:</p> <pre><code>&lt;?php abstract class ParentClass { public static function whoAmI () { return get_called_class(); } } class ChildClass1 extends ParentClass { } class ChildClass2 extends ParentClass { } // Shows 'ChildClass1' print ChildClass1::whoAmI(); print "\n"; // Shows 'ChildClass2' print ChildClass2::whoAmI(); print "\n"; </code></pre> <p>The <a href="http://php.benscom.com/manual/en/function.get-called-class.php" rel="nofollow">user contributed notes for <code>get_called_class()</code></a> include a few sample implementations that should work in PHP 5.2 as well by making use of <code>debug_backtrace()</code>.</p> http://stackoverflow.com/questions/1355662/why-do-ruby-developers-appear-not-to-use-uml/1355694#1355694 10 Answer by Adam Franco for Why do Ruby developers appear not to use UML? Adam Franco 2009-08-31T03:46:34Z 2009-09-06T03:16:44Z <p>(Note, tongue sometimes placed in cheek.)</p> <p>Probably one of the biggest cultural differences is that Java is often used in projects with large numbers of programmers, led by PHBs, where the high-level system design is done by people with the title "software architect". On these sort of projects the people in the "software architect" role will often generate a large amount of documentation (including UML relationship and state diagrams) during the initial planning phase of the project. These and other documentation artifacts are then expected to be implemented by the hordes of non-architect-programmers.</p> <p>Ruby on the other hand, is the new hotness and is therefore more often chosen by people who want to program in it. Since the "architect" is the implementer, there is less need for complex upfront documentation. The implementers jot a few notes on general design guidelines and then sit down to program rather than designing upfront for others to program.</p> <p>This isn't to say that you won't find a few scattered UML diagrams here or there in projects built in Ruby or other snazzy languages -- such as when someone is trying to describe a complex concept -- but such things just aren't needed as much if you are doing the work yourself.</p> http://stackoverflow.com/questions/1384152/php-filegetcontents/1384338#1384338 1 Answer by Adam Franco for PHP file_get_contents Adam Franco 2009-09-05T21:49:09Z 2009-09-05T21:49:09Z <p><code>file_get_contents()</code> would work in this case assuming that you have <a href="http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen" rel="nofollow" title="allow_fopen_url"><code>allow_fopen_url</code></a> set to <code>true</code> in your php.ini. What you would do is something like:</p> <pre><code>$pageContent = @file_get_contents($url); if ($pageContent) { preg_match_all('#&lt;embed.*&lt;/embed&gt;#', $pageContent, $matches); $embedStrings = $matches[0]; } </code></pre> <p>That said, <code>file_get_contents()</code> won't give you much in the way of error handling other receiving the content on success or <code>false</code> on failure. If you would like to have more rich control over the request and access the HTTP response codes, use the <a href="http://www.php.net/manual/en/function.curl-exec.php" rel="nofollow">curl</a> functions and in particular, <a href="http://www.php.net/manual/en/function.curl-getinfo.php" rel="nofollow"><code>curl_get_info</code></a>, to look at the response codes, mime types, encoding, etc. Once you get the content via either curl or <code>file_get_contents()</code> your code for parsing it to look for the HTML of interest will be the same.</p> http://stackoverflow.com/questions/1359365/is-it-possible-to-set-group-management-rights-on-an-active-directory-group-via-ld 0 Is it possible to set group-management rights on an Active Directory group via LDAP? Adam Franco 2009-08-31T20:52:31Z 2009-08-31T20:52:31Z <p>I am building a self-service group management web-app that will allow users to create and manage groups in our Active Directory under a particular OU. </p> <p>I have successfully written a PHP application that accomplishes most of this by binding as an admin user and creating new group objects in the appropriate OU, then adding and removing 'member' attributes from the group. To limit management to only groups created by a users I've been setting the 'managedBy' attribute on the group to the DN of the user that created it, then I check for an match on that attribute before allowing users to update the group.</p> <p>What I want to do to improve this group-management system is to set the appropriate security attributes on the group so that if a user finds a group that they created in Outlook, they can also manage the membership via that program's interface.</p> <ul> <li>Is it possible to set security attributes on AD groups via LDAP? If so, how?</li> <li>If not possible via LDAP, is this possible via a .NET API or another method?</li> </ul> <p>If it is at all possible to set these attributes from PHP that would be ideal, but I'm not wholly against rebuilding the application in .NET if that is required and is reasonably straight-forward to accomplish this task in that environment.</p> http://stackoverflow.com/questions/1336581/is-there-an-easy-way-in-php-to-convert-from-strings-like-256m-180k-4g-to 2 Is there an easy way in PHP to convert from strings like '256M', '180K', '4G' to their integer equivalents? Adam Franco 2009-08-26T18:17:37Z 2009-08-26T18:27:13Z <p>I need to test the value returned by <code>ini_get('memory_limit')</code> and increase the memory limit if it is below a certain threshold, however this <code>ini_get('memory_limit')</code> call returns string values like '128M' rather than integers.</p> <p>I know I can write a function to parse these strings (taking case and trailing 'B's into account) as I have written them numerous times:</p> <pre><code>function int_from_bytestring ($byteString) { preg_match('/^\s*([0-9.]+)\s*([KMGTPE])B?\s*$/i', $byteString, $matches); $num = (float)$matches[1]; switch (strtoupper($matches[2])) { case 'E': $num = $num * 1024; case 'P': $num = $num * 1024; case 'T': $num = $num * 1024; case 'G': $num = $num * 1024; case 'M': $num = $num * 1024; case 'K': $num = $num * 1024; } return intval($num); } </code></pre> <p>However, this gets tedious and this seems like one of those random things that would already exist in PHP, though I've never found it. Does anyone know of some built-in way to parse these byte-amount strings?</p> http://stackoverflow.com/questions/1039554/ad-via-ldap-how-can-i-return-all-ancestor-groups-from-a-query 3 AD via LDAP - How can I return all ancestor groups from a query? Adam Franco 2009-06-24T16:44:37Z 2009-07-06T18:25:26Z <p>I am querying Active Directory via LDAP (from Java and PHP) to build a list of all groups that a user is a member of. This list must contain all least all groups (organizational-units optional) that contain groups the user is directly a member of. For example:</p> <p>User1 is a member of GroupA, GroupB, and GroupC.</p> <p>GroupA is a member of GroupD.</p> <p>I am looking for a way to construct an LDAP query that will return GroupA, GroupB, GroupC, <em>and</em> GroupD all at once.</p> <p>My current implementation is below, but I am looking for a more efficient way to gather this information.</p> <p><strong>Current Naive Implementation (In pseudo-code)</strong></p> <pre><code>user = ldap_search('samaccountname=johndoe', baseDN); allGroups = array(); foreach (user.getAttribute('memberOf') as groupDN) { allGroups.push(groupDN); allGroups = allGroups.merge(getAncestorGroups(groupDN)); } function getAncestorGroups(groupDN) { allGroups = array(); group = ldap_lookup(groupDN); parents = group.getAttribute('memberOf'); foreach (parents as groupDN) { allGroups.push(groupDN); allGroups = allGroups.merge(getAncestorGroups(groupDN)); } return allGroups; } </code></pre> http://stackoverflow.com/questions/702364/what-is-the-best-way-to-select-attributes-for-all-members-of-an-ad-ldap-group-fro 1 What is the best way to select attributes for all members of an AD LDAP group from PHP? Adam Franco 2009-03-31T18:12:28Z 2009-04-07T14:31:02Z <p>I need to select a number of attributes for all of the users in a particular group from a PHP application. I realize that I could query the 'member' attribute of the group to get the dn of every member and then make a separate LDAP query for the attributes of each member. I am hoping however, that there is a single query that I can perform that would return all of the results at once however, in order to prevent excess back-and-forth between the PHP app and the LDAP server (AD).</p> <p>Using an <a href="http://www.google.com/search?q=ldap%2Bbrowser%2BJarek%2BGawor" rel="nofollow">LDAP browser</a> I can successfully run a search over my full domain:</p> <pre><code>Search DN: DC=middlebury,DC=edu Filter: (memberOf=CN=BG_Cells,OU=General,OU=Groups,DC=middlebury,DC=edu) Attributes: objectClass,mail,givenName,sn,sAMAccountName,telephoneNumber </code></pre> <p>and get back the expected results. When I try this filter using PHP's <code>ldap_search()</code> method however, I get an <code>Operations error</code> with code <code>1</code>. </p> <p>Below is the PHP I'm using.</p> <pre><code>.... $baseDN = 'DC=middlebury,DC=edu'; $filter = '(memberOf=CN=BG_Cells,OU=General,OU=Groups,DC=middlebury,DC=edu)'; $attributes = array('objectClass','mail','givenName','sn','sAMAccountName','telephoneNumber'); $result = ldap_search($connection, $baseDN, $filter, $attributes); if (ldap_errno($connection)) print "Read failed for $filter with message: ".ldap_error($connection).", #".ldap_errno($ connection)); </code></pre> <p>Other filters work just fine with these attributes and using just <code>array('mail')</code> or an empty array for the attributes does not get rid of the error result, so I'm sure the problem is with my filter rather than the connection or attribute set.</p> <p>A second option would be to do one query for the group member dns in the 'member' field of the group and then build a long OR query with every member dn. This still would involve two queries however.</p> <p>So is there a better way to get each member's attributes, ideally in one query?</p> http://stackoverflow.com/questions/520611/how-can-i-match-multiple-occurrences-with-a-regex-in-javascript-similar-to-phps 0 How can I match multiple occurrences with a regex in JavaScript similar to PHP's preg_match_all()? Adam Franco 2009-02-06T15:07:08Z 2009-02-26T05:53:18Z <p>I am trying to parse url-encoded strings that are made up of key=value pairs separated by either <code>&amp;</code> or <code>&amp;amp;</code>. </p> <p>The following will only match the first occurrence, breaking apart the keys and values into separate result elements:</p> <pre><code>var result = mystring.match(/(?:&amp;|&amp;amp;)?([^=]+)=([^&amp;]+)/) </code></pre> <p>The results for the string '1111342=Adam%20Franco&amp;348572=Bob%20Jones' would be:</p> <pre><code>['1111342', 'Adam%20Franco'] </code></pre> <p>Using the global flag, 'g', will match all occurrences, but only return the fully matched sub-strings, not the separated keys and values:</p> <pre><code>var result = mystring.match(/(?:&amp;|&amp;amp;)?([^=]+)=([^&amp;]+)/g) </code></pre> <p>The results for the string '1111342=Adam%20Franco&amp;348572=Bob%20Jones' would be:</p> <pre><code>['1111342=Adam%20Franco', '&amp;348572=Bob%20Jones'] </code></pre> <p>While I could split the string on <code>&amp;</code> and break apart each key/value pair individually, is there any way using JavaScript's regular expression support to match multiple occurrences of the pattern <code>/(?:&amp;|&amp;amp;)?([^=]+)=([^&amp;]+)/</code> similar to PHP's <code>preg_match_all()</code> function?</p> <p>I'm aiming for some way to get results with the sub-matches separated like:</p> <pre><code>[['1111342', '348572'], ['Adam%20Franco', 'Bob%20Jones']] </code></pre> <p>or </p> <pre><code>[['1111342', 'Adam%20Franco'], ['348572', 'Bob%20Jones']] </code></pre> http://stackoverflow.com/questions/165092/can-i-push-to-more-than-one-repository-in-a-single-command-in-git/165131#165131 3 Answer by Adam Franco for Can I push to more than one repository in a single command in git? Adam Franco 2008-10-02T23:58:55Z 2008-10-03T22:01:36Z <p>What I do is have a single bare repository that lives in my home directory that I push to. The post-update hook in that repository then pushes or rsyncs to several other publicly visible locations.</p> <p>Here is my hooks/post-update:</p> <pre><code>#!/bin/sh # # An example hook script to prepare a packed repository for use over # dumb transports. # # To enable this hook, make this file executable by "chmod +x post-update". # Update static info that will be used by git clients accessing # the git directory over HTTP rather than the git protocol. git-update-server-info # Copy git repository files to my web server for HTTP serving. rsync -av --delete -e ssh /home/afranco/repositories/public/ afranco@slug.middlebury.edu:/srv/www/htdocs/git/ # Upload to github git-push --mirror github </code></pre> http://stackoverflow.com/questions/154132/typical-pitfalls-of-cross-browser-compatibility/155664#155664 0 Answer by Adam Franco for Typical pitfalls of cross-browser compatibility Adam Franco 2008-10-01T00:04:39Z 2008-10-01T00:04:39Z <p>When performing an XMLHttpRequest and executing a function 'onreadystatechange' the XMLHttpRequest.responseText property contains the data loaded at that point in Firefox, but not in IE (and maybe Safari). </p> <p>This prevents the capture of partial data in those browsers for use in displaying an execution progress meter.</p> http://stackoverflow.com/questions/154132/typical-pitfalls-of-cross-browser-compatibility/155639#155639 1 Answer by Adam Franco for Typical pitfalls of cross-browser compatibility Adam Franco 2008-09-30T23:53:09Z 2008-09-30T23:53:09Z <p>I've found that IE 6 has pretty small limits to the allowed stack depth. </p> <p>At one point I was using a nice recursive function to get the position of an element in the document:</p> <pre><code>function getOffsetTop (element) { var offset = 0; if (element.offsetTop) offset = offset + element.offsetTop; if (element.offsetParent) offset = offset + getOffsetTop(element.offsetParent); return offset; } </code></pre> <p>Unfortunately when calling this method for elements in a very deep node hierarchy, IE complains of exceeding the maximum stack size (I forget the exact error message). To get around this I needed to use an iterative approach to keep the stack size small:</p> <pre><code>function getOffsetTop (element) { var offset = 0; if (element.offsetTop) offset = offset + element.offsetTop; var parent = element.offsetParent; while (parent) { if (parent.offsetTop) offset = offset + parent.offsetTop; parent = parent.offsetParent; } return offset; } </code></pre> http://stackoverflow.com/questions/155424/how-do-i-resequence-dropdown-list-controls-like-the-netflix-queue-from-the-client/155583#155583 2 Answer by Adam Franco for How do I resequence dropdown list controls like the NetFlix queue from the client side (Javascript) Adam Franco 2008-09-30T23:29:34Z 2008-09-30T23:35:06Z <p>Look at Javascript toolkits like <a href="http://script.aculo.us/" rel="nofollow">Scriptaculous</a> for client side reordering.</p> <p>You add your elements as "<a href="http://github.com/madrobby/scriptaculous/wikis/sortable" rel="nofollow">Sortables</a>" and code your own callbacks to execute when the items are dragged, then dropped -- such as sending an asynchronous request to the server to persist the new order.</p> <p>Here is a <a href="http://zenofshen.com/posts/ajax-sortable-lists-tutorial" rel="nofollow">full tutorial</a> on creating sortable lists with Scriptaculous and PHP. For ASP, the client side code will be slightly different, but the process will be similar.</p> http://stackoverflow.com/questions/147528/how-to-force-a-div-block-to-extend-to-the-bottom-of-a-page-even-if-it-has-no-con/151681#151681 1 Answer by Adam Franco for How to force a DIV block to extend to the bottom of a page, even if it has no content? Adam Franco 2008-09-30T03:39:18Z 2008-09-30T03:39:18Z <p>While it isn't as elegant as pure CSS, a small bit of javascript can help accomplish this:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style type='text/css'&gt; div { border: 1px solid #000000; } &lt;/style&gt; &lt;script type='text/javascript'&gt; function expandToWindow(element) { var margin = 10; if (element.style.height &lt; window.innerHeight) { element.style.height = window.innerHeight - (2 * margin) } } &lt;/script&gt; &lt;/head&gt; &lt;body onload='expandToWindow(document.getElementById("content"));'&gt; &lt;div id='content'&gt;Hello World&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/151348/how-to-check-if-an-object-is-an-instance-of-a-nodelist-in-ie/151631#151631 2 Answer by Adam Franco for How to check if an object is an instance of a NodeList in IE? Adam Franco 2008-09-30T03:14:11Z 2008-09-30T03:14:11Z <p>"<a href="http://en.wikipedia.org/wiki/Duck_typing" rel="nofollow">Duck Typing</a>" should always work:</p> <pre><code>... if (typeof el.length == 'number' &amp;&amp; typeof el.item == 'function' &amp;&amp; typeof el.nextNode == 'function' &amp;&amp; typeof el.reset == 'function') { alert("I'm a NodeList"); } </code></pre> http://stackoverflow.com/questions/149796/is-there-a-disadvantage-to-blindly-using-insert-in-mysql 3 Is there a disadvantage to blindly using INSERT in MySQL? Adam Franco 2008-09-29T17:37:58Z 2008-09-30T00:07:32Z <p>Often I want to add a value to a table or update the value if its key already exists. This can be accomplished in several ways, assuming a primary or unique key is set on the 'user_id' and 'pref_key' columns in the example:</p> <p><strong>1. Blind insert, update if receiving a duplicate key error:</strong></p> <pre><code>// Try to insert as a new value INSERT INTO my_prefs (user_id, pref_key, pref_value) VALUES (1234, 'show_help', 'true'); // If a duplicate-key error occurs run an update query UPDATE my_prefs SET pref_value = 'true' WHERE user_id=1234 AND pref_key='show_help'; </code></pre> <p><strong>2. Check for existence, then select or update:</strong></p> <pre><code>// Check for existence SELECT COUNT(*) FROM my_prefs WHERE user_id=1234 AND pref_key='show_help'; // If count is zero, insert INSERT INTO my_prefs (user_id, pref_key, pref_value) VALUES (1234, 'show_help', 'true'); // If count is one, update UPDATE my_prefs SET pref_value = 'true' WHERE user_id=1234 AND pref_key='show_help'; </code></pre> <p>The first way seems to be preferable as it will require only one query for new inserts and two for an update, where as the second way will always require two queries. Is there anything I'm missing though that would make it a bad idea to blindly insert?</p> http://stackoverflow.com/questions/86582/singleton-how-should-it-be-used/86667#86667 1 Answer by Adam Franco for Singleton: How should it be used Adam Franco 2008-09-17T19:26:16Z 2008-09-17T19:26:16Z <p>Anti-Usage: </p> <p>One major problem with excessive singleton usage is that the pattern prevents easy extension and swapping of alternate implementations. The class-name is hard coded wherever the singleton is used.</p> http://stackoverflow.com/questions/83225/how-to-set-up-the-browser-scrollbar-to-scroll-part-of-a-page/83284#83284 0 Answer by Adam Franco for How to set up the browser scrollbar to scroll part of a page? Adam Franco 2008-09-17T13:36:21Z 2008-09-17T13:36:21Z <p>The browser <em>is</em> scrolling the page, its just that part of it is fixed in position. </p> <p>This is done by using the "position: fixed" CSS property on the part that you wish not to scroll.</p> http://stackoverflow.com/questions/1844519/zend-framework-how-to-do-a-db-select-with-multiple-params/1844531#1844531 Comment by Adam Franco on Zend Framework: How to do a DB select with multiple params? Adam Franco 2009-12-04T03:38:39Z 2009-12-04T03:38:39Z I've now tested the first version and found it was resulting in the following SQL: SELECT <code>group&#95;members</code>.* FROM <code>group&#95;members</code> WHERE (user_id = 1, 1 AND group_id = 1, 1) BTW: You can use <code>print $select-&gt;&#95;&#95;toString();</code> to output example SQL from the statement. Anyway, it seems that passing and array of parameters actually doesn't work with Zend_Db_Select (I must have been confusing this with using PDO directly), so I've removed that invalid part of the answer. http://stackoverflow.com/questions/1844519/zend-framework-how-to-do-a-db-select-with-multiple-params/1844531#1844531 Comment by Adam Franco on Zend Framework: How to do a DB select with multiple params? Adam Franco 2009-12-04T03:09:08Z 2009-12-04T03:09:08Z What database/adapter combination are you using? http://stackoverflow.com/questions/1844519/zend-framework-how-to-do-a-db-select-with-multiple-params/1844531#1844531 Comment by Adam Franco on Zend Framework: How to do a DB select with multiple params? Adam Franco 2009-12-04T03:07:58Z 2009-12-04T03:07:58Z Strange, I've used both techniques in the past against MySQL using the PDO adapter. I guess I'll need to set up a table to test. It may be that your database type or adapter doesn't support the syntax I suggested. http://stackoverflow.com/questions/1844426/javascript-toggling/1844474#1844474 Comment by Adam Franco on Javascript Toggling Adam Franco 2009-12-04T02:26:43Z 2009-12-04T02:26:43Z update: Added case for 'All Dates'. http://stackoverflow.com/questions/1608427/how-can-i-determine-if-a-pdo-statement-cursor-is-closed Comment by Adam Franco on How can I determine if a PDO statement cursor is closed? Adam Franco 2009-10-22T17:41:04Z 2009-10-22T17:41:04Z I'd like to keep returning results from the fist cursor, so I don't want to close it. http://stackoverflow.com/questions/1384718/mysql-utf-text-capacity/1384759#1384759 Comment by Adam Franco on MySQL UTF Text Capacity Adam Franco 2009-09-06T04:47:06Z 2009-09-06T04:47:06Z An additional note: In MySQL 5, Innodb will only allow a key of 767 bytes, though fields that are not part of a key may be longer. Since the OP is using a utf8 character set and MySQL uses 3 bytes per character, a <code>varchar</code> field in a key will have a limit of 255.67 characters, which in practice means a maximum of 255 characters. As the OP only needs 250 chars, this should be sufficient. http://stackoverflow.com/questions/1384746/finding-string-key-in-javascript-array/1384769#1384769 Comment by Adam Franco on Finding string-key in Javascript array Adam Franco 2009-09-06T04:36:47Z 2009-09-06T04:36:47Z Just a note on why the OP sometimes worked: In JS Arrays are objects, so you can attach arbitrary properties to them as you can with any other object. As was found though, these additional properties can get lost if the array is serialized to its normal <code>['val 1', 'val 2', 'val 3, ...]</code> syntax. Its likely that somewhere in JQuery or elsewhere a serialization/deserialization is happening to the array, and the additional properties are lost. http://stackoverflow.com/questions/83887/is-there-any-way-to-detect-the-target-class-in-php-5-static-methods/109888#109888 Comment by Adam Franco on Is there any way to detect the target class in PHP 5 static methods? Adam Franco 2009-09-06T03:54:30Z 2009-09-06T03:54:30Z @S.Lott I fully agree that such a method would be a leaky abstraction if used in real code. In this case the method is just there to provide an understandable sample. My reason for wanting to determine the child class is so that I can make use of static instance creation methods that are shared by all members of a class hierarchy, yet still call the appropriate child-constructor. http://stackoverflow.com/questions/1336581/is-there-an-easy-way-in-php-to-convert-from-strings-like-256m-180k-4g-to/1336619#1336619 Comment by Adam Franco on Is there an easy way in PHP to convert from strings like '256M', '180K', '4G' to their integer equivalents? Adam Franco 2009-08-28T12:23:10Z 2009-08-28T12:23:10Z I added the 'B' and the white-space matches to the regular expression to make the function more generally useful than just being able to parse the values returned by <code>ini&#95;get()</code>. The more general version will also handle decimal sizes as well, i.e.: 2.25MB http://stackoverflow.com/questions/1336581/is-there-an-easy-way-in-php-to-convert-from-strings-like-256m-180k-4g-to/1336624#1336624 Comment by Adam Franco on Is there an easy way in PHP to convert from strings like '256M', '180K', '4G' to their integer equivalents? Adam Franco 2009-08-27T13:55:40Z 2009-08-27T13:55:40Z I was looking for this info in the description of the ini values and just about everywhere else other than the docs for the <code>ini&#95;get()</code> function itself. Thanks for finding that. http://stackoverflow.com/questions/702364/what-is-the-best-way-to-select-attributes-for-all-members-of-an-ad-ldap-group-fro/702716#702716 Comment by Adam Franco on What is the best way to select attributes for all members of an AD LDAP group from PHP? Adam Franco 2009-04-01T13:40:55Z 2009-04-01T13:40:55Z I've updated the question with the relevant PHP. Other filters work just fine with these attributes and using just array('mail') or an empty array for the attributes does not get rid of the error result, so I'm sure the problem is with my filter rather than the connection or attribute set. http://stackoverflow.com/questions/702364/what-is-the-best-way-to-select-attributes-for-all-members-of-an-ad-ldap-group-fro Comment by Adam Franco on What is the best way to select attributes for all members of an AD LDAP group from PHP? Adam Franco 2009-04-01T13:39:54Z 2009-04-01T13:39:54Z I've updated the question with the relevant PHP. http://stackoverflow.com/questions/520611/how-can-i-match-multiple-occurrences-with-a-regex-in-javascript-similar-to-phps/520845#520845 Comment by Adam Franco on How can I match multiple occurrences with a regex in JavaScript similar to PHP's preg_match_all()? Adam Franco 2009-02-06T16:44:59Z 2009-02-06T16:44:59Z This is what I was hoping for. What I've never seen in JavaScript documentation is mention that the exec() method will continue to return the next result set if called more than once. Thanks again for the great tip! http://stackoverflow.com/questions/340298/why-are-so-many-web-languages-interpreted-rather-than-compiled/340607#340607 Comment by Adam Franco on Why are so many web languages interpreted rather than compiled? Adam Franco 2008-12-18T04:40:00Z 2008-12-18T04:40:00Z With PHP many people use one of several caching mechanisms such as APC, eaccelerator, etc to hold compiled versions of scripts in shared memory for all webserver threads to use. It doesn't necessarily get written to disk, but isn't just tossed either. http://stackoverflow.com/questions/376611/why-interpreted-langs-are-mostly-ducktyped-while-compiled-have-strong-typing/376828#376828 Comment by Adam Franco on Why interpreted langs are mostly ducktyped while compiled have strong typing? Adam Franco 2008-12-18T04:26:39Z 2008-12-18T04:26:39Z Very nice answer!