User Rob Howard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T01:57:30Zhttp://stackoverflow.com/feeds/user/3528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/196771/what-is-the-best-way-to-escape-python-strings-in-php2What is the best way to escape Python strings in PHP?Rob Howard2008-10-13T05:20:56Z2009-11-28T18:47:35Z
<p>I have a PHP application which needs to output a python script, more specifically a bunch of variable assignment statements, eg.</p>
<pre><code>subject_prefix = 'This String From User Input'
msg_footer = """This one too."""
</code></pre>
<p>The contents of subject_prefix et al need to be written to take user input; as such, I need to escape the contents of the strings. Writing something like the following isn't going to cut it; we're stuffed as soon as someone uses a quote or newline or anything else that I'm not aware of that could be hazardous:</p>
<pre><code>echo "subject_prefix = '".$subject_prefix."'\n";
</code></pre>
<p>So. Any ideas?</p>
<p>(Rewriting the app in Python isn't possible due to time constraints. :P )</p>
http://stackoverflow.com/questions/1647727/escaping-data-for-use-within-a-codeigniter-view0Escaping data for use within a CodeIgniter ViewRob Howard2009-10-30T02:44:02Z2009-10-30T12:12:53Z
<p>I have a controller and a view; the data that I'm working with inside the controller can't be trusted (it's drawn from somewhere external, and isn't <code>$_GET</code> or <code>$_POST</code>).</p>
<p>How do I escape the data when printing it in the view to ensure that tags and other things are escaped properly? I'm used to Zend_View's <code>$this->escape($foo)</code>, which is used from inside the view, so I'm still trying to get my bearings. My preference is to escape it from within the view, as I use the data, but if that's not an option I'll do it within the controller.</p>
<p>(I've discovered the filtering for $this->input, but as the data isn't coming from <code>$_GET</code>/<code>$_POST</code> it's not much use to me. :-) Unfortunately, the examples I've seen so far have all been using a controller putting static data into an array, which is then passing to the view, eg. <code>$data['foo'] = 'Example'</code>)</p>
<p>Any ideas?</p>
<p><b>Edit:</b> I'm asking because I don't particularly relish using <a href="http://ha.ckers.org/blog/20070327/htmlspecialchars-strikes-again/#comment-25954" rel="nofollow"><code>html_entities($str, ENT_QUOTES, 'utf-8')</code></a> everywhere (along with <code>mb_convert_encoding()</code> and friends), but I guess I'll create a custom helper if needed.</p>
<p><b>Edit #2:</b> The data is a bunch of strings (that may contain anything from straight alphanumeric characters, to <code><b>foo</b></code>, to <code><script>alert('xsslol');</script></code>. </p>
<p>I need to escape these strings to print them within, say, table cells, not allowing any HTML tags to be printed (converting tags into their HTML entity equivalents).<br />
If I were working with bare PHP, I'd use htmlentities() for this, as per my edit above.</p>
http://stackoverflow.com/questions/1587074/excluding-files-when-checking-out-from-subversion-repository0Excluding files when checking out from Subversion repositoryRob Howard2009-10-19T05:18:18Z2009-10-19T08:13:20Z
<p>I work with a subversion repository for a "generic" package that is full of files that shouldn't be there (site-specific files, hacks, etc). I do not have access to change this, and I've been stonewalled when I ask about having it changed on my behalf; I'm now after a workaround.</p>
<p>Is it possible to exclude some files from being checked out (or being pulled out of the repository when updating), so that I can work with some semblance of a clean package?</p>
<p>These files are independent and are not being pulled in by the other "good" files, so there aren't any dependency problems in that regard.</p>
<p><em>(Please note this is not the usual "How do I stop files from being committed" question answered by svn:ignore. Sorry. :-) )</em></p>
http://stackoverflow.com/questions/282647/does-perl-have-php-like-dynamic-variables3Does Perl have PHP-like dynamic variables?Rob Howard2008-11-12T00:45:07Z2009-07-21T01:24:30Z
<p>Hello,</p>
<p>In PHP, I can write:</p>
<pre><code>$vname = 'phone';
$$vname = '555-1234';
print $phone;
</code></pre>
<p>... And the script will output "555-1234".</p>
<p>Is there any equivalent in Perl?</p>
<p><strong>Edit:</strong> Thanks, CMS.</p>
<p>Is there any way to constrain $phone to the scope of the local block, as if I'd written "my $phone"? Using "my $$vname" gives me "Can't declare scalar dereference in my at ..." errors.</p>
http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/456144#4561444Answer by Rob Howard for What dead programming languages do you know?Rob Howard2009-01-18T23:47:58Z2009-01-18T23:47:58Z<p>GWBasic. D-:</p>
<p><img src="http://progsoc.org/~rhoward/public/pics/misc/screenshot_gwbasic.tiny.png" alt="alt text" /></p>
http://stackoverflow.com/questions/437694/what-do-you-think-of-using-youtube-for-online-help-videos/437719#4377191Answer by Rob Howard for What do you think of using YouTube for online help videos?Rob Howard2009-01-13T01:44:36Z2009-01-13T01:44:36Z<p>I like using videos for tutorials; I'd host it on my local server (using one of the <a href="http://www.longtailvideo.com/players/jw-flv-player/" rel="nofollow">free flash video players</a>), but I'm a control-freak like that.</p>
<p>I dislike that damn voice; it hurts my brain listening to it for too long. Do the recording in a few passes; don't start from the beginning again, keep going each time and just edit the usable parts together for the final cut.</p>
<p>... Having said that, I prefer textual help and cues built into the actual application itself, rather than relying on the Tutorial crutch; Stack Overflow itself is a pretty good example of this (with a few exceptions).</p>
http://stackoverflow.com/questions/358727/convert-wife-husband-partner-to-a-programmer/415053#41505310Answer by Rob Howard for Convert wife/husband/partner to a programmer.Rob Howard2009-01-06T00:37:59Z2009-01-06T00:37:59Z<p>No thanks. :|</p>
<p>While my girlfriend isn't a programmer, she's a geek in her own right and has her own strong passions (art, graphic design) that she rants about, stays up all night doing, etc.</p>
<p>We complement (not clone) each other; I wouldn't trade it for the world. :D</p>
http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/268590#2685900Answer by Rob Howard for What's your first program that you were proud of?Rob Howard2008-11-06T12:56:06Z2008-11-06T12:56:06Z<p>A mini Star Trek Next Gen "adventure" game (you had about five choices in the entire game), complete with title sequence and explosions in ASCII art (with a "sleep 1" in between each frame), when I was 9 and got a hold of my Dad's 286 laptop.</p>
<p>I later "upgraded" it to use "for ii = 1 to 10000 ... next ii" no-op loops to get more than one frame per second. A true thedailywtf.com candidate in the making. :-|</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/258058#2580584Answer by Rob Howard for What things didn't you know you needed but are now very glad you have?Rob Howard2008-11-03T07:21:57Z2008-11-03T07:21:57Z<p><strong>Virtual Desktops.</strong></p>
<p>Being able to have "groups" of windows (say, a browser window for testing and two code windows on desktop, then a browser window and a PDF viewer for docs on another, and then a group of email/calendaring apps...) is <em>really</em> damn useful.</p>
<p>It's like having an extra dimension; you can alt-tab to switch within the windows on one desktop, and then hit another key combo to switch to another desktop with its own self-contained group of apps.</p>
<ul>
<li><strong>Linux:</strong> Gnome, KDE, XFCE, Fluxbox, Enlightenment, twm... They all have it. :D</li>
<li><strong>Windows:</strong> <a href="http://virtuawin.sourceforge.net/" rel="nofollow">Virtuawin</a> (beats the Windows Powertoys version hands-down.)</li>
<li><strong>Mac:</strong> ... Any suggestions?</li>
</ul>
http://stackoverflow.com/questions/227847/how-do-i-make-bash-history-permanent-under-freebsd1How do I make Bash history permanent under FreeBSD?Rob Howard2008-10-22T22:57:09Z2008-10-22T23:21:40Z
<p>Hello,</p>
<p>I have a FreeBSD box with Bash set up.</p>
<p>I'm used to Debian Linux where my command history is automatically saved when I log out, so that when I log back in I can press up or Ctrl-R or whatever and have access to my history.</p>
<p>How do I set up Bash to do this on FreeBSD?</p>
http://stackoverflow.com/questions/205308/how-to-master-regular-expressions/224681#2246812Answer by Rob Howard for How to master Regular Expressions?Rob Howard2008-10-22T06:35:05Z2008-10-22T06:35:05Z<p>I recommend <a href="http://oreilly.com/catalog/9781565922570/" rel="nofollow">this one</a>.</p>
<p><img src="http://progsoc.org/~rhoward/public/pics/humour/orly_regex.jpg" alt="Regular Expressions" /></p>
http://stackoverflow.com/questions/185778/how-to-get-proper-line-number-when-using-triggererror-in-php/185817#1858170Answer by Rob Howard for How to get proper line number when using trigger_error in PHP?Rob Howard2008-10-09T03:20:44Z2008-10-09T03:20:44Z<p>Two options, neither one are particularly palatable:</p>
<ul>
<li><p>Override Have test() provide <code>__LINE__</code> in the arguments (eg. "<code>test(__LINE__)</code>", and give the argument to trigger_error). Set an error handler to print a custom error message. <strong>NOTE:</strong> This is horrifically ugly. :-)</p></li>
<li><p>Set up an error handler, and have it call and process the horrifically-large output of debug_backtrace(). This function can be useful when debugging... But is overkill for what you're trying to do. Please don't use this function as part of the regular operation of a system.</p></li>
</ul>
<p>Short answer: too hard, don't try. :-|</p>
http://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185388#1853885Answer by Rob Howard for Regular expression to match start of filename and filename extensionRob Howard2008-10-08T23:46:24Z2008-10-09T00:05:17Z<pre><code>/^Run.*\.py$/
</code></pre>
<p>Or, in python specifically:</p>
<pre><code>import re
re.match(r"^Run.*\.py$", stringtocheck)
</code></pre>
<p>This will match "Runfoobar.py", but not "runfoobar.PY". To make it case insensitive, instead use:</p>
<pre><code>re.match(r"^Run.*\.py$", stringtocheck, re.I)
</code></pre>
http://stackoverflow.com/questions/185378/regular-expression-to-match-start-of-filename-and-filename-extension/185426#1854265Answer by Rob Howard for Regular expression to match start of filename and filename extensionRob Howard2008-10-09T00:01:25Z2008-10-09T00:01:25Z<p>Warning:</p>
<ul>
<li>jobscry's answer ("^Run.?.py$") is incorrect (will not match "Run123.py", for example).</li>
<li>orlandu63's answer ("/^Run[\w]*?.py$/") will not match "RunFoo.Bar.py".</li>
</ul>
<p>(I don't have enough reputation to comment, sorry.)</p>
http://stackoverflow.com/questions/185348/virtual-desktop-software-best-practices/185367#1853670Answer by Rob Howard for Virtual Desktop Software - Best practicesRob Howard2008-10-08T23:36:32Z2008-10-08T23:36:32Z<p>I'm stuck with one smallish monitor, so I typically make use of three desktops when developing:</p>
<ol>
<li>App browser windows (usually just the one window, but it's easy to alt-tab within this desktop to get to Source View or Firebug or whathaveyou.)</li>
<li>App code windows (two or three editor windows, or one console window with Screen running.)</li>
<li>Reference docs (A browser window full of tabs, plus a console open with a man page if appropriate.)</li>
</ol>
<p>I sometimes keep an extra one for email and/or music, but it's not essential.</p>
<p>In essence, though, I basically split up each desktop into a few windows (maximum) to alt-tab between, to avoid the hunt-for-the-window problem you get with a single desktop. Split it too much and it becomes hunt-for-the-desktop instead, but at that point you're trying to multitask too much.</p>
<p>Ideally, I'd have two monitors side-by-side and have my current work (a browser window and a couple of code windows) open and accessible on one desktop, with reference docs and email/music each on their own desktops.</p>
http://stackoverflow.com/questions/185262/how-does-your-company-do-enterprise-password-management/185331#1853311Answer by Rob Howard for How does your company do "Enterprise" Password Management?Rob Howard2008-10-08T23:21:01Z2008-10-08T23:21:01Z<p>We maintain an in-house Lotus Notes database that stores absolutely everything from passwords to server change records. It is big, cumbersome, takes an age to load, and is generally not, uh, nice.</p>
<p>No, this is not a sane way to do it. :-|</p>
http://stackoverflow.com/questions/185014/how-to-version-milestones-developed-in-parallel-that-may-not-be-completed-sequent/185309#1853091Answer by Rob Howard for How to version milestones developed in parallel that may not be completed sequentially?Rob Howard2008-10-08T23:13:31Z2008-10-08T23:13:31Z<p>I'm a little confused as to why you'd distinguish the branches with numbers; name each branch according to the features (eg. vehicle-doors, vehicle-steeringwheel) and use the version numbers to track the progress of each branch (vehicle-doors v0.1, 0.2, etc).</p>
<p>If you're intending to integrate later on, though, it's going to be hell unless you're really, really careful; you might want to consider how insane this may become to manage.</p>
http://stackoverflow.com/questions/93128/mysql-got-a-packet-bigger-than-maxallowedpacket-bytes/722656#722656Comment by Rob Howard on mysql: Got a packet bigger than 'max_allowed_packet' bytesRob Howard2009-11-26T04:11:21Z2009-11-26T04:11:21ZSolved the problem for me; the import I'm doing is a once-off, and I can't easily change the configuration. This worked great. :Dhttp://stackoverflow.com/questions/1665289/printing-without-opening-print-dialog-in-php/1665333#1665333Comment by Rob Howard on Printing without opening print dialog in phpRob Howard2009-11-03T05:05:15Z2009-11-03T05:05:15ZNo, for the reasons he stated.http://stackoverflow.com/questions/437694/what-do-you-think-of-using-youtube-for-online-help-videos/437719#437719Comment by Rob Howard on What do you think of using YouTube for online help videos?Rob Howard2009-10-30T12:21:28Z2009-10-30T12:21:28Z... That video player was free when I posted this, at least. It appears to now require a licence for commercial use.http://stackoverflow.com/questions/1647727/escaping-data-for-use-within-a-codeigniter-view/1647962#1647962Comment by Rob Howard on Escaping data for use within a CodeIgniter ViewRob Howard2009-10-30T06:47:01Z2009-10-30T06:47:01ZMy apologies, I should've been more specific. Please see the second edit above.
(xss_clean() by itself doesn't do the escaping I need.)http://stackoverflow.com/questions/1615726/what-is-a-rule-of-thumb-ratio-of-alpha-developers-okay-developers-and-newbies-ne/1615750#1615750Comment by Rob Howard on What is a rule-of-thumb ratio of alpha-developers, okay developers and newbies needed for a great web application team?Rob Howard2009-10-25T09:28:18Z2009-10-25T09:28:18Z@DVK What sort of "Monkey Work" do you mean?http://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer/700887#700887Comment by Rob Howard on What is your "best friend" as a programmer?Rob Howard2009-10-25T02:10:42Z2009-10-25T02:10:42Z@Svish If there were a way to alt+tab between "sets" of windows (from a bunch of different applications), then I'd be sold. Virtual desktops let me do that with minimal clutter.http://stackoverflow.com/questions/1581586/html-into-php-variable-html-outside-php-code/1581613#1581613Comment by Rob Howard on HTML into PHP Variable (HTML outside PHP code)Rob Howard2009-10-17T08:26:12Z2009-10-17T08:26:12Zob_end_flush() will not return the buffer, you're after ob_get_clean(): <a href="http://php.net/manual/en/function.ob-get-clean.php" rel="nofollow">php.net/manual/en/…</a>http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use/12402#12402Comment by Rob Howard on What bug tracking software do you use?Rob Howard2009-08-30T05:40:09Z2009-08-30T05:40:09ZIt's not as bad as Bugzilla, but it's still seriously clunky to use (let alone customise).http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use/12431#12431Comment by Rob Howard on What bug tracking software do you use?Rob Howard2009-08-30T05:29:41Z2009-08-30T05:29:41ZI love Trac. I just can't install it on most (if not all) of the hosting accounts I have access to. :(http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/258058#258058Comment by Rob Howard on What things didn't you know you needed but are now very glad you have?Rob Howard2009-06-25T22:48:47Z2009-06-25T22:48:47Z@tkadlub: Unfortunately, it sucks if you want to have, say, two terminals or browser windows on different desktops. Alt-TAB and see what happens - it goes crazy switching from desktop to desktop as you cycle through the apps.
(You have to use Alt-` to cycle to the application window on the desktop that you're working on before you can Alt-TAB between windows on the one desktop smoothly. And then you change desktop...)http://stackoverflow.com/questions/354488/is-there-a-way-to-split-a-widescreen-monitor-in-to-two-or-more-virtual-monitors/354501#354501Comment by Rob Howard on Is there a way to split a widescreen monitor in to two or more virtual monitors?Rob Howard2009-06-15T02:15:29Z2009-06-15T02:15:29Z-1, not answering the question.
Virtual Desktops are great, but this is about making use of a widescreen monitor.http://stackoverflow.com/questions/978904/do-you-use-the-orwellian-past-rewriting-debugging-philosophy/978930#978930Comment by Rob Howard on Do you use the Orwellian Past Rewriting debugging philosophy?Rob Howard2009-06-11T01:52:43Z2009-06-11T01:52:43Z@dirtside: That is quite possibly the worst edge-cases I've ever heard of.http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962529#962529Comment by Rob Howard on What is the worst programming language you ever worked with?Rob Howard2009-06-08T22:31:05Z2009-06-08T22:31:05ZThis this this this oh geez this.
I've had to try to maintain a 3000-line mIRC script before; it's utterly horrible to work with.http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185169#185169Comment by Rob Howard on What is the best comment in source code you have ever encountered?Rob Howard2009-04-22T07:36:41Z2009-04-22T07:36:41ZPosted HTML checkbox value handling is a WTF in its own right.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84589#84589Comment by Rob Howard on What's your favorite "programmer" cartoon?Rob Howard2009-04-13T11:11:51Z2009-04-13T11:11:51ZI've got a 'shopped version of this stuck near my monitor at work; we use an internally-written CMS that can take up to five minutes to "Publish".
(It's great when you're trying to debug something in the template logic; everything needs to be published before being run.)