User Chad Birch - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:30:24Z http://stackoverflow.com/feeds/user/41665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/865188/manipulating-multi-track-ogg-files-programatically 0 Manipulating multi-track ogg files programatically Chad Birch 2009-05-14T19:21:55Z 2009-11-10T02:19:58Z <p>I'm planning to create a program for manipulating multi-track OGG files, but I don't have any experience with the relevant libraries, so I'm looking for recommendations about which language/library to use for this. I don't really have any preference for the language, I'll happily code it in C, C#, Python, whatever makes things the easiest (or even possible). Perhaps it's even a possibility to automate Audacity somehow?</p> <p>In terms of requirements, I'm not looking for anything particularly fancy. It will probably be a command-line program, I don't need to be able to play the audio, draw image representations of the waveforms, etc. The program will basically be used as a converter, but I need to do some processing before outputting. That is, I need the ability to programatically remove some tracks, set panning per-track, change track volumes, etc. Nothing too complex, just some basic processing, and then output the result in either MP3 or a format easily converted to MP3, such as WAV.</p> <p>Any suggestions or general information would be appreciated, thanks.</p> http://stackoverflow.com/questions/587481/developer-documentation-sharepoint-document-management-vs-screwturn-wiki 9 Developer Documentation: Sharepoint Document Management vs. ScrewTurn Wiki Chad Birch 2009-02-25T19:35:41Z 2009-08-06T04:27:38Z <h3>Background Info</h3> <p>I am working on setting up a method for my company's developers to share documentation and information about our various internal systems. This would range from information that would be useful for bringing a new employee up to speed, to descriptions of common problems users have with the systems and their resolutions.</p> <p>This seemed like an ideal job for a wiki to me, and since our company only has the ability to host ASP.NET applications, I set about researching the available ASP.NET wikis. <a href="http://www.screwturn.eu/" rel="nofollow">ScrewTurn Wiki</a> seemed to be the most appropriate one, it's very full-featured and there are several plugins available that would be useful for my situation, including syntax highlighting and AD integration.</p> <p>However, upon starting the process to have ScrewTurn deployed to our intranet, it was suddenly remembered that, hey, Sharepoint 2007 has a wiki, and since we already have Sharepoint set up, couldn't we just use that? I did a bit of evaluation of the Sharepoint "wiki" (in quotes because it barely qualifies), and was able to demonstrate that it wouldn't be suitable due to its many deficiencies, which I won't list here.</p> <p>Now at this point, it's been suggested that perhaps I don't need a wiki at all, couldn't we just do everything in Word documents and use Sharepoint's document management functionality instead?</p> <h3>The actual question</h3> <p>So what I'm looking for is some additional ammunition, preferably from people with experience. What are examples of things that will be difficult or impossible with Sharepoint in the context of internal developer documentation? What is a wiki better at? Hey, I'm open-minded, what is Sharepoint better at?</p> <p><strong>What will make it worthwhile to deploy a wiki instead of simply using what we already have?</strong></p> http://stackoverflow.com/questions/715188/share-your-conky-tips-scripts-conkyrc 0 Share your conky tips / scripts / .conkyrc Chad Birch 2009-04-03T18:54:45Z 2009-07-17T12:05:15Z <p>I've just started tinkering with <a href="http://conky.sourceforge.net/" rel="nofollow">conky</a>, and I'm hoping the StackOverflow crowd can share some of the cool things they've done with this tool.</p> <p>Scripts and .conkyrc files specifically geared towards developers would be especially good to see. Some good examples of developer-centric functions would be repository-monitors or heck, even something that monitors StackOverflow.</p> <p>Screenshots of what the functionality actually looks like would be appreciated as well.</p> http://stackoverflow.com/questions/485174/programming-fonts/485405#485405 11 Answer by Chad Birch for Programming Fonts Chad Birch 2009-01-27T21:40:23Z 2009-06-19T13:39:17Z <p><a href="http://damieng.com/blog/2007/11/14/droid-font-family-courtesy-of-google-ascender" rel="nofollow"><strong>Droid Sans Mono</strong></a> </p> <p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/DroidSansMonoSpecimen.svg/396px-DroidSansMonoSpecimen.svg.png" alt="Picture" /></p> http://stackoverflow.com/questions/921766/database-design-for-conditional-actions 1 Database design for conditional actions Chad Birch 2009-05-28T16:13:54Z 2009-05-28T16:46:38Z <p>I'm working on something of a wizard-type application to allow users to build simple "scripts" that basically perform actions based on certain conditions. Scripts that they build will be stored in a database, and modification will be common, so some sort of forward-only text generation is not an option. My program converts this internal database structure to the actual script output I need, so I will just be re-generating the output whenever they modify their script.</p> <p>I'm looking for some advice about a good database structure to be able to store this information in. I have one working at the moment, but I'm just curious if I missed anything obvious that would make it a little cleaner. Any suggestions are appreciated.</p> <p>To give some more detail, here's an genericized example of the type of "script" a user can create through picking conditions and actions in the GUI:</p> <pre><code>if ($variableA == 100 &amp;&amp; $variableB &gt; 25 &amp;&amp; $variableC &lt; 10) { performAction(); performAnotherAction(); if ($variableC == 0) { performYetAnotherAction(); } else if ($variableC == 1 || $variableC == 2) { performEvenMoreActions(); } } else { performDefaultAction(); } </code></pre> <p>Some notes about what is and isn't possible, just so that it's clear:</p> <ul> <li>"if" conditionals can have any number of "else if" conditionals attached, as well as an optional "else".</li> <li>each conditional can have any number of "tests" (<code>$variableA == 100</code>, etc), however every test can be considered to be represented as <code>(&lt;variable&gt;,&lt;operator&gt;,&lt;test value&gt;)</code>, there's no need to worry about more complex conditions.</li> <li>even though each conditional can have any number of tests, they will always be joined by the same boolean operator. That is, if there are multiple tests in a conditional, they are either always joined by <code>&amp;&amp;</code>, or always joined by <code>||</code>, there is no mixing.</li> <li>Conditionals can be nested infinitely, so some sort of hierarchical structure is necessary.</li> <li>Inside conditionals there may be any number of actions, which must be performed in the same sequence they are defined in. Actions can simply be represented as a function name, there's no need to worry about any other "action types".</li> </ul> http://stackoverflow.com/questions/916147/how-to-identify-web-crawlers-of-google-yahoo-msn-by-php/916222#916222 5 Answer by Chad Birch for how to identify web crawlers of google/yahoo/msn by PHP? Chad Birch 2009-05-27T14:55:36Z 2009-05-27T14:55:36Z <p>First of all, I hope you're not trying to do this in order to serve search engine bots different content than your site contains for normal users. If they discover you doing this, your site will get removed from their listings entirely. So long as you understand the risks of it, you can usually find information about what unique user-agent they will use:</p> <ul> <li><a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=80553" rel="nofollow">Verifying Googlebot</a> (use user-agent, reverse DNS if you want to be sure)</li> <li>Yahoo's user agent will contain "Slurp"</li> </ul> <p>However, some people writing (usually poorly-behaved) web scrapers will set their User Agent strings to be the same as "legitimate" crawlers such as Google's. You can catch these by doing lookups on the bot's IP address/hostname to ensure that they actually are coming from Google/Yahoo/etc. Some more info about what to look for in hostname lookups (<a href="http://www.spanishseo.org/how-to-identify-user-agents-and-ip-addresses-for-bot-blocking" rel="nofollow">from this article</a>):</p> <blockquote> <ul> <li>Google crawlers will end with googlebot.com like in crawl-66-249-70-244.googlebot.com.</li> <li>Yahoo crawlers will end with crawl.yahoo.net like in llf520064.crawl.yahoo.net.</li> <li>Live Search crawlers will end with search.msn.com like in msnbot-65-55-104-161.search.msn.com.</li> <li>Ask crawlers will end with ask.com like in crawler4037.ask.com.</li> </ul> </blockquote> http://stackoverflow.com/questions/884135/how-can-i-get-this-query-to-return-0-instead-of-null/884149#884149 8 Answer by Chad Birch for How can I get this query to return 0 instead of null? Chad Birch 2009-05-19T17:48:01Z 2009-05-19T18:41:16Z <p>(You didn't state your sql engine, so I'm going to link to the MySQL documentation).</p> <p>This is pretty much exactly what the <a href="http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html#function_coalesce" rel="nofollow"><code>COALESCE()</code></a> function is meant for. You can feed it a list, and it'll return the first non-null value in the list. You would use this in your query as follows:</p> <pre><code>SELECT COALESCE((SUM(tr.AmountPaid) - SUM(tr.AmountCharged)), 0) AS TenantBalance, te.ID FROM tblTenant AS te LEFT JOIN tblTransaction AS tr ON (tr.TenantID = te.ID) GROUP BY te.ID; </code></pre> <p>That way, if the <code>SUM()</code> result would be NULL, it's replaced with zero.</p> <p><strong>Edited</strong>: I rewrote the query using a LEFT JOIN as well as the <code>COALESCE()</code>, I think this is the key of what you were missing originally. If you only select from the Transactions table, there is no way to get information about things <strong>not</strong> in the table. However, by using a left join from the Tenants table, you should get a row for every existing tenant.</p> http://stackoverflow.com/questions/883984/rating-stars/884021#884021 0 Answer by Chad Birch for Rating Stars Chad Birch 2009-05-19T17:17:19Z 2009-05-19T17:17:19Z <p>The <a href="http://www.pinvoke.com/" rel="nofollow">free Fugue icon set</a> includes some rating stars, at size 16x16. If you look at the <a href="http://fugue-icons.googlecode.com/svn/trunk/all.png" rel="nofollow">preview image</a>, they're under star, star-half, and star-empty.</p> http://stackoverflow.com/questions/883602/does-anyone-have-a-script-to-automatically-generate-image-tags-from-a-directory-o/883631#883631 0 Answer by Chad Birch for Does anyone have a script to automatically generate image tags from a directory of images? Chad Birch 2009-05-19T16:01:31Z 2009-05-19T16:01:31Z <p>If Photoshop does a decent job of this, it may be easiest to just process the output from there, using a regex or something to fix the problems in it. This would probably be simpler than trying to reimplement that functionality from scratch.</p> <p>If you can post a sample of Photoshop's HTML output, I can supply a regex search/replace that'd convert it to what you're looking for.</p> http://stackoverflow.com/questions/883365/count-with-pdo/883523#883523 1 Answer by Chad Birch for Count with PDO Chad Birch 2009-05-19T15:39:51Z 2009-05-19T15:39:51Z <p>As I wrote previously in <a href="http://stackoverflow.com/questions/769767/pdos-rowcount-not-working-on-php-5-2-6/770045#770045">an answer to a similar question</a>, the only reason <code>mysql_num_rows()</code> worked is because it was internally fetching all the rows to give you that information, even if it didn't seem like it to you.</p> <p>So in PDO, your options are:</p> <ol> <li>Use MySQL's <a href="http://dev.mysql.com/doc/refman/5.1/en/information-functions.html#function_found-rows" rel="nofollow"><code>FOUND_ROWS()</code></a> function.</li> <li>Use PDO's <a href="http://php.net/manual/en/pdostatement.fetchall.php" rel="nofollow"><code>fetch_all()</code></a> function to fetch all the rows into an array, then use <code>count()</code> on it.</li> <li>Do an extra query to <code>SELECT COUNT(*)</code>, as karim79 suggested.</li> </ol> http://stackoverflow.com/questions/883371/effective-password-encryption/883483#883483 31 Answer by Chad Birch for Effective Password Encryption Chad Birch 2009-05-19T15:32:24Z 2009-05-19T15:32:24Z <p>Hmm, I think you're just missing some basic concepts related to how hashing works. Let me try to explain briefly. I'm going to start out simple and elaborate on my answer afterwards, so please read through the whole thing, the information at the beginning will not be secure.</p> <p>What you want to use to store a password is a function known as a "one-way hash". What this means is that, for any input that you feed the function, the same input will always give the same result. However, there is no <strong>mathematical process</strong> that lets you take that result string and figure out what the original input was.</p> <p>Let's take MD5 as an example of a hashing function. If I run MD5 on the string "password", I will <strong>always</strong> get the result "5f4dcc3b5aa765d61d8327deb882cf99". However, if you were to simply give someone that result string ("5f4d..."), it is impossible for them to apply some mathematical process to "reverse" the function and figure out that it came from "password".</p> <p>What this means is that when a user first sets up their password, you apply a hashing function to it, and store the result. So instead of storing "password", you store "5f4dcc3b5aa765d61d8327deb882cf99". Then, when that user tries to log in, you take whatever they typed into the password box on the login form, and apply the same hashing function. If you get the same result as what's stored in the database, they must have entered the same password as they originally chose, even though you have no idea what that original password actually was.</p> <p>Now, even though it's impossible to "reverse" a hash function, the fact that the same input always gives the same output means that someone can simply build up a big database of input/output pairs, and use that to effectively reverse hashes. This is called a "rainbow table". There are many of these available on the internet, so it's not safe to use simple hashing, just in case your database ever gets compromised. That is, even though it is <strong>mathematically</strong> impossible to take "5f4dcc3b5aa765d61d8327deb882cf99" and figure out that it came from running MD5 on "password", it's very easy to determine that in practice. All you have to do is run every word in a dictionary through MD5 and store the results, and you can easily reverse simple passwords.</p> <p>This is where "salting" comes in. If you generate a random "salt" string for every user and attach that to their password, it effectively ruins rainbow tables. For example, let's say that the same user above registers with their password as "password". We generate a random 8-character salt to attach to their password before hashing it. Let's say that it's "A4BR82QX". Now, instead of hashing "password", we hash "A4BR82QXpassword". This gives the result "87a4ba071c8bcb5efe457e6c4e6c4490", so we store that in the database, along with the salt string. Then when this user tries to log in, instead of directly hashing and comparing the password they entered in the login form, we take what they entered, put "A4BR82QX" in front of it again, and hash that. Just as before, if it matches the stored hash, we know that they entered the right password.</p> <p>Effectively what you've done here is make it so that pre-generated rainbow tables are useless for trying to crack the passwords in your database. Since the salt is random, and each user has a different one (generally), the attacker will have to re-generate their rainbow tables for <strong>every individual user</strong>. This is much more difficult.</p> <p>However, there's one more problem, and that's that generating MD5 hashes is <strong>fast</strong>. Even though salting like this requires them to re-generate rainbow tables, because of how fast MD5 is, some decently-complete rainbow tables can be created very quickly. So if they just want to crack a high-value account on your site, it's not really a big deal for them to spend some time generating rainbow tables to try and reverse that password. If the high-value account's original password wasn't secure enough by itself, it'll still be found very quickly, even with salting.</p> <p>So the next step is to find a <strong>slow</strong> hash function, and use this instead of a fast one like MD5. Having your site take an extra couple of seconds to check a login isn't a big deal at all. But when someone is trying to generate rainbow tables to crack a password, having each entry take several seconds is an absolute killer. I've written enough here, so I'll just finish by linking to this article, which goes into plenty of detail about picking a good, slow hashing function: <a href="http://www.matasano.com/log/958/enough-with-the-rainbow-tables-what-you-need-to-know-about-secure-password-schemes/" rel="nofollow">Enough With The Rainbow Tables: What You Need To Know About Secure Password Schemes</a>.</p> <p>That was a pretty huge answer, if any of that's unclear, please let me know in a comment and I'll edit to elaborate.</p> http://stackoverflow.com/questions/869456/re-sort-orders-to-improve-warehouse-efficiency/869900#869900 1 Answer by Chad Birch for Re-sort orders to improve warehouse efficiency Chad Birch 2009-05-15T17:20:43Z 2009-05-15T18:17:50Z <p>As I wrote in the comments on the question, I think you're just looking at the problem the wrong way.</p> <p>Your description implies that they can go to all the locations before they have to "build"/finish the orders. The problem is that right now, things are grouped in terms of orders, so they try to fill Order #1 by going to all the locations that it requires, then they start looking at Order #2, etc.</p> <p>Instead, you need to give them aggregated information in terms of the locations, and what they need to pick up at each one. Then they just go to all of the locations, in any order, and pick up everything they need from each one. When they've been to all locations, they go through the list and fill the orders from their big pile of stuff.</p> <p>Let me know if I've made some incorrect assumptions here, and I'll try to come up with a different approach.</p> <p><hr /></p> <p>Just to try and clear up the difference, here's the employee's motion in each method (the first two are not definite, because they could have gone to locations in different orders, I just followed the exact order you listed in, as an employee probably would).</p> <p><strong>Original sort by date (12 moves):</strong></p> <pre><code>E &gt; Q &gt; Z &gt; B &gt; Y &gt; N &gt; B &gt; A &gt; E &gt; A &gt; B &gt; Q </code></pre> <p><strong>Your re-sorted version (10 moves):</strong></p> <pre><code>E &gt; Q &gt; A &gt; B &gt; Z &gt; B &gt; Y &gt; N &gt; A &gt; E </code></pre> <p><strong>By aggregating by location (7 moves):</strong></p> <pre><code>A &gt; B &gt; E &gt; N &gt; Q &gt; Y &gt; Z </code></pre> <p>To further stress the difference, if I assume that all your locations are equidistant from the previous one (so moving from A to B has a cost of 1), and that you have one for each letter. Also assuming that you both want to start and end at location 0, you have:</p> <p><strong>Original sort by date:</strong> amount of movement = 138<br /> <strong>Your re-sorted version:</strong> amount of movement = 138 <em>(that's kind of surprising)</em><br /> <strong>By aggregating by location:</strong> amount of movement = 52</p> http://stackoverflow.com/questions/869233/php-subscriptions-preventing-sharing/869270#869270 0 Answer by Chad Birch for PHP Subscriptions - Preventing Sharing Chad Birch 2009-05-15T15:14:02Z 2009-05-15T15:14:02Z <p>It really depends how worried you are about locking out legitimate users incorrectly.</p> <p>You can keep track of the IP addresses that they log in using, and some other identifiers like their user-agent string, and then look for discrepancies. So if someone normally logs in from an IP owned by Verizon using Firefox, and then suddenly they log in from one in Brazil using Internet Explorer, that might be someone sharing their login details. But, it also might be the same user who just took a trip to Brazil and is using their uncle's computer. How are you going to tell?</p> http://stackoverflow.com/questions/867084/import-update-existing-rows-in-postgresql/867103#867103 0 Answer by Chad Birch for Import/update existing rows in PostgreSQL Chad Birch 2009-05-15T05:35:39Z 2009-05-15T05:35:39Z <p>Have you considered running postgresql locally?</p> <ol> <li>Dump server data</li> <li>Import locally</li> <li>Turn on query logging</li> <li>Make updates</li> <li>Take query log and run on server</li> <li>Clear query log</li> </ol> <p>Or am I misunderstanding what you're trying to do?</p> http://stackoverflow.com/questions/866987/using-javascript-to-loop-dynamically-created-controls-with-php/867032#867032 1 Answer by Chad Birch for Using javascript to loop dynamically created controls with php Chad Birch 2009-05-15T04:57:52Z 2009-05-15T05:24:38Z <p>It may be because your HTML you are generating is invalid. You also shouldn't be explicitly calling the <code>__get()</code> function, but that's an unrelated issue most likely.</p> <p>Something like:</p> <pre><code>&lt;input type="radio" ...&gt;Label Text&lt;/input&gt; </code></pre> <p>is not the correct way to define a radio button.</p> <p>Try this code:</p> <pre><code>for($j = 0; $j&lt;count($answerList); $j++) { echo '&lt;br /&gt;&lt;input type="radio" name="group'.$i.'" id="radioButtonAnswer'.$answerList[$j]-&gt;AnswerId.'" value="'.$answerList[$j]-&gt;AnswerId.'" /&gt;'; echo '&lt;label for="radioButtonAnswer'.$answerList[$j]-&gt;AnswerId.'"&gt;'.$answerList[$j]-&gt;AnswerText.'&lt;/label&gt;'; } </code></pre> <p><hr /></p> <p><strong>Edited to add:</strong> Ah, now I see. You're using <code>document.writeln()</code>. That function overwrites the content of the page.</p> <p>So the first time into the loop, the element does exist, and it does a <code>document.writeln()</code> call, which writes "true" to the page. <strong>This overwrites everything that was on the page before</strong> (didn't you notice how when the page loads, it <strong>only</strong> has the output of the javascript?). The next time through the loop, it tries to look for the radio button again, but it's been erased and replaced with the javascript output. Now it no longer exists.</p> http://stackoverflow.com/questions/866943/mysql-vs-sqlite-unique-indexes/866968#866968 3 Answer by Chad Birch for MySQL vs SQLite + UNIQUE Indexes Chad Birch 2009-05-15T04:22:19Z 2009-05-15T04:22:19Z <p>A few questions in there:</p> <ol> <li>In terms of disk I/O limits, I wouldn't imagine that the database engine makes a lot of difference. There might be a few small things, but I think it's mostly just whether the database can read/write data as fast as your application wants it to. Since you'd be using the same amount of data with either MySQL or SQLite, I'd think it won't change much.</li> <li>SQLite does support triggers: <a href="http://sqlite.org/lang_createtrigger.html" rel="nofollow">CREATE TRIGGER Syntax</a></li> <li>SQLite does support UNIQUE constraints: <a href="http://sqlite.org/syntaxdiagrams.html#column-constraint" rel="nofollow">column constraint definition syntax</a>.</li> <li>To manage my SQLite databases, I use the Firefox Add-on <a href="https://addons.mozilla.org/en-US/firefox/addon/5817" rel="nofollow">SQLite Manager</a>. It's quite good, does everything I want it to.</li> </ol> http://stackoverflow.com/questions/866629/fastest-serialize-data-format-form-php-reading/866643#866643 3 Answer by Chad Birch for Fastest serialize data format form PHP reading Chad Birch 2009-05-15T01:17:58Z 2009-05-15T01:17:58Z <p>PHP's own serialized format will probably be the fastest. <a href="http://php.net/manual/en/function.unserialize.php" rel="nofollow"><code>unserialize()</code></a> is the function PHP uses to convert this data back to its own types. <a href="http://objectmix.com/php/362009-specification-serialize.html#post1335166" rel="nofollow">This post</a> has various links to other languages' implementations of PHP's serialized format, I'm sure you could convert one of those easily.</p> http://stackoverflow.com/questions/866589/array-merge-replace/866615#866615 9 Answer by Chad Birch for Array Merge/Replace Chad Birch 2009-05-15T01:04:30Z 2009-05-15T01:04:30Z <p>As I've just recently learned, PHP has an <a href="http://php.net/manual/en/language.operators.array.php" rel="nofollow">array union operator</a> that does exactly this:</p> <pre><code>$result = $a + $b; </code></pre> <p>Where $a is the array with the values that you want to take precedence. (So in your example, that means that the second array is "<code>$a</code>".</p> http://stackoverflow.com/questions/866304/long-term-memorization-techniques-to-become-an-expert-in-the-field/866308#866308 10 Answer by Chad Birch for Long-term memorization techniques to become an expert in the field? Chad Birch 2009-05-14T23:02:12Z 2009-05-14T23:02:12Z <p><strong>My favorite method:</strong></p> <p><a href="http://www.google.com" rel="nofollow">Type it into Google</a></p> <p>I'm being totally serious - why do you need to remember it?</p> http://stackoverflow.com/questions/866219/how-to-protect-a-site-from-api-outages/866264#866264 1 Answer by Chad Birch for How to protect a site from API outages? Chad Birch 2009-05-14T22:48:13Z 2009-05-14T22:53:46Z <p>One possibility for mitigating the problem (will only work if your site is dynamically generated):</p> <p>Set up a cronjob that runs every 10 minutes / hour / whatever, depending how much you care. Have it attempt to download the external file(s) that you are including, one attempt for each external host that you depend on. Have it set a flag in the database that represents whether each individual external host is currently available.</p> <p>When your pages are being generated, check the external-host flags, and print the source attribute either pointing to the external host if it's up, or a local copy if it's down.</p> <p>For bonus points, have the successfully downloaded file from the cronjob become the local copy. Then when one does go down, your local copy represents the most-current version from the external host anyway.</p> http://stackoverflow.com/questions/866185/where-can-i-find-a-tutorial-on-gits-internals/866194#866194 7 Answer by Chad Birch for Where can I find a tutorial on Git's internals? Chad Birch 2009-05-14T22:29:38Z 2009-05-14T22:29:38Z <p>From the sounds of it, this should be exactly what you're looking for: <a href="http://www.eecs.harvard.edu/~cduan/technical/git/" rel="nofollow">Understanding Git Conceptually</a>.</p> http://stackoverflow.com/questions/866144/mysql-when-stored-procedure-parameter-name-is-the-same-as-table-column-name/866178#866178 1 Answer by Chad Birch for MySQL : When stored procedure parameter name is the same as table column name Chad Birch 2009-05-14T22:25:46Z 2009-05-14T22:25:46Z <p>I think that your first example is actually backwards. If you're trying to set the "Name" column to the "Name" input parameter, I believe it should be:</p> <pre><code>UPDATE customers SET `Name` = Name; </code></pre> <p>And for the second example, you can set table aliases the same way that you do in all other statements:</p> <pre><code>UPDATE customers AS c SET c.Name = Name; </code></pre> http://stackoverflow.com/questions/865906/choosing-the-right-design-for-a-website/865936#865936 7 Answer by Chad Birch for Choosing the right design for a website? Chad Birch 2009-05-14T21:36:38Z 2009-05-14T21:36:38Z <p>It's pretty hard to sum up the whole field of UI design in an answer.</p> <p>Make the most common tasks the easiest. Figure out what people will want to do, and make that as intuitive and straightforward as possible. <a href="http://rads.stackoverflow.com/amzn/click/0321344758" rel="nofollow">Don't make them think</a>.</p> <p>Make mockups and prototypes. Watch people try to use them (<strong>watch</strong>, don't help them), and fix things that they found awkward. Your first attempt at a design isn't right, don't be too opposed to throwing it away.</p> <p>There's really so much to this field that it can't be explained to anyone easily. Designing is no less complex than programming, but many programmers seem to look at it as an afterthought for some reason. Try some creative googling for design principles, especially as they apply to the web. Look at sites you consider well-designed and try to figure out <strong>why</strong> they feel that way to you.</p> http://stackoverflow.com/questions/865476/what-does-do-in-php/865805#865805 4 Answer by Chad Birch for What does === do in PHP. Chad Birch 2009-05-14T21:13:40Z 2009-05-14T21:13:40Z <p>The PHP manual has <a href="http://php.net/manual/en/types.comparisons.php" rel="nofollow">a couple of very nice tables</a> ("Loose comparisons with ==" and "Strict comparisons with ===") that show what result == and === will give when comparing various variable types.</p> http://stackoverflow.com/questions/865711/css-inheritance/865761#865761 2 Answer by Chad Birch for CSS inheritance Chad Birch 2009-05-14T21:04:40Z 2009-05-14T21:04:40Z <p>The problem appears to be that the CSS rule is defined to apply to:</p> <pre><code>.x-panel-myheader .x-toolbar </code></pre> <p>That means that it will apply to anything that has a class of "x-toolbar", but <strong>only</strong> if it is contained inside something else that has a class of "x-panel-myheader".</p> <p>Your HTML doesn't show anything with the class "x-panel-myheader", so I'm unable to determine whether this is what's causing your problem or not. If the CSS rule doesn't appear to be working at all, that's probably why. If you just want it to apply to everything with a class of "x-toolbar", change the line to:</p> <pre><code>.x-toolbar { background-color:inherit; border:0px ;} </code></pre> http://stackoverflow.com/questions/865681/code-complete-keyboard-shortcut-in-netbeans-on-mbp/865695#865695 3 Answer by Chad Birch for Code complete keyboard shortcut in NetBeans on MBP Chad Birch 2009-05-14T20:50:41Z 2009-05-14T20:50:41Z <p>That typically represents Ctrl. <code>^M</code> means Ctrl-M, etc.</p> http://stackoverflow.com/questions/865556/how-can-i-determine-what-hosting-provider-hosts-a-site/865567#865567 0 Answer by Chad Birch for How can I determine what hosting provider hosts a site? Chad Birch 2009-05-14T20:29:50Z 2009-05-14T20:29:50Z <p><a href="http://whois.domaintools.com/stackoverflow.com" rel="nofollow">Domaintools</a> can usually give you some pretty good information, under the "Server Data" and using the "Reverse IP" tool (though you have to pay to get full results from that one).</p> http://stackoverflow.com/questions/864489/including-javascript-within-web-pages/864510#864510 1 Answer by Chad Birch for Including Javascript within web pages Chad Birch 2009-05-14T16:57:58Z 2009-05-14T16:57:58Z <p>Why not just include each of the files individually with their own <code>&lt;script&gt;</code> tag? Then everything gets cached individually and all is well. It'll only be a lot of HTTP requests on the first page load. Dynamically building an "include file" every time will probably not be any better for performance.</p> <p>Does the combination of scripts vary heavily? If you really want to reduce HTTP requests and you're always including the same 10 files, just put them all together into one long file.</p> http://stackoverflow.com/questions/864316/how-to-pipe-list-of-files-returned-by-find-command-to-cat-to-view-all-the-files/864335#864335 0 Answer by Chad Birch for How to pipe list of files returned by find command to cat to view all the files Chad Birch 2009-05-14T16:22:10Z 2009-05-14T16:22:10Z <p>The find command has an -exec argument that you can use for things like this, you could just do the grep directly using that.</p> <p>For example (<a href="http://www.athabascau.ca/html/depts/compserv/webunit/HOWTO/find.htm#EX03" rel="nofollow">from here, other good examples at this page</a>):</p> <pre><code>find . -exec grep "www.athabasca" '{}' \; -print </code></pre> http://stackoverflow.com/questions/864205/is-it-worth-remaking-an-e-commerce-website-to-use-mysql-instead-of-access/864216#864216 11 Answer by Chad Birch for Is it worth remaking an e-commerce website to use mySQL instead of Access? Chad Birch 2009-05-14T16:01:27Z 2009-05-14T16:01:27Z <p>It's impossible to answer "is it worth"-type questions definitively.</p> <p>However, for your situation, I'd say the first thing you need to do is turn the "unexplained downtime" into "explained downtime". Figure out what's causing the problem. If it turns out that it's a hardware error on the server, you're going to rewrite the whole site and it'll still keep going down.</p> <p>Then, if you determine that it's the Access db causing the problem, the next thing I'd do is just transition that to MySQL, but leave the site in ASP. If you're just concerned about the database, why are you also considering a PHP rewrite?</p> http://stackoverflow.com/questions/921766/database-design-for-conditional-actions/921872#921872 Comment by Chad Birch on Database design for conditional actions Chad Birch 2009-05-28T16:42:22Z 2009-05-28T16:42:22Z Yeah, that's true enough. I suppose I was just trying to keep my options open for the future, but maybe I'm over-designing. http://stackoverflow.com/questions/916062/regular-expression-get-info-from-string-php/916107#916107 Comment by Chad Birch on Regular expression get info from string [PHP] Chad Birch 2009-05-27T14:43:22Z 2009-05-27T14:43:22Z Why write a weird loop like that when it's so much simpler as a regular expression? http://stackoverflow.com/questions/854961/password-hash-and-salting-is-this-a-good-method/854986#854986 Comment by Chad Birch on Password hash and salting - is this a good method? Chad Birch 2009-05-25T16:10:59Z 2009-05-25T16:10:59Z @42: Yes, but that's the point. The only reason anyone would be trying to reverse-engineer this algorithm in the first place is if they need to understand the hashes that they have access to. http://stackoverflow.com/questions/884135/how-can-i-get-this-query-to-return-0-instead-of-null Comment by Chad Birch on How can I get this query to return 0 instead of null? Chad Birch 2009-05-19T18:36:06Z 2009-05-19T18:36:06Z Rewrote the query in my answer, I misunderstood exactly what you were asking for. http://stackoverflow.com/questions/884135/how-can-i-get-this-query-to-return-0-instead-of-null/884149#884149 Comment by Chad Birch on How can I get this query to return 0 instead of null? Chad Birch 2009-05-19T18:28:29Z 2009-05-19T18:28:29Z Let me rewrite the query then, I think I see the problem. http://stackoverflow.com/questions/884000/best-way-to-sanitise-post-get-variables-from-a-form-url Comment by Chad Birch on Best way to sanitise POST/GET variables from a form/URL? Chad Birch 2009-05-19T17:19:32Z 2009-05-19T17:19:32Z Duplicate of many other questions, the Related sidebar shows lots. http://stackoverflow.com/questions/883984/rating-stars Comment by Chad Birch on Rating Stars Chad Birch 2009-05-19T17:16:16Z 2009-05-19T17:16:16Z What does &quot;100*20&quot; mean? is that for all 5 stars, so you want each one to be 20x20 pixels? A single 100x20 star doesn't make much sense. http://stackoverflow.com/questions/883958/clipboard-tool-to-paste-several-version-back Comment by Chad Birch on Clipboard Tool to Paste Several Version Back Chad Birch 2009-05-19T17:06:46Z 2009-05-19T17:06:46Z Which operating system? http://stackoverflow.com/questions/880949/mac-move-entire-app-to-another-screen Comment by Chad Birch on Mac: Move entire app to another screen? Chad Birch 2009-05-19T04:28:01Z 2009-05-19T04:28:01Z This site is for questions related to programming. http://stackoverflow.com/questions/880931/jquery-table-w-sorting Comment by Chad Birch on JQuery table w/ sorting Chad Birch 2009-05-19T04:26:19Z 2009-05-19T04:26:19Z Sounds like you want &quot;pagination&quot; then, not &quot;sorting&quot;. http://stackoverflow.com/questions/880810/should-i-use-python-3-0-yet Comment by Chad Birch on Should I use Python 3.0 yet? Chad Birch 2009-05-19T03:22:37Z 2009-05-19T03:22:37Z Duplicate: <a href="http://stackoverflow.com/questions/69909/is-it-better-to-write-new-code-software-for-python-3-0-or-python-2-6" rel="nofollow" title="is it better to write new code software for python 3 0 or python 2 6">stackoverflow.com/questions/69909/&hellip;</a> http://stackoverflow.com/questions/869456/re-sort-orders-to-improve-warehouse-efficiency Comment by Chad Birch on Re-sort orders to improve warehouse efficiency Chad Birch 2009-05-15T20:24:34Z 2009-05-15T20:24:34Z Ah, I think I understand now. Your question isn't how to organize the 16 orders they've already picked. Your question is how to pick the 16 orders to do next. Correct? http://stackoverflow.com/questions/870621/is-this-php-class-optimized-for-mysql-database-access Comment by Chad Birch on Is this PHP class optimized for mysql database access? Chad Birch 2009-05-15T20:20:52Z 2009-05-15T20:20:52Z And also: &quot;Is it very wrong to do?&quot; If that's in reference to you not using mysql_real_escape_string(), yes, it's very very very wrong. But again, mysqli or PDO parameterized queries would be a much better solution. http://stackoverflow.com/questions/870621/is-this-php-class-optimized-for-mysql-database-access Comment by Chad Birch on Is this PHP class optimized for mysql database access? Chad Birch 2009-05-15T20:14:23Z 2009-05-15T20:14:23Z Why do you even need this class in the first place? It doesn't seem to be adding anything to the standard functions. And if anything, you should be using PDO or mysqli, not mysql_* functions. http://stackoverflow.com/questions/869456/re-sort-orders-to-improve-warehouse-efficiency/870393#870393 Comment by Chad Birch on Re-sort orders to improve warehouse efficiency Chad Birch 2009-05-15T19:55:13Z 2009-05-15T19:55:13Z No, I don't think you do see. There's no &quot;comparison&quot; going on at all. It's not sorting, it's path optimization.