User barfoon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:09:42Zhttp://stackoverflow.com/feeds/user/27148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1088848/ftp-only-want-to-keep-latest-10-files-delete-lru0FTP - Only want to keep latest 10 files - delete LRUbarfoon2009-07-06T19:39:15Z2009-11-13T06:50:29Z
<p>Hey everyone,</p>
<p>I have created a shell script to backup my webfiles + database dump, put it into a tar archive and FTP it offsite. Id like to run it X times per week however I only want to keep the latest 10 backups on the FTP site.</p>
<p>How can I do this best? Should I be doing this work on the shell script side, or is there an FTP command to check last modified and admin things that way?</p>
<p>Any advice would be appreciated.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/829407/what-is-so-wrong-with-extract5What is so wrong with extract()?barfoon2009-05-06T12:51:13Z2009-11-09T22:56:59Z
<p>Hey everyone,</p>
<p>I was recently reading <a href="http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233746">this thread</a>, on some of the worst PHP practices.
In the second answer there is a mini discussion on the use of extract(), and im just wondering what all the huff is about.</p>
<p>I personally use it to chop up a given array such as $_GET or $_POST where I then sanitize the variables later, as they have been conveniently named for me. </p>
<p>Is this bad practice? What is the risk here? What are your thoughts on the use of extract()?</p>
<p>Thank you,</p>
http://stackoverflow.com/questions/1173692/what-is-the-best-api-framework-platform-you-ever-worked-with/1173739#11737393Answer by barfoon for What is the best API/framework/platform you ever worked with?barfoon2009-07-23T18:47:57Z2009-09-19T23:17:47Z<p>Does <a href="http://en.wikipedia.org/wiki/Smarty" rel="nofollow">Smarty</a> count? It's a pretty awesome platform, and it's well documented.</p>
http://stackoverflow.com/questions/1314616/redirect-all-requests-under-a-domain-to-static-page-htaccess-or-301-or-redirec2Redirect ALL requests under a domain to static page - .htaccess or 301 or RedirectMatch? [closed]barfoon2009-08-21T23:26:52Z2009-08-21T23:58:20Z
<p>Hey everyone,</p>
<p>I am trying to redirect ALL requests for mydomain.com whether they are something like:</p>
<ul>
<li><a href="http://www.mydomain.com" rel="nofollow">http://www.mydomain.com</a></li>
<li><a href="http://mydomain.com" rel="nofollow">http://mydomain.com</a></li>
<li><a href="http://mydomain.com/photos" rel="nofollow">http://mydomain.com/photos</a></li>
<li><a href="http://mydomain.com/index.php?id=672" rel="nofollow">http://mydomain.com/index.php?id=672</a></li>
</ul>
<p>to be redirected to </p>
<ul>
<li><a href="http://mydomain.com/index.html" rel="nofollow">http://mydomain.com/index.html</a></li>
</ul>
<p>As long as it has mydomain.com in it, they should see this page - its a we'll be back soon message.</p>
<p>Whats the best way to do this - .htaccess or right in the conf?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1314616/redirect-all-requests-under-a-domain-to-static-page-htaccess-or-301-or-redirec/1314706#13147061Answer by barfoon for Redirect ALL requests under a domain to static page - .htaccess or 301 or RedirectMatch?barfoon2009-08-21T23:58:20Z2009-08-21T23:58:20Z<p>I actually ended up finding the answer on ServerFault:</p>
<p><a href="http://serverfault.com/questions/32513/url-redirect-to-another-page-on-the-same-site">http://serverfault.com/questions/32513/url-redirect-to-another-page-on-the-same-site</a></p>
<p>"This example will 301 redirect all URLs to "/underconstruction.html":</p>
<pre><code>RewriteEngine On
RewriteCond %{REQUEST_URI} !=/underconstruction.html
RewriteRule ^ /underconstruction.html [R=301]
</code></pre>
<p>(which translates as "If URI is not /underconstruction.html, redirect to /underconstruction.html")" - Tommeh</p>
http://stackoverflow.com/questions/1139154/is-there-a-difference-between-and-in-php1Is there a difference between !== and != in PHP?barfoon2009-07-16T17:41:11Z2009-08-19T07:18:05Z
<p>Is there a difference between !== and != in PHP?</p>
http://stackoverflow.com/questions/879981/web-based-project-management-tool1Web based project management toolbarfoon2009-05-18T21:41:06Z2009-07-31T19:38:58Z
<p>Hey all,</p>
<p>I'm looking for a free web based project management tool that can do at least the following:</p>
<ul>
<li>Task lists with deadlines</li>
<li>Email reminders</li>
<li>Collaboration on documents/items</li>
<li>Progress monitoring</li>
</ul>
<p>There will be less than 5 people using this under the account at one time.</p>
<p>Any ideas/suggestions?</p>
<p>Thanks a lot,</p>
<p><strong>Edit:</strong> To get a further idea of what I mean, something such as <a href="http://www.subernova.com/" rel="nofollow">http://www.subernova.com/</a>, or Basecamp
For alerting - I'm not looking for an email when a ticket/task is updated, but rather reminders for tasks</p>
http://stackoverflow.com/questions/330207/how-come-md5-hash-values-are-not-reversible14How come MD5 hash values are not reversible?barfoon2008-12-01T07:16:58Z2009-07-30T13:10:26Z
<p>Hey everyone,</p>
<p>One concept I've always wondered about is the use of cryptographic hash functions and values. I understand that these functions can generate a hash value that is unique and virtually impossible to reverse, but here's what I've always wondered:</p>
<p>If on my server, in PHP I produce:
md5("stackoverflow.com") = "d0cc85b26f2ceb8714b978e07def4f6e"</p>
<p>When you run that same string through an MD5 function, you get the same result on your PHP installation. A process is being used to produce some value, from some starting value.</p>
<p>Doesn't this mean that there is some way to deconstruct what is happening and reverse the hash value? </p>
<p>What is it about these functions that makes the resulting strings impossible to retrace?</p>
<p>Cheers,</p>
http://stackoverflow.com/questions/1153870/will-a-task-be-completed-faster-if-it-is-the-active-window4Will a task be completed faster if it is the active window?barfoon2009-07-20T14:17:37Z2009-07-20T14:29:14Z
<p>Hey everyone,</p>
<p>I have heard a myth that a job will finish faster if it is kept as the active window, and not in the background or minimized. </p>
<p>Is there any truth to this? Does the CPU put precedence to tasks where this happens?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/739561/what-programming-languages-were-used-to-go-to-the-moon1What programming languages were used to go to the moon?barfoon2009-04-11T05:22:26Z2009-07-18T20:32:58Z
<p>I have always wondered: what programming languages were used to go to the moon?
I realize there may not be a single answer/language, but it interests me.</p>
<p>How many people worked on the code for these systems?
How was it tested?</p>
<p>Thank you,</p>
<p><strong>Edit:
Or did we even go to the moon?????</strong>
<br><br><br><br>
Kidding. Question still stands.</p>
http://stackoverflow.com/questions/365676/which-ide-is-for-me8Which IDE is for me?barfoon2008-12-13T20:26:04Z2009-07-18T01:44:12Z
<p>Which IDE is for me?</p>
<p>Hey everyone, </p>
<p>I'm currently using PSPAD as my main editor, but I'm looking to get something more full featured. I code in PHP, but occasionally modify HTML and CSS code too.</p>
<p>I am looking for:</p>
<p>1) <strong>Directly editing a file over FTP - must sync / commit changes on save</strong> - NOT manual file transfer / update. This is a must for me.</p>
<p>2) <strong>Adjust contextual menus based on the language I am working in</strong> - For example, in PSPAD, when you are working in a block of PHP and you press ctrl-enter, you get a drop down of PHP references, and when your cursor is in a block of CSS, you get CSS references. Something similar would be really handy. </p>
<p>3) <strong>Autocomplete</strong> - for variable names, classes etc</p>
<p>4) <strong>Easy access to PHP function reference</strong> - arguments, textual explanation</p>
<p>5) <strong>Rich editor features</strong> - colors, bracket highlighting, code collapsing</p>
<p>6) <strong>Free or relatively low cost</strong> ( I am a student - to give you an idea of what I mean by low cost :D )</p>
<p>I'd love to hear any recommendations people have. Thank you!</p>
http://stackoverflow.com/questions/1112449/programmatically-empty-out-large-text-file-when-in-use-by-another-process1Programmatically empty out large text file when in use by another processbarfoon2009-07-10T23:40:53Z2009-07-11T00:53:11Z
<p>Hey everyone,</p>
<p>I am running a batch job that has been going for many many hours, and the log file it is generating is increasing in size very fast and I am worried about disk space.</p>
<p>Is there any way through the command line, or otherwise, that I could hollow out that text file (set its contents back to nothing) with the utility still having a handle on the file?</p>
<p>I do not wish to stop the job and am only looking to free up disk space via this file. </p>
<p>Im on Vista, 64 bit.</p>
<p>Thanks for the help,</p>
http://stackoverflow.com/questions/1112468/how-do-i-zip-a-whole-folder-tree-in-unix-but-only-certain-files/1112484#11124841Answer by barfoon for how do I zip a whole folder tree in unix, but only certain files?barfoon2009-07-10T23:53:51Z2009-07-10T23:53:51Z<p>You could write a shell script to copy files based on a pattern/expression into a new folder, zip the contents and then delete the folder. Now, as for the actual syntax of it, ill leave that to you :D.</p>
http://stackoverflow.com/questions/1050843/whats-the-difference-between-an-in-memory-table-temp-table-and-a-pivot-table1Whats the difference between an in-memory table, temp table and a pivot table?barfoon2009-06-26T19:34:41Z2009-06-26T20:08:21Z
<p>With regards to SQL and queries, whats the difference between an in-memory table, temp table and a pivot table?</p>
http://stackoverflow.com/questions/1045107/what-different-terms-mean-the-same-thing-or-dont-but-people-think-they-do/1045524#10455249Answer by barfoon for What different terms mean the same thing (or don't, but people think they do)?barfoon2009-06-25T18:34:35Z2009-06-25T18:59:28Z<p>Hard drive space != RAM</p>
http://stackoverflow.com/questions/978369/implementing-a-voting-system-without-requiring-registration6Implementing a voting system without requiring registrationbarfoon2009-06-10T21:57:31Z2009-06-22T15:25:31Z
<p>Hey everyone,</p>
<p>I'd like to implement a voting system on my site, without having to force them to create an account. They would ultimately be voting up/down a piece of content which has a unique ID.</p>
<ul>
<li>I know that I could store entries in a table with IP/ID, but what if there are more than one user coming from the same IP?</li>
<li>Is there a way to uniquely identify visitors without it being tied to their external ip?</li>
<li>If created a GUID, store it in a cookie on that machine, could it be retrieved later on that same computer with the same IP? A different IP?</li>
</ul>
<p>Any thoughts on these questions, or any insight to a better approach would be greatly appreciated.</p>
<p>Thank you,</p>
http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get1Why is my variable not being put into $_GET?barfoon2009-06-15T21:28:45Z2009-06-16T02:52:17Z
<p>Hey everyone,</p>
<p>Maybe I am missing something but I can't seem to figure this one out.</p>
<p>I have a ReWriteRule:</p>
<pre><code>RewriteRule ^view/(\w+)$ view.php?mmdid=$1 [L]
</code></pre>
<p>and when I go to mydomain.org/view/3, the $_GET array is empty. There is no key 'mmdid'.</p>
<p>However, when I change my rule to something else, such as:</p>
<pre><code>RewriteRule ^viewz/(\w+)$ view.php?mmdid=$1 [L]
</code></pre>
<p>it works fine when I visit mydomain.org/viewz/3. I get Array ( [mmdid] => 1 ) when printing $_GET.</p>
<p>There are no other rules similar to this that could conflict, and I've rebooted apache.</p>
<p>Any ideas on why this happens? Is 'view' a keyword or something?</p>
<p>Here is the contents of the Rewrite log:</p>
<pre><code>192.168.204.187 - - [15/Jun/2009:13:01:19 --0400] [mydomain.org/sid#2787ab8][rid#2a61030/subreq] (1) [perdir /path/to/webroot/] pass through /path/to/webroot/view.php
192.168.204.187 - - [15/Jun/2009:13:01:19 --0400] [mydomain.org/sid#2787ab8][rid#2a54000/initial] (3) [perdir /path/to/webroot/] add path info postfix: /path/to/webroot/view.php -> /path/to/webroot/view.php/1
192.168.204.187 - - [15/Jun/2009:13:01:19 --0400] [mydomain.org/sid#2787ab8][rid#2a54000/initial] (3) [perdir /path/to/webroot/] strip per-dir prefix: /path/to/webroot/view.php/1 -> view.php/1
192.168.204.187 - - [15/Jun/2009:13:01:19 --0400] [mydomain.org/sid#2787ab8][rid#2a54000/initial] (3) [perdir /path/to/webroot/] applying pattern '^(.*)$' to uri 'view.php/1'
192.168.204.187 - - [15/Jun/2009:13:01:19 --0400] [mydomain.org/sid#2787ab8][rid#2a54000/initial] (4) [perdir /path/to/webroot/] RewriteCond: input='mydomain.org' pattern='^www\.mydomain\.org$' => not-matched
192.168.204.187 - - [15/Jun/2009:13:01:19 --0400] [mydomain.org/sid#2787ab8][rid#2a54000/initial] (1) [perdir /path/to/webroot/] pass through /path/to/webroot/view.php
192.168.204.187 - - [15/Jun/2009:13:01:19 --0400] [mydomain.org/sid#2787ab8][rid#2930e58/subreq] (1) [perdir /path/to/webroot/] pass through /path/to/webroot/1
</code></pre>
<p>Here is the output of the log when using just ^v/(\w+)$....</p>
<pre><code>192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (3) [perdir /path/to/webroot/] add path info postfix: /path/to/webroot/v -> /path/to/webroot/v/1
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (3) [perdir /path/to/webroot/] strip per-dir prefix: /path/to/webroot/v/1 -> v/1
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (3) [perdir /path/to/webroot/] applying pattern '^v/([0-9]+)$' to uri 'v/1'
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (2) [perdir /path/to/webroot/] rewrite 'v/1' -> 'view.php?mmdid=1'
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (3) split uri=view.php?mmdid=1 -> uri=view.php, args=mmdid=1
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (3) [perdir /path/to/webroot/] add per-dir prefix: view.php -> /path/to/webroot/view.php
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (2) [perdir /path/to/webroot/] strip document_root prefix: /path/to/webroot/view.php -> /view.php
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a63038/initial] (1) [perdir /path/to/webroot/] internal redirect with /view.php [INTERNAL REDIRECT]
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a5ebc0/initial/redir#1] (3) [perdir /path/to/webroot/] strip per-dir prefix: /path/to/webroot/view.php -> view.php
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a5ebc0/initial/redir#1] (3) [perdir /path/to/webroot/] applying pattern '^v/([0-9]+)$' to uri 'view.php'
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a5ebc0/initial/redir#1] (3) [perdir /path/to/webroot/] strip per-dir prefix: /path/to/webroot/view.php -> view.php
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a5ebc0/initial/redir#1] (3) [perdir /path/to/webroot/] applying pattern '^(.*)$' to uri 'view.php'
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a5ebc0/initial/redir#1] (4) [perdir /path/to/webroot/] RewriteCond: input='mydomain.org' pattern='^www\.mydomain\.org$' => not-matched
192.168.204.187 - - [15/Jun/2009:13:10:09 --0400] [mydomain.org/sid#2787ab8][rid#2a5ebc0/initial/redir#1] (1) [perdir /path/to/webroot/] pass through /path/to/webroot/view.php
</code></pre>
<p>Thank you,</p>
http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get/999409#9994090Answer by barfoon for Why is my variable not being put into $_GET?barfoon2009-06-16T02:52:17Z2009-06-16T02:52:17Z<p>Why cant you name the script the same thing as the rule? I.e view.php and view/x?
Can anyone shed some light on this?</p>
<p>Is this <em>solely</em> because of MultiViews?</p>
http://stackoverflow.com/questions/936539/how-can-i-store-my-rewrite-rules-in-a-database2How can I store my Rewrite Rules in a database?barfoon2009-06-01T20:13:49Z2009-06-12T19:30:59Z
<p>Hey everyone,</p>
<p>Im developing a new site, and I'd like to store my rewrite rules in a database, instead of right in the .htaccess files.</p>
<p>I have another site that uses Opensef (<a href="http://sourceforge.net/projects/opensef/" rel="nofollow">http://sourceforge.net/projects/opensef/</a>) with a Joomla! installation that is doing this, but im not even 100% how it works underneath the hood.</p>
<p>How can I store these rules in a database, query for them on request and rediret to the clean URL if found? Is there a better way to do this instead of loading up a .htaccess file (there may be 1000's of entries)?</p>
<p>Thank you,</p>
http://stackoverflow.com/questions/922356/advice-on-a-canadian-sms-gateway-provider5Advice on a Canadian SMS Gateway providerbarfoon2009-05-28T18:03:04Z2009-06-07T20:42:44Z
<p>Hey everyone,</p>
<p>I am curious as how to how much trouble / money it would be for me to be able to accept incoming text messages to a number, which I would then pass to a server side application in PHP. I'd ultimately send SMS messages back out via email addresses.</p>
<p>Does anyone know any good Canadian providers to accept incoming SMS messages? How much do these cost generally? Is the cost and effort worth it for personal projects?</p>
<p>Thank you,</p>
http://stackoverflow.com/questions/958541/how-to-create-a-backup-of-a-file-once-the-current-one-is-changed-using-php/958546#9585460Answer by barfoon for how to create a backup of a file once the current one is changed using phpbarfoon2009-06-05T23:19:49Z2009-06-05T23:19:49Z<p>Use a version control system, perhaps?</p>
http://stackoverflow.com/questions/955650/how-to-find-average-loading-time-for-website/955666#9556661Answer by barfoon for How to find average loading time for website ?barfoon2009-06-05T12:52:55Z2009-06-05T12:52:55Z<p>I've always enjoyed using this tool:
<a href="http://www.websiteoptimization.com/services/analyze/" rel="nofollow">http://www.websiteoptimization.com/services/analyze/</a></p>
http://stackoverflow.com/questions/902627/recaptcha-values-not-appearing-in-post1reCaptcha values not appearing in $_POSTbarfoon2009-05-23T22:21:54Z2009-05-24T05:12:49Z
<p>Hey everyone,</p>
<p>I am trying to use reCaptcha on my site, and recaptcha_challenge_field, and recaptcha_response_field are not being added to the $_POST array on the backend - but the rest of the variables from my form are.</p>
<p>Any ideas? I have double checked the public/private keys.</p>
<p>Here is the generated HTML:</p>
<pre><code> <form action='myform.php' name='myform' id='myform' method='post' enctype='multipart/form-data'>
<tr class='select'>
<td class='label'>Name:</td>
<td>
<input type='text' name='name' id='name' class='inputtext' maxlength='25' size='25' >
</td>
</tr>
<tr class='select'>
<td class='label'>Email:</td>
<td>
<input type='text' name='email' id='email' class='inputtext' maxlength='25' size='25' >
</td>
</tr>
<tr class='select'>
<td class='label'>Message:</td>
<td>
<textarea class='inputtext' name='message' rows='10' cols='45'></textarea>
</td>
</tr>
<tr class='select'>
<td class='label'>Are you human?</td>
<td>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=MY_KEY"></script>
<noscript>
<iframe src="http://api.recaptcha.net/noscript?k=MY_KEY" height="300" width="500" frameborder="0"></iframe><br/>
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
</noscript>
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
<td style='text-align: left;' colspan='2'>
<input type='submit' class='button' value='Send message'>
</td>
</tr>
</form>
</code></pre>
<p>Here is my handler so far:</p>
<pre><code>print_r($_POST);
require_once('inc/recaptchalib.php');
$privatekey = "MY_PRIVATE_KEY";
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);
print_r($resp);
if (!$resp->is_valid) {
die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
"(reCAPTCHA said: " . $resp->error . ")");
}
</code></pre>
<p>Any help would be really appreciated.
Thank you,</p>
http://stackoverflow.com/questions/899713/how-can-i-really-get-subversion-to-ignore-a-directory/899773#8997731Answer by barfoon for How can I really get Subversion to ignore a directory?barfoon2009-05-22T20:13:24Z2009-05-22T20:13:24Z<p>You can also do a svn propedit svn:ignore /path/to/dir, which will open up an ignore file. From there just type the * wildcard, and svn should ignore everything.</p>
http://stackoverflow.com/questions/896135/arrayslice-warning-in-php-and-wordpress/896140#8961400Answer by barfoon for array_slice() warning in php and wordpressbarfoon2009-05-22T02:22:46Z2009-05-22T02:22:46Z<p>What about casting $rss->items as an array first:</p>
<pre><code>function get_feed(){
// Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss('http://dorar.shamekh.ws/?feed=rss2');
$maxitems = 1;
$rss->items = (array) $rss->items;
$items = array_slice($rss->items, 0, $maxitems,false);
return $items;
}
</code></pre>
http://stackoverflow.com/questions/879430/best-practices-store-twitter-credentials-or-not2Best practices - store Twitter credentials or not?barfoon2009-05-18T19:43:45Z2009-05-18T19:56:14Z
<p>Hey everyone,</p>
<p>I'd like to be able to give my users the ability to display their recent tweets on their profile on my website.</p>
<p>I have a PHP twitter wrapper and understand how to make API calls etc, but I'm just wondering how to manage the user information.</p>
<p><strong>What is the best practice here?</strong> I want them to be able to enter their credentials once, but I would imagine storing everyones username/password myself isn't the best way to go about it. </p>
<ul>
<li>Is there a way to make an authenticated call once, and have twitter remember it?</li>
<li>Should I store the usernames/passwords and then just make a call when displaying the tweets?</li>
</ul>
<p>Any advice here would be great.</p>
<p>Thank you,</p>
http://stackoverflow.com/questions/852600/enable-all-firebug-tools-for-all-webpages2Enable all firebug tools for ALL webpages?barfoon2009-05-12T12:49:02Z2009-05-13T16:34:17Z
<p>Hey everyone,</p>
<p>I'm using Firebug 1.3.3 with Firefox 3.0.10, and I wanted to know if it was possible to enable the Console, Script, and Net consoles all the time. </p>
<p>It used to be such that it was always on. Now, if its disabled I have to manually turn on each tool and send requests again to see whats going on.</p>
<p>Is there any way to do this? Are there any other firebug tweaks anyone recommends? </p>
<p>Thanks,</p>
<p>Edit: Just to clarify, my question is how can I enable firebug to use all tabs, all the time, for all websites. I know it is slow, I would just like to know if its possible.</p>
http://stackoverflow.com/questions/853362/regex-looking-for-emails-inside-of-a-log-file1RegEx - Looking for emails inside of a log filebarfoon2009-05-12T15:28:02Z2009-05-12T15:46:30Z
<p>Hey everyone,</p>
<p>I am looking for a regular expression that will test for matches against a string such as:</p>
<p>mxtreme1.log:May 12 07:00:00 10.1.1.175 postfix/cleanup[48145]: C2C9FFA730: fullname=, <strong>sender=<em>LOGINNAME</em>@company.com</strong>, from=LOGINNAME@company.com, recip=LOGINNAME@company.com, prior=, as_score=0, as_strategy=M, code=W, actions=FFFFFFFFFFFTFFFFFFFFFF, analysis=F000FFF000TTT000F000TFT000000TTSS3000059900033-F1F-FF00000000F000FFF000000000000F1FFF000F000</p>
<p>where the entire part in bold is a match, but LOGINNAME can be any number of random characters.</p>
<p>Any help would be greatly appreciated,
Thank you,</p>
http://stackoverflow.com/questions/850531/useful-tools-for-working-with-subversion/850688#8506880Answer by barfoon for Useful tools for working with Subversionbarfoon2009-05-12T00:49:26Z2009-05-12T00:49:26Z<p>I use <a href="http://kdesvn.alwins-world.de/" rel="nofollow">kdesvn</a> as a linux client, does the job.</p>
http://stackoverflow.com/questions/849539/is-casting-a-mysqli-result-object-to-an-array-good-practice0Is casting a mysqli result object to an array good practice?barfoon2009-05-11T19:02:00Z2009-05-11T19:24:15Z
<p>Hey everyone,</p>
<p>I was wondering, if I have some code such as:</p>
<pre><code>$result = $db->query($sql); // dont worry, its escaped
$myData = (array)$result->fetch_assoc();
</code></pre>
<p>where </p>
<pre><code>$result->fetch_assoc();
</code></pre>
<p>returns a mysqli result object. </p>
<p>Is casting it like this right away good practice? I would imagine this is an expensive call - is this true?</p>
<p>It sure makes things convenient to use immediately after I query for it, but I want to make sure I'm not doing something in bad form.</p>
<p>Thanks for any input,</p>
http://stackoverflow.com/questions/1177515/how-to-explain-differences-between-analog-and-digital-to-my-mother/1178126#1178126Comment by barfoon on How to explain differences between analog and digital to my mother.barfoon2009-07-24T19:58:54Z2009-07-24T19:58:54ZThis answer does not touch upon the idea of discrete vs continuous at allhttp://stackoverflow.com/questions/1177515/how-to-explain-differences-between-analog-and-digital-to-my-mother/1177541#1177541Comment by barfoon on How to explain differences between analog and digital to my mother.barfoon2009-07-24T13:35:28Z2009-07-24T13:35:28ZSuch an elegant answer, +1http://stackoverflow.com/questions/1134988/problem-inserting-data-into-a-mysql-databaseComment by barfoon on Problem inserting data into a MySQL databasebarfoon2009-07-16T02:37:39Z2009-07-16T02:37:39ZI LOL'd at John's comment. Nice.http://stackoverflow.com/questions/1124968/most-harmful-misconception-of-beginners-about-programming/1125492#1125492Comment by barfoon on Most harmful misconception of beginners about programming?barfoon2009-07-15T19:18:22Z2009-07-15T19:18:22ZSometimes Cool != usable at all, however.http://stackoverflow.com/questions/1102986/most-powerful-examples-of-unix-commands-or-scripts-every-programmer-should-know/1117937#1117937Comment by barfoon on Most powerful examples of Unix commands or scripts every programmer should knowbarfoon2009-07-14T13:16:54Z2009-07-14T13:16:54ZDont forget to push ESC in case you're in edit mode ;)http://stackoverflow.com/questions/1112468/how-do-i-zip-a-whole-folder-tree-in-unix-but-only-certain-files/1112484#1112484Comment by barfoon on how do I zip a whole folder tree in unix, but only certain files?barfoon2009-07-11T00:14:25Z2009-07-11T00:14:25ZYou wouldnt copying the entire directory - only the files that match the pattern. That way when you create the zip you can just say zip all, then delete.http://stackoverflow.com/questions/1112449/programmatically-empty-out-large-text-file-when-in-use-by-another-process/1112460#1112460Comment by barfoon on Programmatically empty out large text file when in use by another processbarfoon2009-07-10T23:46:39Z2009-07-10T23:46:39ZThanks - but it wont allow me to rename the file as it says its being used by another processhttp://stackoverflow.com/questions/1088848/ftp-only-want-to-keep-latest-10-files-delete-lru/1088882#1088882Comment by barfoon on FTP - Only want to keep latest 10 files - delete LRUbarfoon2009-07-06T19:56:48Z2009-07-06T19:56:48ZHaha, thats actually fairly elegant. Thanks for the suggestion.http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get/998752#998752Comment by barfoon on Why is my variable not being put into $_GET?barfoon2009-06-16T13:49:38Z2009-06-16T13:49:38Z@Gumbo - I agree, I dont think I understood why you cant name them the same thing. I posted an answer, if anyone has any further insight they can leave a comment there. Thanks!http://stackoverflow.com/questions/1001380/php-and-mysqlComment by barfoon on PHP and MySQLbarfoon2009-06-16T13:16:42Z2009-06-16T13:16:42ZIn future please make the title of your question more informative, thanks!http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get/998752#998752Comment by barfoon on Why is my variable not being put into $_GET?barfoon2009-06-15T22:36:58Z2009-06-15T22:36:58ZTo some it might make a difference as it keeps things more organized in the webroot.http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get/998752#998752Comment by barfoon on Why is my variable not being put into $_GET?barfoon2009-06-15T22:33:24Z2009-06-15T22:33:24ZThis did it! Thank you. Didnt even think of that.
Why cant you name the script the same thing as the rule?
Can anyone shed some light on this?http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get/998516#998516Comment by barfoon on Why is my variable not being put into $_GET?barfoon2009-06-15T22:19:11Z2009-06-15T22:19:11ZYes, I have 2 rules below to remove www:
RewriteCond %{HTTP_HOST} ^www\.mydomain\.org$
RewriteRule ^(.*)$ <a href="http://mydomain.org/" rel="nofollow">mydomain.org</a>$1 [R=301,L]http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get/998629#998629Comment by barfoon on Why is my variable not being put into $_GET?barfoon2009-06-15T22:13:04Z2009-06-15T22:13:04ZI have tried your rewrite rule, no change.http://stackoverflow.com/questions/998491/why-is-my-variable-not-being-put-into-get/998516#998516Comment by barfoon on Why is my variable not being put into $_GET?barfoon2009-06-15T22:08:50Z2009-06-15T22:08:50ZI have posted the output of the log @ level 9, cleared other rules and requested the page once.