User d03boy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T16:07:07Z http://stackoverflow.com/feeds/user/20471 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1794412/adding-a-prefix-to-every-url-in-cakephp/1794649#1794649 0 Answer by d03boy for Adding a prefix to every URL in CakePHP d03boy 2009-11-25T04:34:17Z 2009-11-25T04:34:17Z <p>rchavik from IRC suggested this link: <a href="http://teknoid.wordpress.com/2008/11/28/cakephp-url-based-language-switching-for-i18n-and-l10n-internationalization-and-localization/" rel="nofollow">CakePHP URL based language switching for i18n and l10n internationalization and localization</a></p> <p>In general, it seems that overriding <code>Helper::url</code> might be the solution.</p> http://stackoverflow.com/questions/1739898/html-how-to-get-my-subpages-listed-on-a-google-search/1739951#1739951 0 Answer by d03boy for HTML: How to get my subpages listed on a google search d03boy 2009-11-16T03:49:47Z 2009-11-16T03:49:47Z <blockquote> <p>Google has not generated any sitelinks for your site. Sitelinks are completely automated, and we show them only if we think they'll be useful to the user. If your site's structure doesn't allow our algorithms to find good sitelinks, or we don't think that the sitelinks are relevant to the user's query, we won't show them. However, we are always working to improve how we find and display sitelinks.</p> </blockquote> http://stackoverflow.com/questions/1717177/pair-programming-with-comments/1717263#1717263 0 Answer by d03boy for pair programming with comments d03boy 2009-11-11T18:43:44Z 2009-11-11T18:43:44Z <p>I find it works best when the helper does the broad scope thinking (i.e. What are we trying to accomplish) and the keyboard cowboy does the detail scope thinking. I don't think comments have anything to do with it.</p> http://stackoverflow.com/questions/1716135/deleting-rows-from-a-table-using-a-loop 0 Deleting rows from a table using a loop d03boy 2009-11-11T15:57:40Z 2009-11-11T17:13:46Z <p>Why does my <code>Do Until</code> loop try to run <code>raw.Delete</code> even though <code>raw.EOF</code> is true? If I have an empty table, this crashes. Why?</p> <pre><code>Dim raw As Recordset Set raw = db.OpenRecordset("tblSampleRaw") If raw.RecordCount &gt; 0 Then raw.MoveFirst Do Until raw.EOF raw.MoveFirst raw.Delete Loop End If </code></pre> http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1709490#1709490 0 Answer by d03boy for Database design - exposing Primary Key d03boy 2009-11-10T16:58:13Z 2009-11-10T16:58:13Z <p>You can implement a security mechanism without requiring the users to login. You should not simply rely on obscurity to secure this data.</p> <p>Requiring the ID in the URL as well as some sort of password (a randomly assigned hash) could be all the security needed.</p> http://stackoverflow.com/questions/1702029/gridview-that-toggles-percentages-of-counts 0 GridView that toggles percentages of counts d03boy 2009-11-09T16:12:39Z 2009-11-09T16:29:20Z <p>I am using a <code>SqlDataSource</code> that returns a table of raw counts. One of these columns is the "total". I would like to give the user the ability to show these counts as a percentage of total using some sort of toggle switch.</p> <p>My initial idea was to have two CSS classes and somehow put <code>&lt;span class="raw"&gt;</code> and <code>&lt;span class="perc"&gt;</code> around each value and then make one or the other invisible using Javascript. I'm not sure how I would go about doing this though.</p> <p>I would appreciate any suggestions as to how I could approach this.</p> http://stackoverflow.com/questions/1683229/issues-with-building-sql-strings 1 Issues with building SQL strings d03boy 2009-11-05T20:09:09Z 2009-11-05T20:17:01Z <p>Why won't this piece of code work for me? It gives the error <code>Must declare the scalar variable "@y".</code></p> <pre><code>DECLARE @y int DECLARE @dbname VARCHAR(50) SET @y = -1 SET @dbname = 'SomeDb.dbo.' SET @sql = 'SELECT @y=1 from ' + @dbname + 'Respondent' exec(@sql) </code></pre> http://stackoverflow.com/questions/1670708/how-to-create-composite-unique-constraint-in-sql-server-2005 0 How to create Composite Unique Constraint in SQL Server 2005 d03boy 2009-11-03T23:00:01Z 2009-11-04T06:08:39Z <p>Preferably I would like to know how to do it using the SQL Server Management Studio interface but that isn't completely necessary. If you simply have a script to add one after a table is made that would be fine.</p> http://stackoverflow.com/questions/1654622/remembering-url-until-authentication-is-complete/1654645#1654645 1 Answer by d03boy for Remembering URL until authentication is complete d03boy 2009-10-31T15:03:53Z 2009-10-31T15:51:45Z <p>When the user goes to <code>ProtectedPage.php</code> without being authenticated, this should automatically redirect them to <code>LoginView.php</code> (with the previous page's URL attached). They can then proceed to login and the <code>LoginAction.php</code> page will redirect them back to the <code>ProtectedPage.php</code></p> <h2>ProtectedPage.php</h2> <pre><code>&lt;?php if (!$authenticated) { header("Location: /LoginView.php?r=ProtectedPage.php"); } ?&gt; </code></pre> <h2>LoginView.php</h2> <pre><code>&lt;form action="LoginAction.php" method="post"&gt; &lt;input type="hidden" id="r" value="&lt;?php echo $_GET['r'] ?&gt;" /&gt; ... &lt;/form&gt; </code></pre> <h2>LoginAction.php</h2> <pre><code>&lt;?php ... Authenticate the user ... if (!empty($_POST['r'])) { header("Location: {$_POST['r']}"); } else { header("Location: /"); } ?&gt; </code></pre> http://stackoverflow.com/questions/1654553/mysql-a-new-table-of-each-page/1654561#1654561 6 Answer by d03boy for mySQL - A new table of each page? d03boy 2009-10-31T14:36:33Z 2009-10-31T14:36:33Z <p>In no way would a single table for each page be a good idea. Very, very silly idea.</p> <p>Databases are intentionally designed for storing large amounts of information. Just use a single table with a Page_id column. Just make to set up the proper indexes for data retrieval.</p> http://stackoverflow.com/questions/1654540/mysql-advanced-statement/1654549#1654549 0 Answer by d03boy for Mysql advanced statement d03boy 2009-10-31T14:33:14Z 2009-10-31T14:33:14Z <p>I think the simplest solution is to sort by content_no Descending and then LIMIT the responses to 1.</p> http://stackoverflow.com/questions/1651872/company-internal-number/1651880#1651880 1 Answer by d03boy for Company internal number d03boy 2009-10-30T19:38:03Z 2009-10-30T19:38:03Z <ul> <li>Serial</li> <li>Account ID</li> <li>Employee ID</li> <li>PIN</li> </ul> http://stackoverflow.com/questions/1631413/computer-science-degrees/1631430#1631430 2 Answer by d03boy for Computer Science Degrees? d03boy 2009-10-27T15:04:11Z 2009-10-27T15:04:11Z <p>Do them both at the same time.</p> http://stackoverflow.com/questions/1617025/cannot-get-data-in-ms-access-database/1617031#1617031 1 Answer by d03boy for Cannot get data in MS Access database d03boy 2009-10-24T05:14:05Z 2009-10-24T05:14:05Z <p>This could be due to the application not closing properly the last time it was used. Check to see if there is an ldb (lock file) in the same directory as the database. Open it with a text editor and you can see who the last person to use the db was. If the db was not closed properly it may still be locked.</p> http://stackoverflow.com/questions/1616392/why-does-an-empty-loop-use-so-much-processor-time/1616516#1616516 0 Answer by d03boy for Why does an empty loop use so much processor time? d03boy 2009-10-23T23:57:53Z 2009-10-23T23:57:53Z <p>Sleep() is not really doing anything during the period that the thread is sleeping. It hands its time over to other processes to use. A loop on the other hand is continuously checking to see if the condition is true or false.</p> http://stackoverflow.com/questions/1596589/why-are-asynchronous-processes-not-called-synchronous/1596634#1596634 0 Answer by d03boy for Why are Asynchronous processes not called Synchronous? d03boy 2009-10-20T18:56:17Z 2009-10-20T18:56:17Z <p>It really means that an asynchronous event is happening independently of other events whereas a synchronous event would be happening dependent of other events.</p> http://stackoverflow.com/questions/1595866/architecting-an-asset-management-database 1 Architecting an Asset Management Database d03boy 2009-10-20T16:30:50Z 2009-10-20T16:37:08Z <p>Does anybody have any recommendations for handling company assets? Servers, switches, telephones, monitors, desks, Blackberrys, software, etc. How would you design a database to handle these different types of assets without being too vague or too precise in the database design?</p> <p>For instance, if I have a field for the physical asset tag that you would place on an object, how would I handle software that was downloaded? What if I would like to track machine names but I don't want to give a desk a machine name? These different types of assets are what is throwing me off a bit.</p> http://stackoverflow.com/questions/718127/choosing-forum-software-based-on-modifiability 0 Choosing forum software based on modifiability d03boy 2009-04-05T00:39:31Z 2009-10-16T22:20:39Z <p>I am aware that this question will be judged as a non-programming question but I would like to point out that my software decision is very largely based on the programming standpoint.</p> <p>I am interested in changing from SMF to a better forum software. Unfortunately I'm unsure of which software I should choose. Many people like to recommend vBulletin($), PhpBB($0) or SMF($0). In my experience the way the themes are organized in SMF has completely destroyed any possibility of me wanting to work on it. There doesn't seem to be any distinction between the View and the Business logic.</p> <p>So I'm asking this from a programmers point of view: <strong>which forum software provides the most opportunity for modification and straightforward theming without hindering the ability for SEO or other customization?</strong></p> <p>I realize this may not completely fit within the constraints of a relevant stackoverflow question but I don't think there's anyone better for giving advice about <strong>well thought out design.</strong></p> http://stackoverflow.com/questions/1576109/msdn-how-can-i-see-what-inherits-implements-a-class-interface 0 MSDN: How can I see what inherits/implements a class/interface? d03boy 2009-10-16T02:07:15Z 2009-10-16T04:57:21Z <p>One thing I really, really miss from Javadoc is the ability to see which classes inherit the class you're looking at. So if you are looking at an abstract class (such as List) then you would be able to see all classes that inherit/implement the class/interface you're looking at. Is this available in the MSDN and I'm just missing it or is this really a missing feature?</p> http://stackoverflow.com/questions/1556994/escaping-parentheses-in-excel 0 Escaping Parentheses in Excel d03boy 2009-10-12T21:15:08Z 2009-10-12T21:15:08Z <p>I have an ASP.Net website that allows you to export a Gridview to Excel. The Gridview has some column headings with words and then numbers surrounded by parentheses like this:</p> <pre><code>Abc&lt;br&gt;(43) Xyz&lt;br&gt;(55) </code></pre> <p>I have set the bound field's HtmlEncode property to False because I do not want it to escape the line break tags I have in there. This is fine and I can even use <code>&amp;amp;#40;</code> and <code>&amp;amp;#41;</code> to escape the parentheses if I need to.</p> <p>The issue I'm having is that Excel looks at the (43) as a negative number and displays it as -43. How can I escape the parentheses?</p> http://stackoverflow.com/questions/1546258/how-do-i-set-the-visible-attribute-in-an-itemtemplate 1 How do I set the Visible attribute in an ItemTemplate? d03boy 2009-10-09T21:55:44Z 2009-10-12T14:54:29Z <pre><code>&lt;asp:TemplateField HeaderText="Audio"&gt; &lt;ItemTemplate&gt; &lt;asp:Image ID="playImage" runat="server" ImageUrl="~/images/nextpg.gif" Visible='&lt;%# (Eval("available")=="Y") ? true : false %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>In my query I am returning the "available" column which is populated with a letter of Y or N. For some reason the evaluation of this expression is never true. If I change it to <code>!=</code> instead of <code>==</code> it will always be true. That leads me to believe the <code>Eval("available")=="Y"</code> is simply not evaluating as expected.</p> http://stackoverflow.com/questions/1546258/how-do-i-set-the-visible-attribute-in-an-itemtemplate/1554988#1554988 0 Answer by d03boy for How do I set the Visible attribute in an ItemTemplate? d03boy 2009-10-12T14:45:11Z 2009-10-12T14:51:23Z <p>After much messing around, this finally worked:</p> <pre><code>&lt;%# ((String)Eval("available")).Equals("Y") ? true : false %&gt; </code></pre> <p>The issue seems to be that you can't use <code>==</code> but instead you must use the <code>String.Equals()</code> method. I'm not sure <em>why</em> but that's just the way it is.</p> http://stackoverflow.com/questions/1547026/t-sql-conditional-update-v2/1547096#1547096 0 Answer by d03boy for T-SQL conditional UPDATE (v2) d03boy 2009-10-10T04:58:44Z 2009-10-10T04:58:44Z <p>I would highly recommend using Adam Robinson's method if you require this to be in a single stored procedure.</p> <p>Even better would be to simply use separate stored procedures for each one of these updates.</p> http://stackoverflow.com/questions/1547054/unreachable-return-statement-in-java/1547088#1547088 1 Answer by d03boy for Unreachable return statement in Java d03boy 2009-10-10T04:48:21Z 2009-10-10T04:48:21Z <p>What you have is essentially the equivalent of the following:</p> <pre><code>if (something) return true; else return false; else return false; </code></pre> <p>Now, why would you have two else statements? That's right, you wouldn't.</p> http://stackoverflow.com/questions/1546454/if-a-url-contains-a-quote-how-do-you-specify-the-relcanonical-value/1546464#1546464 0 Answer by d03boy for If a URL contains a quote how do you specify the rel=canonical value? d03boy 2009-10-09T23:04:12Z 2009-10-09T23:04:12Z <p>I would say you want to use the HEX value for a quote which is <code>%22</code>.</p> <p>Read this to learn more about <a href="http://www.blooberry.com/indexdot/html/topics/urlencoding.htm" rel="nofollow">URL Encoding</a>.</p> http://stackoverflow.com/questions/1531395/should-i-use-a-lot-of-comments-in-my-code/1531443#1531443 0 Answer by d03boy for Should I use a lot of comments in my code? d03boy 2009-10-07T12:50:53Z 2009-10-07T12:50:53Z <p>Typically it is best to comment a large chunk or section of code and explain what your assumptions are or any behavior that can't be figured out simply by reading the code. It doesn't hurt to put in a very brief list of logical steps that you're taking in the code.</p> http://stackoverflow.com/questions/865306/customizing-a-detailsview-command-bar 0 Customizing a DetailsView Command Bar d03boy 2009-05-14T19:45:28Z 2009-10-06T19:17:47Z <p>I simply want to add some Javascript checks when an item is inserted or edited. The only way I know of to do this (using inline Javascript) would be to disable the AutoGenerateXxxButton properties for the DetailsView and make my own. The issues I'm having is replacing them with custom LinkButtons (and keeping the default action) and adding Javascript to them. Is there a way I can do this easily? The only option I see is to edit the template and put them in the footer or something.</p> <p>Hints? Tricks? Blatantly obvious things that I'm missing?</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/826402#826402 2 Answer by d03boy for Making Vim ubiquitous? d03boy 2009-05-05T18:56:05Z 2009-10-03T15:39:04Z <p>In the game <a href="http://www.nethack.org/" rel="nofollow">NetHack</a> you can use vi keyboard mode. Just set the setting to 0 (zero):</p> <pre> number_pad Use the number keys to move instead of [yuhjklbn] (default 0 or off). </pre> http://stackoverflow.com/questions/1478653/does-a-transaction-affect-all-queries 3 Does a transaction affect all queries? d03boy 2009-09-25T17:38:24Z 2009-09-25T18:43:47Z <p>I started a transaction using <code>BEGIN TRANSACTION</code> in Management Studio but I forgot to ROLLBACK or COMMIT it for about 10 minutes. I freaked out and went back to ROLLBACK my changes. Did this rollback all queries that went through the server during that time or just through my user/connection?</p> http://stackoverflow.com/questions/101079/sql-server-management-studio-tips-for-improving-the-tsql-coding-process/1469310#1469310 0 Answer by d03boy for SQL Server Management Studio – tips for improving the TSQL coding process d03boy 2009-09-24T00:55:02Z 2009-09-24T01:05:14Z <p>Use a <code>SELECT INTO</code> query to quickly/easily make backup tables to work and experiment with.</p> http://stackoverflow.com/questions/1799671/php-comment-code-help/1799707#1799707 Comment by d03boy on PHP Comment Code Help d03boy 2009-11-25T20:34:05Z 2009-11-25T20:34:05Z Byron, might want to brush up =P http://stackoverflow.com/questions/1719055/just-want-to-know-what-this-error-message-really-means/1731970#1731970 Comment by d03boy on Just Want to know what this error message really means! d03boy 2009-11-13T21:21:05Z 2009-11-13T21:21:05Z This is what I initially found as well http://stackoverflow.com/questions/1731883/making-my-own-css Comment by d03boy on Making my own CSS d03boy 2009-11-13T21:12:06Z 2009-11-13T21:12:06Z I gave your code block a heading and it seemed to fix it http://stackoverflow.com/questions/1717208/ampersand-not-passing-through-url Comment by d03boy on ampersand not passing through url d03boy 2009-11-11T18:39:45Z 2009-11-11T18:39:45Z What language are you doing back end coding in? http://stackoverflow.com/questions/1716135/deleting-rows-from-a-table-using-a-loop/1716196#1716196 Comment by d03boy on Deleting rows from a table using a loop d03boy 2009-11-11T16:09:43Z 2009-11-11T16:09:43Z Move to first record, delete it, then what is first? The next record I would hope http://stackoverflow.com/questions/1716135/deleting-rows-from-a-table-using-a-loop/1716191#1716191 Comment by d03boy on Deleting rows from a table using a loop d03boy 2009-11-11T16:08:38Z 2009-11-11T16:08:38Z You are probably right. But a TRUNCATE would even be quicker. I'm just curious why this loop doesn't work though. http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1709268#1709268 Comment by d03boy on Database design - exposing Primary Key d03boy 2009-11-10T17:00:13Z 2009-11-10T17:00:13Z Can't you guess a surrogate key? http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1709268#1709268 Comment by d03boy on Database design - exposing Primary Key d03boy 2009-11-10T16:52:46Z 2009-11-10T16:52:46Z If your &quot;security mechanism&quot; relies on not being able to guess a simple value then you're not really implementing security at all http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key Comment by d03boy on Database design - exposing Primary Key d03boy 2009-11-10T16:26:47Z 2009-11-10T16:26:47Z What are your reasons for not using the ID? (Instinct doesn't count) http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1709165#1709165 Comment by d03boy on Database design - exposing Primary Key d03boy 2009-11-10T16:23:25Z 2009-11-10T16:23:25Z Why would you NOT use the freakin' ID? http://stackoverflow.com/questions/1702029/gridview-that-toggles-percentages-of-counts/1702093#1702093 Comment by d03boy on GridView that toggles percentages of counts d03boy 2009-11-09T16:38:55Z 2009-11-09T16:38:55Z I would rather not modify the output of the stored procedure if I can help it. http://stackoverflow.com/questions/1702029/gridview-that-toggles-percentages-of-counts/1702093#1702093 Comment by d03boy on GridView that toggles percentages of counts d03boy 2009-11-09T16:24:45Z 2009-11-09T16:24:45Z I don't have the percentages in a column. All I have right now is raw counts. http://stackoverflow.com/questions/1694796/select-2-counts-from-mysql-query/1694817#1694817 Comment by d03boy on Select 2 COUNT()'s from MySQL query d03boy 2009-11-07T23:46:18Z 2009-11-07T23:46:18Z That would be considered redundant and de-normalization. Don't denormalize unless you have performance problems! http://stackoverflow.com/questions/1694796/select-2-counts-from-mysql-query/1694818#1694818 Comment by d03boy on Select 2 COUNT()'s from MySQL query d03boy 2009-11-07T23:45:29Z 2009-11-07T23:45:29Z Are there ties? http://stackoverflow.com/questions/1690115/program-with-java Comment by d03boy on program with java d03boy 2009-11-06T20:18:42Z 2009-11-06T20:18:42Z Pleeease use paragraphs