User Daniel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:13:18Z http://stackoverflow.com/feeds/user/416 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1302168/xampp-1-7-2-how-do-i-swap-out-php-5-3-for-php-5-2-so-i-can-use-joomla/1422622#1422622 0 Answer by Daniel for xampp 1.7.2 ? how do i swap out PHP 5.3 for PHP 5.2 so i can use joomla Daniel 2009-09-14T16:32:07Z 2009-09-14T16:38:25Z <ol> <li>Stop your Apache server from running.</li> <li>Download the most recent version of XAMPP that contains a release of PHP 5.2.* from the SourceForge site linked at the apachefriends website.</li> <li>Rename the PHP file in your current installation (<strong>MAC OSX:</strong> /xamppfiles/modules/libphp.so) to something else (just in case).</li> <li>Copy the PHP file located in the same directory tree from the older XAMPP installation that you just downloaded, and place it in the directory of the file you just renamed.</li> <li>Start the Apache server, and make hastily move yourself to a freshly generated version of phpinfo().</li> <li>Once you confirm that the PHP version has been lowered, delete the remaining files from the older XAMPP install. </li> <li>Fun esues.</li> </ol> <p>I just confirmed that this works when using a version of PHP <strong>5.2.9</strong> from XAMPP for OS X <strong>1.0.1</strong> (April 2009), and surgically moving it to XAMPP for OS X <strong>1.7.2</strong> (August 2009).</p> http://stackoverflow.com/questions/207763/are-there-any-ides-that-support-python-3-syntax 4 Are there any IDE's that support Python 3 syntax? Daniel 2008-10-16T08:21:22Z 2009-07-12T10:23:46Z <p>I recently saw an announcement and <a href="http://www.linux.com/feature/150399" rel="nofollow">article</a> outlining the release of the first <a href="http://www.python.org/download/releases/3.0/" rel="nofollow">Python 3.0</a> release candidate. I was wondering whether there were any commercial, free, open source etc. IDE's that support its syntax.</p> http://stackoverflow.com/questions/1031289/best-version-of-the-wmd-to-use-in-a-project/1032681#1032681 0 Answer by Daniel for Best version of the WMD to use in a project? Daniel 2009-06-23T13:50:00Z 2009-06-23T13:50:00Z <p>See episode 35 (30 December 2008) of the Stack Overflow podcast, which has some discussion on the WMD control. Minutes: 27-34.</p> <p><a href="https://stackoverflow.fogbugz.com/default.asp?W29022" rel="nofollow">https://stackoverflow.fogbugz.com/default.asp?W29022</a> for the transcript wiki</p> http://stackoverflow.com/questions/228728/installing-php-apache-2-2-10-on-windows-vista/229415#229415 0 Answer by Daniel for Installing PHP, Apache 2.2.10 on Windows Vista Daniel 2008-10-23T11:38:02Z 2008-10-23T11:38:02Z <p>The only problem I have installing PHP and Apache on Vista is that you need to make sure that when you edit the httpd.conf that you are editing it as an admin, otherwise the file is saved in compatibility mode.</p> <p>To overcome that problem just type notepad++ or whatever in your start menu, right click the item and run as administrator. Then open the file from the app.</p> http://stackoverflow.com/questions/120228/php-running-scheduled-jobs-cron-jobs/194072#194072 -1 Answer by Daniel for PHP: running scheduled jobs (cron jobs) Daniel 2008-10-11T13:32:06Z 2008-10-11T13:32:06Z <p><a href="http://stackoverflow.com/questions/38596/whats-the-best-way-to-keep-a-php-script-running-as-a-daemon">http://stackoverflow.com/questions/38596/whats-the-best-way-to-keep-a-php-script-running-as-a-daemon</a></p> http://stackoverflow.com/questions/62472/any-php-editors-supporting-5-3-syntax/63389#63389 6 Answer by Daniel for Any PHP editors supporting 5.3 syntax? Daniel 2008-09-15T14:25:37Z 2008-10-03T18:49:17Z <p>Some threads that have been addressed by the various PHP IDE developers regarding the status of 5.3 syntax support:</p> <ul> <li><strong>PHPEclipse</strong>: <a href="http://www.phpeclipse.net/ticket/636" rel="nofollow">http://www.phpeclipse.net/ticket/636</a> or <a href="http://www.google.com.au/search?q=php+5.3+phpeclipse" rel="nofollow">google</a></li> <li><strong>Aptana</strong>: <a href="http://forums.aptana.com/viewtopic.php?t=6538" rel="nofollow">http://forums.aptana.com/viewtopic.php?t=6538</a> or <a href="http://www.google.com.au/search?q=php+5.3+aptana" rel="nofollow">google</a></li> <li><strong>PDT</strong>: <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=234938" rel="nofollow">http://bugs.eclipse.org/bugs/show_bug.cgi?id=234938</a> or <a href="http://www.google.com.au/search?q=php+pdt+5.3" rel="nofollow">google</a></li> <li><strong>TextMate</strong>: <a href="http://www.nabble.com/PHP-Namespace-Support-td19784898.html" rel="nofollow">http://www.nabble.com/PHP-Namespace-Support-td19784898.html</a> (Namespace support) or <a href="http://www.google.com.au/search?q=php+pdt+5.3" rel="nofollow">google</a></li> </ul> http://stackoverflow.com/questions/53132/mouse-for-programmer/101413#101413 2 Answer by Daniel for Mouse for programmer Daniel 2008-09-19T12:24:50Z 2008-09-19T12:24:50Z <p>The <a href="http://www.logitech.com/index.cfm/notebook_products/mice/devices/3271&amp;cl=us,en" rel="nofollow">Logitech VX Nano</a>, the younger brother of the <a href="http://stackoverflow.com/questions/53132/mouse-for-programmer#53280">MX Revolution</a>. <img src="http://img206.imageshack.us/img206/3190/412510te3.jpg" alt="vx nano" /></p> http://stackoverflow.com/questions/101362/how-do-you-generate-passwords/101385#101385 0 Answer by Daniel for How do you generate passwords? Daniel 2008-09-19T12:18:00Z 2008-09-19T12:18:00Z <p>In PHP, by generating a random string of characters from the ASCII table. See <a href="http://stackoverflow.com/questions/48124/generating-pseudorandom-alpha-numeric-strings#48285">Generating (pseudo)random alpha-numeric strings</a></p> http://stackoverflow.com/questions/63787/what-makes-drupal-better-different-from-joomla/94796#94796 1 Answer by Daniel for What makes Drupal better/different from Joomla Daniel 2008-09-18T17:40:13Z 2008-09-18T17:40:13Z <p>Starting off, Joomla is fun and easy, from both an administrative and user view, but once the site needs to be customised (naturally), it becomes a pain.</p> <p>In my opinion, Drupal is opposite. It has a steep learning curve (the pain part), but becomes easier not harder over time. This is from both the admin and user part.</p> http://stackoverflow.com/questions/75124/where-is-the-best-place-to-get-drupal-sugar-crm-developers/94692#94692 1 Answer by Daniel for Where is the best place to get Drupal & Sugar CRM developers? Daniel 2008-09-18T17:29:17Z 2008-09-18T17:29:17Z <ul> <li><a href="http://www.drupaljob.com/" rel="nofollow">Drupal Job Board</a></li> <li><a href="http://www.jobster.com/find/US/jobs/for/drupal" rel="nofollow">Jobster</a></li> <li><a href="http://www.opensourcexperts.com/Jobs/index_html/Drupal" rel="nofollow">OpenSourceExperts</a> <br />I also suggest checking around for the various open source software or CMS job sites.</li> <li>or <a href="http://www.google.com/search?q=drupal+jobs" rel="nofollow">google</a></li> </ul> http://stackoverflow.com/questions/25865/what-is-a-language-binding 3 What is a language binding? Daniel 2008-08-25T11:13:29Z 2008-09-12T12:40:36Z <p>My good friend, Wikipedia, <a href="http://en.wikipedia.org/wiki/Language_binding" rel="nofollow">didn't give me a very good response</a> to that question. So:</p> <ul> <li>What are language bindings?</li> <li>How do they work?</li> </ul> <p>Specifically accessing functions from code written in language X of a library written in language Y.</p> http://stackoverflow.com/questions/48124/generating-pseudorandom-alpha-numeric-strings/48285#48285 0 Answer by Daniel for Generating (pseudo)random alpha-numeric strings Daniel 2008-09-07T10:04:46Z 2008-09-07T10:25:13Z <p>Use the <a href="http://www.asciitable.com/" rel="nofollow">ASCII table</a> to pick a range of letters, where the: $range_start , $range_end is a value from the decimal column in the ASCII table.</p> <p>I find that this method is nicer compared <a href="http://beta.stackoverflow.com/questions/48124/generating-pseudorandom-alpha-numeric-strings#48125" rel="nofollow">to the method described</a> where the range of characters is specifically defined within another string.</p> <pre><code>// range is numbers (48) through capital and lower case letters (122) $range_start = 48; $range_end = 122; $random_string = ""; $random_string_length = 10; for ($i = 0; $i &lt; $random_string_length; $i++) { $ascii_no = round( mt_rand( $range_start , $range_end ) ); // generates a number within the range // finds the character represented by $ascii_no and adds it to the random string // study **chr** function for a better understanding $random_string .= chr( $ascii_no ); } echo $random_string; </code></pre> <p>See More:</p> <ul> <li><a href="http://au.php.net/chr" rel="nofollow">chr</a> function</li> <li><a href="http://au.php.net/mt_rand" rel="nofollow">mt_rand</a> function</li> </ul> http://stackoverflow.com/questions/45362/web-development-methodology 3 Web Development Methodology Daniel 2008-09-05T07:07:25Z 2008-09-05T08:23:39Z <p>In your opinion, what is your single most favoured methodology for developing a web application?</p> <p>Broad Case: I am contracted to assemble and manage a team to begin the creation of a large web app, what methodology would suit best?</p> <p><strong>Edit</strong>: Methodology being the <strong>team/work practice NOT architectural</strong></p> http://stackoverflow.com/questions/38596/whats-the-best-way-to-keep-a-php-script-running-as-a-daemon/38712#38712 1 Answer by Daniel for What's the best way to keep a PHP script running as a daemon? Daniel 2008-09-02T02:28:05Z 2008-09-02T02:28:05Z <p>I've had success with running a wget and sending the result to /dev/null on a shared server.</p> http://stackoverflow.com/questions/32679/looking-for-news-and-podcast-cms/34203#34203 0 Answer by Daniel for Looking for News and Podcast CMS Daniel 2008-08-29T08:53:36Z 2008-08-29T08:53:36Z <p>Give <a href="http://www.drupal.org" rel="nofollow">Drupal</a> a shot, there's thousands of modules available and I'm sure there's a could that can be installed to create the functionality you're after.</p> http://stackoverflow.com/questions/26173/is-there-a-scheduler-calendar-js-widget-library/26245#26245 0 Answer by Daniel for Is there a Scheduler/Calendar JS Widget library? Daniel 2008-08-25T15:26:37Z 2008-08-25T15:26:37Z <p>A small <a href="http://developer.yahoo.com/yui/calendar/" rel="nofollow">calendar widget from YUI</a> could be used in the input/edit process.</p> <p>I'm not sure of any widgets that emulate a Google calendar week view style, which I believe you are looking for.</p> <p>An option could be to manage a calendar on Google calendar, and copy the html embed code found on the calendar settings.</p> http://stackoverflow.com/questions/26183/screenshot-taking-tools/26218#26218 3 Answer by Daniel for Screenshot Taking Tools Daniel 2008-08-25T15:18:42Z 2008-08-25T15:18:42Z <p>Kenny Kerr's <a href="http://www.windowclippings.com/" rel="nofollow">Window Clippings</a> for grabbing an entire window, without a background. or Windows Vista's <a href="http://en.wikipedia.org/wiki/Snipping_Tool" rel="nofollow">Snipping Tool</a> for quick grabs.</p> http://stackoverflow.com/questions/25865/what-is-a-language-binding/25883#25883 0 Answer by Daniel for What is a language binding? Daniel 2008-08-25T11:31:11Z 2008-08-25T11:31:11Z <p>sorry about the confusion, question has been clarified</p> http://stackoverflow.com/questions/228728/installing-php-apache-2-2-10-on-windows-vista/228769#228769 Comment by Daniel on Installing PHP, Apache 2.2.10 on Windows Vista Daniel 2008-10-24T00:56:22Z 2008-10-24T00:56:22Z I have a problem with &quot;iis7 is one of the best web servers and especially for php&quot;. Unfounded? http://stackoverflow.com/questions/95053/learning-drupal-fast-track-how-to-create-a-stackoverflow-clone Comment by Daniel on learning drupal fast track: how to create a stackoverflow clone? Daniel 2008-09-19T12:28:52Z 2008-09-19T12:28:52Z This site is built on Microsoft .Net technologies http://stackoverflow.com/questions/94558/whats-your-favorite-programming-blog Comment by Daniel on What's your favorite programming blog? Daniel 2008-09-18T17:17:32Z 2008-09-18T17:17:32Z Duplicate: <a href="http://stackoverflow.com/questions/94558/whats-your-favorite-programming-blog#94578" rel="nofollow" title="whats your favorite programming blog%2394578">stackoverflow.com/questions/94558/&hellip;</a>