User Joe Lencioni - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T10:32:04Zhttp://stackoverflow.com/feeds/user/18986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt80What is your favorite "programmer" t-shirt?Joe Lencioni2008-10-10T19:43:41Z2009-10-01T05:53:43Z
<p>This one is pretty good, especially for <a href="http://www.youtube.com/watch?v=PcjnbIF1yAA" rel="nofollow">Star Wars fans</a>:</p>
<p><a href="http://www.thinkgeek.com/tshirts/itdepartment/9e4a/" rel="nofollow"><img src="http://www.thinkgeek.com/images/products/front/do_or_do_not.jpg" alt="$DO || ! $DO ; try" /></a></p>
http://stackoverflow.com/questions/930182/how-to-upload-and-show-avatars-in-php/930191#9301915Answer by Joe Lencioni for How to upload and show avatars in php?Joe Lencioni2009-05-30T17:43:08Z2009-05-30T17:43:08Z<p>You should consider integrating an existing avatar service such as <a href="http://en.gravatar.com/" rel="nofollow">Gravatar</a> into your application. It might end up saving you and your users a bundle of time. From the Gravatar website:</p>
<blockquote>
<p>A gravatar, or globally recognized avatar, is quite simply an image that follows you from site to site appearing beside your name when you do things. Avatars help identify your posts on blogs and web forums, so why not on any site?</p>
</blockquote>
http://stackoverflow.com/questions/243957/best-practices-for-login-pages8Best practices for login pages?Joe Lencioni2008-10-28T16:24:50Z2009-04-15T20:33:37Z
<p>I am working on a single sign-on login page using <a href="http://en.wikipedia.org/wiki/Shibboleth_(Internet2)" rel="nofollow">Shibboleth</a> that will be used for a variety of web applications. Obviously we would like to make this page as secure and usable as possible while limiting the effects of phishing scams.</p>
<p><strong>What are the best practices to keep in mind when designing a login page?</strong></p>
<p>Some questions that have come up around this issue:</p>
<ul>
<li>Is it important for the login page to always look the same on every display?</li>
<li>Conversely, would it be beneficial for the login page to have a random design?</li>
<li>Is it better for the login page to look the same as all of your other pages or should it have its own unique design?</li>
<li>If the login page has its own unique design, should it incorporate other constant elements from your site's design (such as global navigation)?</li>
<li>Is the login page an appropriate place to provide the user with additional content (such as latest news)?</li>
<li>Are there any additional security features that should be included to help keep people safe?</li>
</ul>
http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php14What is the best way to validate a credit card in PHP?Joe Lencioni2008-10-06T15:21:39Z2009-03-02T18:06:03Z
<p>Given a credit card number and no additional information, what is the best way in PHP to determine whether or not it is a valid number?</p>
<p>Right now I need something that will work with American Express, Discover, MasterCard, and Visa, but it might be helpful if it will also work with other types.</p>
http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc6What is the best way to parse a time into a Date object from user input in Javascript?Joe Lencioni2008-09-26T19:13:02Z2009-01-11T11:43:47Z
<p>I am working on a form widget for users to enter a time of day into a text input (for a calendar application). Using JavaScript (we are using jQuery FWIW), I want to find the best way to parse the text that the user enters into a JavaScript <code>Date()</code> object so I can easily perform comparisons and other things on it.</p>
<p>I tried the <code>parse()</code> method and it is a little too picky for my needs. I would expect it to be able to successfully parse the following example input times (in addition to other logically similar time formats) as the same <code>Date()</code> object:</p>
<ul>
<li>1:00 pm</li>
<li>1:00 p.m.</li>
<li>1:00 p</li>
<li>1:00pm</li>
<li>1:00p.m.</li>
<li>1:00p</li>
<li>1 pm</li>
<li>1 p.m.</li>
<li>1 p</li>
<li>1pm</li>
<li>1p.m.</li>
<li>1p</li>
<li>13:00</li>
<li>13</li>
</ul>
<p>I am thinking that I might use regular expressions to split up the input and extract the information I want to use to create my <code>Date()</code> object. What is the best way to do this?</p>
http://stackoverflow.com/questions/215981/what-are-the-most-helpful-features-of-effective-404-file-not-found-error-pages6What are the most helpful features of effective 404 File Not Found error pages?Joe Lencioni2008-10-19T03:59:00Z2008-11-20T12:53:37Z
<p>When a user comes across your site's 404 File Not Found error page, it is most likely not what they were looking for. Here, you have the opportunity to turn a dead end into a resource that can help your visitor find whatever they were looking for.</p>
<p>If you were going to create the perfect 404 File Not Found error page, what would it do? What are the most helpful features of effective 404 File Not Found error pages? Are there any strong examples out there?</p>
http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/253680#2536803Answer by Joe Lencioni for What is the best way to parse a time into a Date object from user input in Javascript?Joe Lencioni2008-10-31T14:21:17Z2008-10-31T14:21:17Z<p>I came across a couple of kinks in implementing John Resig's solution. Here is the modified function that I have been using based on his answer:</p>
<pre><code>function parseTime(timeString)
{
if (timeString == '') return null;
var d = new Date();
var time = timeString.match(/(\d+)(:(\d\d))?\s*(p?)/);
d.setHours( parseInt(time[1]) + ( ( parseInt(time[1]) < 12 && time[4] ) ? 12 : 0) );
d.setMinutes( parseInt(time[3]) || 0 );
d.setSeconds(0, 0);
return d;
} // parseTime()
</code></pre>
http://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph2What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?Joe Lencioni2008-10-22T20:31:21Z2008-10-26T01:50:03Z
<p>I am planning a PHP application that needs to store date/times in an MSSQL database. (For the curious, it is a calendar application.) What is the preferred format to store this information?</p>
<p>MSSQL has its own datetime data type, which works well in the database itself and is very readable. However, there aren't any MSSQL functions to translate datetime values to PHP's preferred format--UNIX timestamp. This makes it a bit more painful to use with PHP. UNIX timestamp is attractive because that's what PHP likes, but it's certainly not as readable and there aren't a bunch of nice built-in MSSQL functions for working with the data.</p>
<p>Would you store this information as datetime data type, as UNIX timestamps (as int, bigint, or varchar datatype), as both formats side by side, or as something else entirely?</p>
http://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php/235353#2353535Answer by Joe Lencioni for How to connect to 2 databases at the same time in PHPJoe Lencioni2008-10-24T21:42:35Z2008-10-24T21:42:35Z<p>If your database user has access to both databases and they are on the same server, you can use one connection and just specify the database you want to work with before the table name. Example:</p>
<pre><code>SELECT column
FROM database.table
</code></pre>
<p>Depending on what you need to do, you might be able to do an <a href="http://dev.mysql.com/doc/refman/5.0/en/insert-select.html" rel="nofollow"><code>INSERT INTO</code></a> and save a bunch of processing time.</p>
<pre><code>INSERT INTO database1.table (column)
SELECT database2.table.column
FROM database2.table
</code></pre>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou4In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joe Lencioni2008-10-21T18:25:27Z2008-10-23T10:06:28Z
<p>In PHP, I want to read a file into a variable and process the PHP in the file at the same time without using output buffering. Is this possible?</p>
<p>Essentially I want to be able to accomplish this without using <code>ob_start()</code>:</p>
<pre><code><?php
ob_start();
include 'myfile.php';
$xhtml = ob_get_clean();
?>
</code></pre>
<p>Is this possible in PHP?</p>
<p>Update: I want to do some more complex things within an output callback (where output buffering is not allowed).</p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/223865#2238651Answer by Joe Lencioni for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joe Lencioni2008-10-21T23:00:18Z2008-10-22T13:16:07Z<p>After reading everybody's suggestions, reading a bunch of documentation, and playing around with some things, I came up with this:</p>
<pre><code><?php
$file = file_get_contents('/path/to/file.php');
$xhtml = eval("?>$file");
?>
</code></pre>
<p>It's as close as I could get but it unfortunately doesn't work. The key to this is to include the closing PHP bit (<code>?></code>) before the contents of the file. This will take the <code>eval()</code> out of PHP-evaluation mode and will treat the contents of the file starting as non-PHP code. Then if there are PHP code blocks within the file, those will be evaluated as PHP. The bummer is that it doesn't save the eval'd content in the variable, it just outputs it to the page.</p>
<p>Thanks for the help everybody!</p>
http://stackoverflow.com/questions/215929/create-images-of-the-page-when-url-supplied-programatically-ruby-php/215967#2159672Answer by Joe Lencioni for Create images of the page when url supplied programatically (Ruby, PHP)Joe Lencioni2008-10-19T03:35:19Z2008-10-19T03:40:56Z<p>Since <a href="http://browsershots.org/" rel="nofollow">Browsershots</a> is open source, you can take a crack at <a href="http://svn.browsershots.org/" rel="nofollow">their source code</a>.</p>
<p>Otherwise, and you may have already ruled this out for your project, Alexa offers a web service called <a href="http://aws.amazon.com/ast/" rel="nofollow">Alexa Site Thumbnail</a> that "provides developers with programmatic access to thumbnail images for the home pages of web sites."</p>
http://stackoverflow.com/questions/209193/special-characters-in-xml/209294#20929410Answer by Joe Lencioni for Special Characters in XMLJoe Lencioni2008-10-16T16:19:54Z2008-10-16T20:46:41Z<p>You are trying to use an <a href="http://en.wikipedia.org/wiki/SGML_entity" rel="nofollow">HTML entity</a> in a non-HTML or non-XHTML document. These entities are declared in the document's <a href="http://en.wikipedia.org/wiki/Document_Type_Definition" rel="nofollow">Document Type Definition (DTD)</a>.</p>
<p>You should use the numerical Unicode version of the <a href="http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references" rel="nofollow">entity reference</a>. For example, in the case of <code>&raquo;</code> you should use <code>&#187;</code></p>
<p>Alternatively, you can <a href="http://www.w3schools.com/dtd/dtd_entities.asp" rel="nofollow">define them in your XML document's DTD</a>:</p>
<pre><code><!ENTITY entity-name "entity-value">
<!ENTITY raquo "&#187;">
</code></pre>
<p>Otherwise, if your document is UTF-8, I believe you can just use the actual character directly in your XML document.</p>
<pre><code>»
</code></pre>
http://stackoverflow.com/questions/209721/xml-structure-for-a-personal-organizer/209864#2098640Answer by Joe Lencioni for XML structure for a personal organizerJoe Lencioni2008-10-16T19:11:42Z2008-10-16T19:11:42Z<p>It might be worth looking at <a href="http://en.wikipedia.org/wiki/XCal" rel="nofollow">xCal</a>, an XML-compliant representation of the <a href="http://en.wikipedia.org/wiki/ICalendar" rel="nofollow">iCalendar</a> standard, for some potentially well-thought-out ideas.</p>
http://stackoverflow.com/questions/209126/good-javascript-ide-with-jquery-support/209136#2091361Answer by Joe Lencioni for Good JavaScript IDE with JQuery support ?Joe Lencioni2008-10-16T15:48:17Z2008-10-16T15:48:17Z<p>I'm not sure if it fulfills all of your desires, but I believe there is a <a href="http://macromates.com/svn/Bundles/trunk/Bundles/JavaScript%20jQuery.tmbundle/" rel="nofollow">jQuery bundle</a> for <a href="http://macromates.com/" rel="nofollow">TextMate</a>.</p>
http://stackoverflow.com/questions/200691/how-to-use-special-chars-in-java-eclipse/200708#2007088Answer by Joe Lencioni for How to use Special Chars in Java/EclipseJoe Lencioni2008-10-14T10:49:01Z2008-10-14T21:05:17Z<p>The problem is that the characters you are using cannot be represented in the encoding you have the file set to (Cp1252). The way I see it, you essentially have two options:</p>
<p>Option 1. <strong>Change the encoding.</strong> <a href="http://publib.boulder.ibm.com/infocenter/eruinf/v2r1m1/index.jsp?topic=/com.ibm.iru.doc/concepts/cirerwp.htm" rel="nofollow">According to IBM</a>, you should set the encoding to UTF-8. I believe this would solve your problem.</p>
<blockquote>
<ul>
<li>Set the global text file encoding preference Workbench > Editors to "UTF-8".</li>
<li>If an encoding other than UTF-8 is required, set the encoding on the individual file rather than using the global preference setting. To do this use the File > Properties > Info menu selection to set the encoding on an individual file.</li>
</ul>
</blockquote>
<p>Option 2. <strong>Remove the characters which are not supported by the "Cp1252" character encoding.</strong> You can replace the unsupported characters with <a href="http://en.wikibooks.org/wiki/Java_Programming/Syntax/Unicode_Escape_Sequences" rel="nofollow">Unicode escape sequences</a> (\uxxxx). While this would allow you to save your file, it is not necessarily the best solution.</p>
<p>For the characters you specified in your question here are the Unicode escape sequences:</p>
<pre><code>♥ \u2665
♦ \u2666
♣ \u2663
♠ \u2660
</code></pre>
http://stackoverflow.com/questions/192538/in-the-hcalendar-microformat-what-markup-is-allowed-in-a-description1In the hCalendar microformat, what markup is allowed in a description?Joe Lencioni2008-10-10T18:22:54Z2008-10-11T12:15:34Z
<p>I am working on a calendar application that outputs a list of events in <a href="http://microformats.org/wiki/hcalendar" rel="nofollow">hCalendar format</a>. This includes an element that has a class of "<code>description</code>" which should be used for the event's description. My question is, <strong>what markup is allowed in my hCalendar event's description?</strong></p>
<p>I found one example on the hCalendar website that showed a description with <code><br /></code> tags in it, but every other example was brief and had no additional markup in the description.</p>
http://stackoverflow.com/questions/192618/what-would-take-a-developer-from-simply-keeping-abreast-of-technologies-to-the/192647#1926473Answer by Joe Lencioni for What would take a developer from simply 'keeping abreast of technologies' to the next level?Joe Lencioni2008-10-10T18:55:44Z2008-10-10T18:55:44Z<p>I guess it all sorta depends on your perspective. If "next level" isn't simply to become a better programmer, maybe "next level" would be one or all of these:</p>
<ul>
<li>Getting more money</li>
<li>Getting more respect</li>
<li>Getting more attention</li>
</ul>
<p>If these are your goals, then maybe you could:</p>
<ul>
<li>Write original and useful applications</li>
<li>Earn more degrees or certifications</li>
<li>Make a substantial contribution to an established project</li>
</ul>
<p>In the end, getting to the "next level" is probably going to be hard work.</p>
http://stackoverflow.com/questions/125262/is-there-a-way-to-validate-hatom-microformat/192572#1925723Answer by Joe Lencioni for Is there a way to validate hAtom microformat?Joe Lencioni2008-10-10T18:33:55Z2008-10-10T18:33:55Z<p>How about <a href="http://microformatique.com/optimus/" rel="nofollow">Optimus</a>?</p>
<p>Otherwise, you can slow-validate it by adding it to the list of <a href="http://microformats.org/wiki/hatom-examples-in-wild" rel="nofollow">hAtom examples in the wild</a>. Occasionally someone will go through them and move the bad ones to the list of "Examples with some problems."</p>
http://stackoverflow.com/questions/192537/where-can-i-find-a-good-desktop-favicon-ico-editor/192557#1925572Answer by Joe Lencioni for Where can I find a good desktop favicon.ico editor?Joe Lencioni2008-10-10T18:28:51Z2008-10-10T18:28:51Z<p>If you are not worried about Internet Explorer, you can just use any old PNG file:</p>
<pre><code><link rel="icon" type="image/png" href="/path/image.png" />
</code></pre>
http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190899#19089930Answer by Joe Lencioni for Order of tags in <head></head>Joe Lencioni2008-10-10T11:28:26Z2008-10-10T15:09:20Z<p><strong>Optimization</strong></p>
<p>According to the folks over at Yahoo! you should <a href="http://developer.yahoo.com/performance/rules.html#css_top" rel="nofollow">put CSS at the top</a> and <a href="http://developer.yahoo.com/performance/rules.html#js_bottom" rel="nofollow">scripts at the bottom</a> because scripts block parallel downloads. But that is mostly a matter of optimization and is not critical for the page actually working. <a href="http://stackoverflow.com/users/20980/joeri-sebrechts">Joeri Sebrechts</a> pointed out that <a href="http://stevesouders.com/cuzillion/" rel="nofollow">Cuzillion</a> is a great way to test this and see the speed improvement for yourself.</p>
<p><strong>Multiple Stylesheets</strong></p>
<p>If you are linking multiple stylesheets, the order they are linked may affect how your pages are styled depending on the <a href="http://www.stuffandnonsense.co.uk/archives/css_specificity_wars.html" rel="nofollow">specificity of your selectors</a>. In other words, if you have two stylesheets that define the same selector in two different ways, the latter will take precedence. For example:</p>
<p>Stylesheet 1:</p>
<pre><code>h1 { color: #f00; }
</code></pre>
<p>Stylesheet 2:</p>
<pre><code>h1 { color: #00f; }
</code></pre>
<p>In this example, <code>h1</code> elements will have the color <code>#00f</code> because it was defined last with the same specificity:</p>
<p><strong>Multiple Scripts</strong></p>
<p>If you are using multiple scripts, the order they are used may be important if one of the scripts depends on something in another script. In this case, if the scripts are linked in the wrong order, some of your scripts may throw errors or not work as expected. This, however, is highly dependent on what scripts you are using.</p>
http://stackoverflow.com/questions/188789/how-to-perform-seam-carving-on-an-image-using-phps-gd-library2How to perform seam carving on an image using PHP's GD library?Joe Lencioni2008-10-09T19:22:09Z2008-10-10T07:28:38Z
<p>I am working on a project that resizes images using <a href="http://us.php.net/gd" rel="nofollow">PHP's GD</a> library. I would like to be able to add the option to use <a href="http://en.wikipedia.org/wiki/Seam_carving" rel="nofollow">seam carving</a> to resize images but don't want to require something like <a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a> (which can do seam carving with <a href="http://www.imagemagick.org/Usage/resize/#liquid-rescale" rel="nofollow">its liquid rescale feature</a>) to accomplish this.</p>
<p>Since there are no built-in seam carving functions in GD, <strong>is there a way to perform seam carving on an image using PHP's GD library</strong> or other built-in PHP functions? Alternatively, do you know if seam carving will eventually be baked into GD?</p>
http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/189683#1896833Answer by Joe Lencioni for Reading/Writing a MS Word file in PHPJoe Lencioni2008-10-10T00:23:47Z2008-10-10T00:23:47Z<p>I don't know about reading native Word documents in PHP, but if you want to write a Word document in PHP, <a href="http://en.wikipedia.org/wiki/Microsoft_Office_XML_formats#Word_XML_Format_example" rel="nofollow">WordprocessingML (aka WordML)</a> might be a good solution. All you have to do is create an XML document in the correct format. I believe Word 2003 and 2007 both support WordML.</p>
http://stackoverflow.com/questions/189075/as-a-web-designer-web-developer-conferences-which-ones-do-you-suggest/189670#1896702Answer by Joe Lencioni for As a web designer/web developer, conferences... which ones do you suggest?Joe Lencioni2008-10-10T00:17:04Z2008-10-10T00:17:04Z<p><a href="http://aneventapart.com/" rel="nofollow">An Event Apart</a></p>
<p><a href="http://sxsw.com/interactive" rel="nofollow">SXSW Interactive</a></p>
http://stackoverflow.com/questions/188442/whats-a-good-ajax-autocomplete-plugin-for-jquery/189051#18905111Answer by Joe Lencioni for What's a good AJAX Autocomplete Plugin for jQuery?Joe Lencioni2008-10-09T20:21:54Z2008-10-09T20:29:50Z<p>I was recently on a similar mission and I eventually settled with <a href="http://docs.jquery.com/UI/Autocomplete" rel="nofollow">jQuery UI's autocomplete</a>. I am currently using jQuery UI 1.6rc2 and the autocomplete plugin is very well implemented and customizable. Here's an example:</p>
<pre><code><script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="ui.core.js"></script>
<script type="text/javascript" src="ui.autocomplete.js"></script>
<script type="text/javascript">
$('#search').autocomplete({
url: 'suggestions.php',
width: 300,
max: 10,
delay: 100,
cacheLength: 1,
scroll: false,
highlight: false
});
</script>
</code></pre>
http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/141831#1418311Answer by Joe Lencioni for What is the strangest/weirdest program you've ever made?Joe Lencioni2008-09-26T20:39:02Z2008-10-06T17:12:34Z<p>I wrote a program in Scheme that translates normal English text into <a href="http://en.wikipedia.org/wiki/Language_game#List_of_common_language_games" rel="nofollow">egg language</a>. I just put it up <a href="http://code.google.com/p/egglanguagetranslator/" rel="nofollow">on Google Code</a>.</p>
http://stackoverflow.com/questions/154502/color-differences-between-images-and-html/154517#1545171Answer by Joe Lencioni for Color differences between images and htmlJoe Lencioni2008-09-30T19:17:22Z2008-09-30T19:17:22Z<p>It might be a color profile issue.</p>
<p>For instance, if the image is a JPEG and has a color profile and your browser doesn't support displaying images in the color profiles that they specify, the colors of the image itself will render differently in your browser. In this situation, if you checked the color of the image in Photoshop (color profile aware) and then applied that color in your CSS and viewed the page in a browser that is not color profile aware, it would look different.</p>
http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element/154268#1542683Answer by Joe Lencioni for How to detect a click outside an element?Joe Lencioni2008-09-30T18:13:39Z2008-09-30T18:13:39Z<p>I have an application that works similarly to Eran's example, except I attach the click event to the body when I open the menu... Kinda like this:</p>
<pre><code>$('#menucontainer').click(function(event) {
$('body').one(function() {
// Hide the menus
});
event.stopPropagation();
});
</code></pre>
<p>More information on <a href="http://docs.jquery.com/Events/one" rel="nofollow">jQuery's <code>one()</code> function</a></p>
http://stackoverflow.com/questions/149844/how-do-you-write-valid-xhtml-1-0-strict-code-when-you-are-using-javascript-to-fil/150262#1502622Answer by Joe Lencioni for How do you write Valid XHTML 1.0 Strict code when you are using javascript to fill an element that requires a child?Joe Lencioni2008-09-29T19:27:05Z2008-09-29T19:46:38Z<p>The solutions might be different for each badge. In Twitter's case, you can just write your own callback function. Here's an example based on their badge code:</p>
<pre><code><div id="twitter_div">
<h2><a href="http://twitter.com/stopsineman">@Twitter</a></h2>
<div id="twitter_update_list"></div>
</div>
<script type="text/javascript">
function updateTwitterCallback(obj)
{
var twitters = obj;
var statusHTML = "";
var username = "";
for (var i = 0; i < twitters.length; i++)
{
username = twitters[i].user.screen_name;
statusHTML += ('<li><span>' + twitters[i].text + '</span> <a style="font-size:85%" href="http://twitter.com/' + username + '/statuses/' + twitters[i].id + '">' + relative_time(twitters[i].created_at) + '</a></li>');
}
document.getElementById('twitter_update_list').innerHTML = '<ul>' + statusHTML + '</ul>';
}
</script>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/stopsineman.json?callback=updateTwitterCallback&amp;count=1"></script>
</code></pre>
http://stackoverflow.com/questions/150042/what-regex-can-i-use-to-split-a-string-into-whole-words-but-only-if-they-start-wi/150088#1500881Answer by Joe Lencioni for What regEx can I use to Split a string into whole words but only if they start with # ?Joe Lencioni2008-09-29T18:47:12Z2008-09-29T18:47:12Z<p>Using PHP's <a href="http://us2.php.net/manual/en/function.preg-match-all.php" rel="nofollow"><code>preg_match_all()</code></a>:</p>
<pre><code>$text = 'Test #string testing #my test #text.';
preg_match_all('/#[\S]+/', $text, $matches);
echo '<pre>';
print_r($matches[0]);
echo '</pre>';
</code></pre>
<p>Outputs:</p>
<pre>
Array
(
[0] => #string
[1] => #my
[2] => #text.
)
</pre>
http://stackoverflow.com/questions/209103/what-is-the-best-web-based-file-explorer/209828#209828Comment by Joe Lencioni on What is the best web-based File Explorer?Joe Lencioni2009-04-21T20:10:42Z2009-04-21T20:10:42ZIt looks like development on Relay is dead--2006http://stackoverflow.com/questions/265218/google-friendly-affiliate-code/265226#265226Comment by Joe Lencioni on Google friendly affiliate codeJoe Lencioni2008-11-05T14:27:56Z2008-11-05T14:27:56ZWhile I'm not sure what it would be in C#, you would want to send a 301 Permanent Redirect.http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/141504#141504Comment by Joe Lencioni on What is the best way to parse a time into a Date object from user input in Javascript?Joe Lencioni2008-10-31T14:11:37Z2008-10-31T14:11:37ZI also noticed that parseInt was choking on strings like ':30' or ':00' so I changed the regex to capture the minutes without the colonhttp://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/141504#141504Comment by Joe Lencioni on What is the best way to parse a time into a Date object from user input in Javascript?Joe Lencioni2008-10-29T21:38:22Z2008-10-29T21:38:22ZAfter working with this, I noticed that it doesn't properly parse variants of the time "12 pm" because it adds 12 to the hours number. To fix, I changed the d.setHours line to read: d.setHours( parseInt(time[1]) + ( ( parseInt(time[1]) < 12 && time[3] ) ? 12 : 0) );http://stackoverflow.com/questions/227950/programatic-accent-reduction-in-javascript-aka-text-normalization-or-unaccentingComment by Joe Lencioni on Programatic Accent Reduction in JavaScript (aka text normalization or unaccenting)Joe Lencioni2008-10-23T02:26:21Z2008-10-23T02:26:21ZGood question. Something like this would be useful in javascript autocompletion scripts, like jQuery UI's autocomplete plugin: <a href="http://docs.jquery.com/UI/Autocomplete" rel="nofollow">docs.jquery.com/UI/Autocomplete</a>http://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph/227451#227451Comment by Joe Lencioni on What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?Joe Lencioni2008-10-22T20:39:58Z2008-10-22T20:39:58ZAlso, you recommend storing it this way, but can you expand on why you recommend it?http://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph/227451#227451Comment by Joe Lencioni on What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?Joe Lencioni2008-10-22T20:38:47Z2008-10-22T20:38:47ZInserting is easy, it's using the data after selecting it that is more of a nuisance.http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/223865#223865Comment by Joe Lencioni on In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joe Lencioni2008-10-22T13:14:52Z2008-10-22T13:14:52ZDang, I guess you're right. :(http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/223005#223005Comment by Joe Lencioni on In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joe Lencioni2008-10-21T19:00:08Z2008-10-21T19:00:08ZUnfortunately, that won't work because eval() evaluates PHP code whereas accessing a page will only evaluate the PHP code if it is in a PHP code block (e.g. between <?php and ?>)http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/222944#222944Comment by Joe Lencioni on In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joe Lencioni2008-10-21T18:46:53Z2008-10-21T18:46:53ZThat's kinda what I was afraid of :( Thanks!http://stackoverflow.com/questions/216542/how-do-i-uniquely-identify-computers-visiting-my-web-site/216570#216570Comment by Joe Lencioni on How do I uniquely identify computers visiting my web site?Joe Lencioni2008-10-19T15:53:49Z2008-10-19T15:53:49ZThis would work if everybody had a different IP address.http://stackoverflow.com/questions/92257/programmers-food/92360#92360Comment by Joe Lencioni on Programmer's foodJoe Lencioni2008-10-16T20:42:59Z2008-10-16T20:42:59ZTake a apple, cut it in half and then scoop out the seeds with a melon baller (<a href="http://is.gd/4cXf" rel="nofollow">is.gd/4cXf</a>). Then fill the holes with peanut butter.http://stackoverflow.com/questions/210080/regex-greedy-issue/210108#210108Comment by Joe Lencioni on Regex greedy issueJoe Lencioni2008-10-16T20:19:37Z2008-10-16T20:19:37ZThis regex does not work for me. Owen's does: ((\S+?)=)http://stackoverflow.com/questions/209237/using-htmlentities-in-a-string/209246#209246Comment by Joe Lencioni on Using htmlentities in a stringJoe Lencioni2008-10-16T16:10:12Z2008-10-16T16:10:12Zshould be: value=\"" . htmlentities($row[telephone]) . "\"http://stackoverflow.com/questions/173332/how-should-i-express-fractions-like-15-16ths-in-html/173355#173355Comment by Joe Lencioni on How should I express fractions like 15/16ths in HTML?Joe Lencioni2008-10-13T16:23:39Z2008-10-13T16:23:39Z@Nouveau: What would you suggest as a semantic alternative?