User Devin Reams - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T16:46:12Zhttp://stackoverflow.com/feeds/user/16248http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/997007/can-two-different-wordpress-blogs-on-the-same-server-use-a-common-theme-folder/1024645#10246450Answer by Devin Reams for Can two different wordpress blogs on the same server use a common theme folder?Devin Reams2009-06-21T20:04:31Z2009-06-21T20:04:31Z<p>Another approach, if using source control (SVN, Git), would be to checkout the theme into the two locations and update them.</p>
http://stackoverflow.com/questions/1021812/is-it-possible-to-browse-safari-bookmarks-from-within-another-iphone-application/1022087#10220870Answer by Devin Reams for Is it possible to browse Safari bookmarks from within another iPhone application?Devin Reams2009-06-20T17:35:01Z2009-06-20T17:35:01Z<p>Not through the existing SDK or APIs but some threads suggest, through jailbreaking, you can access the file at:</p>
<blockquote>
<p>/var/mobile/Library/Safari/Bookmarks.plist</p>
</blockquote>
http://stackoverflow.com/questions/815765/turn-a-single-sed-command-into-a-reusable-textmate-command/854712#8547121Answer by Devin Reams for Turn a single sed command into a reusable Textmate commandDevin Reams2009-05-12T20:27:20Z2009-05-12T20:27:20Z<p>If you're willing to avoid the command route and simply use the Find/Replace dialog simply do as follows:</p>
<ul>
<li>highlight/select the lines you'd like to append to</li>
<li>open the Find dialog</li>
<li>check 'Regular Expressions'</li>
<li>in the 'Find' field, add <code>'$'</code> (to indicate the end of the line)</li>
<li>in the 'Replace' field, add <code>','</code> (what you want appended)</li>
<li>hold <code>Option</code>, this will change "Replace All" to "In Selection"</li>
</ul>
<p>This technique can be applied in a number of other useful ways. For example, changing <code>'$'</code> to <code>'^'</code> if you want to prefix each line.</p>
http://stackoverflow.com/questions/124869/how-does-the-doc-format-work/124883#1248830Answer by Devin Reams for How does the .doc format work?Devin Reams2008-09-24T01:28:33Z2008-09-24T01:28:33Z<p>There's Microsoft Word's .doc and then there's plain text .doc. It sounds like you're wondering about the proprietary Microsoft format.</p>
<p>From <a href="http://en.wikipedia.org/wiki/DOC_(computing)" rel="nofollow">Wikipedia</a>:</p>
<blockquote>
<p>The DOC format varies among Microsoft Office Word Formats. Word versions up to 97 used a different format from Microsoft Word version between 97 and 2003.</p>
</blockquote>
<p>It wasn't until Word 2007 where <a href="http://en.wikipedia.org/wiki/DOCX" rel="nofollow">.docx</a>, although a packaged file, is not necessarily a .zip archive. It is a structured XML document.</p>
http://stackoverflow.com/questions/108808/adoption-of-the-ribbon-ui/108844#10884413Answer by Devin Reams for Adoption of the Ribbon UIDevin Reams2008-09-20T17:42:08Z2008-09-20T17:42:08Z<p>The Office 2007 ribbon came from years and years of usability and data collection (remember checking the box when you first installed Office?). As <a href="http://stackoverflow.com/users/4997/gabr">gabr</a> alluded to, the user interface is the hardest part. Questions like the following need to be answered:</p>
<ul>
<li>What is used the most?</li>
<li>How many clicks does it take to do most functions?</li>
<li>Is the naming convention standard?</li>
<li>How will the ribbon change given the context of the user's actions?</li>
<li>etc.</li>
</ul>
<p>And, frankly, those questions alone take a ton of work. The reason people haven't developed ribbon interfaces is it's too hard (or too easy to screw up).</p>
http://stackoverflow.com/questions/94747/offline-lorem-ipsum-generator/94846#948460Answer by Devin Reams for Offline lorem ipsum generatorDevin Reams2008-09-18T17:44:18Z2008-09-18T17:44:18Z<p>At the bottom of the lorem ipsum generator you will find links to the generator for other usage. My understanding is the following can be used offline:</p>
<ul>
<li><a href="http://ftp.ktug.or.kr/tex-archive/help/Catalogue/entries/lipsum.html" rel="nofollow">TeX Package</a></li>
<li><a href="http://www.softabar.com/home/content/view/47/56/" rel="nofollow">Java Class</a></li>
</ul>
<p>But you may also find the following helpful:</p>
<ul>
<li>WWW::Lipsum CPAN Module</li>
<li>Firefox Add-on</li>
<li>Dreamweaver Extension</li>
<li>GTK Lipsum</li>
<li>ActionScript3</li>
</ul>
<p>Each of these, while requiring connectivity, reduce the load on the lipsum generator as they don't require loading the actual website.</p>
http://stackoverflow.com/questions/94592/how-do-you-visualize-logfiles-in-realtime/94733#947331Answer by Devin Reams for How do you visualize logfiles in realtime?Devin Reams2008-09-18T17:34:38Z2008-09-18T17:34:38Z<p>Google has released the <a href="http://code.google.com/apis/visualization/" rel="nofollow">Visualization API</a> that is probably flexible enough to help you:</p>
<blockquote>
<p>The Google Visualization API lets you access multiple sources of structured data that you can display, choosing from a large selection of visualizations. The Google Visualization API also provides a platform that can be used to create, share and reuse visualizations written by the developer community at large.</p>
</blockquote>
<p>It requires some Javascript knowledge and includes Google Docs integration, Spreadsheet integration. Check out the <a href="http://code.google.com/apis/visualization/documentation/gallery.html" rel="nofollow">Gallery</a> for some examples.</p>
http://stackoverflow.com/questions/94634/how-can-i-add-pulldowns-and-checkboxes-in-a-ms-outlook-email/94675#946752Answer by Devin Reams for How can I add pulldowns and checkboxes in a MS Outlook email?Devin Reams2008-09-18T17:26:32Z2008-09-18T17:26:32Z<p>In Outlook 2007 there is functionality to <a href="http://office.microsoft.com/en-us/outlook/HP100804251033.aspx" rel="nofollow">create polls (Voting)</a> which may satisfy your needs:</p>
<blockquote>
<p>This feature requires you to use a Microsoft Exchange Server 2000, Exchange Server 2003, or Exchange Server 2007 account.</p>
</blockquote>
<p>A demonstration is provided <a href="http://office.microsoft.com/en-us/outlook/HA102555841033.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/89609/in-a-bash-script-how-do-i-sanitize-user-input3In a bash script, how do I sanitize user input?Devin Reams2008-09-18T02:56:27Z2008-09-18T17:04:57Z
<p>I'm looking for the best way to take a simple input:</p>
<pre><code>echo -n "Enter a string here: "
read -e STRING
</code></pre>
<p>and clean it up by removing non-alphanumeric characters, lower(case), and replacing spaces with underscores.</p>
<p>Does order matter? Is <code>tr</code> the best / only way to go about this?</p>
http://stackoverflow.com/questions/13213/url-without-id/89901#899011Answer by Devin Reams for URL without IDDevin Reams2008-09-18T04:02:36Z2008-09-18T04:02:36Z<p>As you may or may not know, the URLs are being re-written with Apache's <strong>mod_rewrite</strong> module. As mentioned here, Wordpress is, in the background, assigning a slug after sanitizing the title or post name.</p>
<p>But, to answer your question, what you're describing is Wordpress' "Pretty Permalinks" feature and you can learn more about it in the <a href="http://codex.wordpress.org/Using_Permalinks" rel="nofollow">Wordpress codex</a>. Newer versions of Wordpress do the re-writing internally (no .htaccess editin, <a href="http://codex.wordpress.org/Function_Reference/WP_Rewrite" rel="nofollow">wp_rewrite</a> instead). Which is why you'll see the same ruleset for any permalink structure.</p>
<p>Though, if you do some digging you can find the old rewrite rules. For example:</p>
<pre><code>RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index.php?year=$1&monthnum=$2&day=$3 [QSA,L]
</code></pre>
<p>Will take a URL like <code>/2008/01/01/</code> and direct it to <code>/index.php?year=2008&monthnum=01&day=01</code> (and load a date category).</p>
<p>But, as mentioned, a page like <code>product-name</code> exists <strong>only</strong> because Wordpress already sanitized the post title and stored it as a field in the database.</p>
http://stackoverflow.com/questions/4164/what-is-a-good-barebones-cms-or-framework/89803#898030Answer by Devin Reams for What is a good barebones CMS or framework?Devin Reams2008-09-18T03:41:17Z2008-09-18T03:41:17Z<p><a href="http://www.wordpress.org" rel="nofollow"><strong>Wordpress</strong></a> is a very powerful but simple CMS.</p>
<p><a href="http://bbpress.org/" rel="nofollow"><strong>bbPress</strong></a> is a very simple but integrated forum (easy, Wordpress user account integration with cookies and all).</p>
<p>Since you have programming experience you may find Wordpress to be the perfect match (PHP, MySQL) with plenty of plugins and hooks to help you achieve what you need. For example, there is a <a href="http://impnerd.com/downloads/featured-posts" rel="nofollow">featured posts plugin</a> that will put selected content on the front page.</p>
http://stackoverflow.com/questions/81410/how-do-you-add-a-javascript-widget-to-a-wordpress-com-hosted-blog/89760#897602Answer by Devin Reams for How do you add a JavaScript widget to a Wordpress.com hosted blog?Devin Reams2008-09-18T03:32:07Z2008-09-18T03:32:07Z<p>From the official <a href="http://faq.wordpress.com/2006/05/07/javascript-can-i-use-that-on-my-blog/" rel="nofollow">Wordpress.com FAQ</a>:</p>
<blockquote>
<p>Javascript can be used for malicious purposes and while what you want to do is okay it does not mean all javascript will be okay.</p>
</blockquote>
<p>It goes on to remind the reader that both MySpace and LiveJournal had been affected by malicious Javascript and, therefore, will not be permitted (as it may be exploited by users with poor intentions). They can't risk it with amazingly large sites (think I Can Has Cheezburger, Anderson Cooper 360, Fox, etc.).</p>
<p>If you think you have Javascript that would benefit Wordpress.com you can <a href="http://wordpress.com/contact-support/" rel="nofollow">contact them directly</a>.</p>
http://stackoverflow.com/questions/89609/in-a-bash-script-how-do-i-sanitize-user-input/89642#896420Answer by Devin Reams for In a bash script, how do I sanitize user input?Devin Reams2008-09-18T03:01:50Z2008-09-18T03:01:50Z<p>After a bit of looking around it seems <code>tr</code> is indeed the simplest way:</p>
<pre><code>export CLEANSTRING="`echo -n "${STRING}" | tr -cd '[:alnum:] [:space:]' | tr '[:space:]' '-' | tr '[:upper:]' '[:lower:]'`"
</code></pre>
<p>Occam's razor, I suppose.</p>
http://stackoverflow.com/questions/85736/can-anyone-recommend-a-good-modern-alternative-to-bash/85863#8586316Answer by Devin Reams for Can anyone recommend a good modern alternative to bash?Devin Reams2008-09-17T17:56:03Z2008-09-17T17:56:03Z<p>As <a href="http://stackoverflow.com/users/8435/aviewanew">AviewAnew</a> noted, zsh is a nice alternative (it's an expansion on ksh). A few highlights from around the web:</p>
<ol>
<li>Typo correction (Did you mean <strong>_</strong>?)</li>
<li>Syntax lookup (move your cursor to the command, Alt-H opens <code>man</code> page)</li>
<li>Auto-complete remove files (in addition to files and parameters)</li>
<li>History command completion (don't press up, just begin the command and press Alt-P)</li>
<li>Command line replace (mis-spelled command 'get' with 'gey' and hit enter? just type <code>^gey^get</code> to replace)</li>
<li>Built in paging (quick and easy, don't rely on less, cat)</li>
</ol>
<p>Check out the <a href="http://zsh.sourceforge.net/Guide/" rel="nofollow">zsh guide</a> for more.</p>
<p>(<a href="http://friedcpu.wordpress.com/2007/07/24/zsh-the-last-shell-youll-ever-need/" rel="nofollow">source 1</a>, <a href="http://debaday.debian.net/2008/06/18/zsh-a-really-nice-alternative-for-bash/" rel="nofollow">source 2</a>)</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/85410#854100Answer by Devin Reams for What do you use to keep notes as a developer?Devin Reams2008-09-17T17:05:01Z2008-09-17T17:05:01Z<p>We at <a href="http://www.crowdfavorite.com/" rel="nofollow">Crowd Favorite</a> are developing a custom <a href="http://www.wordpress.org" rel="nofollow">Wordpress</a> site that acts as a:</p>
<ul>
<li>wiki (WP now has revision functionality), </li>
<li>mailing list (setup a category to e-mail users on post/revision)</li>
<li>contact list (use microformats, create hcards)</li>
<li>code repository (create posts, pages)</li>
</ul>
<p>...and so on. I think that covers some of the basic reference functions that any developer (firm) should have.</p>
http://stackoverflow.com/questions/83723/allow-userexample-or-userlocalhost-in-email-validation/85324#853240Answer by Devin Reams for Allow user@example or user@localhost in email validation?Devin Reams2008-09-17T16:57:17Z2008-09-17T16:57:17Z<p>Looking at this it looks like you've we need two quick checks as detailed:</p>
<pre><code><?php
function valid_email($email) {
// First, we check that there's one @ symbol, and that the lengths are right
if (!ereg("^[^@]{1,64}@[^@]{1,255}$", $email)) {
// Email invalid because wrong number of characters in one section, or wrong number of @ symbols.
return false;
}
// take a given email address and split it into the username and domain.
list($userName, $mailDomain) = split("@", $email);
if (checkdnsrr($mailDomain, "MX")) {
// this is a valid email domain!
return true;
}
else {
// this email domain doesn't exist!
return false;
}
}
?>
</code></pre>
<p>(<a href="http://www.sitepoint.com/article/users-email-address-php/" rel="nofollow">source 1</a>, <a href="http://www.phpit.net/code/valid-email/" rel="nofollow">source 2</a>)</p>
http://stackoverflow.com/questions/94747/offline-lorem-ipsum-generator/94806#94806Comment by Devin Reams on Offline lorem ipsum generatorDevin Reams2008-09-18T17:46:04Z2008-09-18T17:46:04ZYou need to press <tab> to generate the text.http://stackoverflow.com/questions/89609/in-a-bash-script-how-do-i-sanitize-user-input/89970#89970Comment by Devin Reams on In a bash script, how do I sanitize user input?Devin Reams2008-09-18T17:18:45Z2008-09-18T17:18:45ZWell put, great answer. I was using parameter expansion without even realizing it.