User d03boy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T16:07:07Zhttp://stackoverflow.com/feeds/user/20471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794412/adding-a-prefix-to-every-url-in-cakephp/1794649#17946490Answer by d03boy for Adding a prefix to every URL in CakePHPd03boy2009-11-25T04:34:17Z2009-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#17399510Answer by d03boy for HTML: How to get my subpages listed on a google searchd03boy2009-11-16T03:49:47Z2009-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#17172630Answer by d03boy for pair programming with commentsd03boy2009-11-11T18:43:44Z2009-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-loop0Deleting rows from a table using a loopd03boy2009-11-11T15:57:40Z2009-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 > 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#17094900Answer by d03boy for Database design - exposing Primary Key d03boy2009-11-10T16:58:13Z2009-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-counts0GridView that toggles percentages of countsd03boy2009-11-09T16:12:39Z2009-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><span class="raw"></code> and <code><span class="perc"></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-strings1Issues with building SQL stringsd03boy2009-11-05T20:09:09Z2009-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-20050How to create Composite Unique Constraint in SQL Server 2005d03boy2009-11-03T23:00:01Z2009-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#16546451Answer by d03boy for Remembering URL until authentication is completed03boy2009-10-31T15:03:53Z2009-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><?php
if (!$authenticated) {
header("Location: /LoginView.php?r=ProtectedPage.php");
}
?>
</code></pre>
<h2>LoginView.php</h2>
<pre><code><form action="LoginAction.php" method="post">
<input type="hidden" id="r" value="<?php echo $_GET['r'] ?>" />
...
</form>
</code></pre>
<h2>LoginAction.php</h2>
<pre><code><?php
... Authenticate the user ...
if (!empty($_POST['r'])) { header("Location: {$_POST['r']}"); }
else { header("Location: /"); }
?>
</code></pre>
http://stackoverflow.com/questions/1654553/mysql-a-new-table-of-each-page/1654561#16545616Answer by d03boy for mySQL - A new table of each page?d03boy2009-10-31T14:36:33Z2009-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#16545490Answer by d03boy for Mysql advanced statementd03boy2009-10-31T14:33:14Z2009-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#16518801Answer by d03boy for Company internal numberd03boy2009-10-30T19:38:03Z2009-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#16314302Answer by d03boy for Computer Science Degrees?d03boy2009-10-27T15:04:11Z2009-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#16170311Answer by d03boy for Cannot get data in MS Access databased03boy2009-10-24T05:14:05Z2009-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#16165160Answer by d03boy for Why does an empty loop use so much processor time?d03boy2009-10-23T23:57:53Z2009-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#15966340Answer by d03boy for Why are Asynchronous processes not called Synchronous?d03boy2009-10-20T18:56:17Z2009-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-database1Architecting an Asset Management Databased03boy2009-10-20T16:30:50Z2009-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-modifiability0Choosing forum software based on modifiabilityd03boy2009-04-05T00:39:31Z2009-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-interface0MSDN: How can I see what inherits/implements a class/interface?d03boy2009-10-16T02:07:15Z2009-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-excel0Escaping Parentheses in Exceld03boy2009-10-12T21:15:08Z2009-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<br>(43)
Xyz<br>(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;#40;</code> and <code>&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-itemtemplate1How do I set the Visible attribute in an ItemTemplate?d03boy2009-10-09T21:55:44Z2009-10-12T14:54:29Z
<pre><code><asp:TemplateField HeaderText="Audio">
<ItemTemplate>
<asp:Image ID="playImage" runat="server"
ImageUrl="~/images/nextpg.gif"
Visible='<%# (Eval("available")=="Y") ? true : false %>' />
</ItemTemplate>
</asp:TemplateField>
</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#15549880Answer by d03boy for How do I set the Visible attribute in an ItemTemplate?d03boy2009-10-12T14:45:11Z2009-10-12T14:51:23Z<p>After much messing around, this finally worked:</p>
<pre><code><%# ((String)Eval("available")).Equals("Y") ? true : false %>
</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#15470960Answer by d03boy for T-SQL conditional UPDATE (v2)d03boy2009-10-10T04:58:44Z2009-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#15470881Answer by d03boy for Unreachable return statement in Javad03boy2009-10-10T04:48:21Z2009-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#15464640Answer by d03boy for If a URL contains a quote how do you specify the rel=canonical value?d03boy2009-10-09T23:04:12Z2009-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#15314430Answer by d03boy for Should I use a lot of comments in my code?d03boy2009-10-07T12:50:53Z2009-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-bar0Customizing a DetailsView Command Bard03boy2009-05-14T19:45:28Z2009-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#8264022Answer by d03boy for Making Vim ubiquitous?d03boy2009-05-05T18:56:05Z2009-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-queries3Does a transaction affect all queries?d03boy2009-09-25T17:38:24Z2009-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#14693100Answer by d03boy for SQL Server Management Studio – tips for improving the TSQL coding processd03boy2009-09-24T00:55:02Z2009-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#1799707Comment by d03boy on PHP Comment Code Helpd03boy2009-11-25T20:34:05Z2009-11-25T20:34:05ZByron, might want to brush up =Phttp://stackoverflow.com/questions/1719055/just-want-to-know-what-this-error-message-really-means/1731970#1731970Comment by d03boy on Just Want to know what this error message really means!d03boy2009-11-13T21:21:05Z2009-11-13T21:21:05ZThis is what I initially found as wellhttp://stackoverflow.com/questions/1731883/making-my-own-cssComment by d03boy on Making my own CSSd03boy2009-11-13T21:12:06Z2009-11-13T21:12:06ZI gave your code block a heading and it seemed to fix ithttp://stackoverflow.com/questions/1717208/ampersand-not-passing-through-urlComment by d03boy on ampersand not passing through urld03boy2009-11-11T18:39:45Z2009-11-11T18:39:45ZWhat language are you doing back end coding in?http://stackoverflow.com/questions/1716135/deleting-rows-from-a-table-using-a-loop/1716196#1716196Comment by d03boy on Deleting rows from a table using a loopd03boy2009-11-11T16:09:43Z2009-11-11T16:09:43ZMove to first record, delete it, then what is first? The next record I would hopehttp://stackoverflow.com/questions/1716135/deleting-rows-from-a-table-using-a-loop/1716191#1716191Comment by d03boy on Deleting rows from a table using a loopd03boy2009-11-11T16:08:38Z2009-11-11T16:08:38ZYou 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#1709268Comment by d03boy on Database design - exposing Primary Key d03boy2009-11-10T17:00:13Z2009-11-10T17:00:13ZCan't you guess a surrogate key?http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1709268#1709268Comment by d03boy on Database design - exposing Primary Key d03boy2009-11-10T16:52:46Z2009-11-10T16:52:46ZIf your "security mechanism" relies on not being able to guess a simple value then you're not really implementing security at allhttp://stackoverflow.com/questions/1709075/database-design-exposing-primary-keyComment by d03boy on Database design - exposing Primary Key d03boy2009-11-10T16:26:47Z2009-11-10T16:26:47ZWhat are your reasons for not using the ID? (Instinct doesn't count)http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1709165#1709165Comment by d03boy on Database design - exposing Primary Key d03boy2009-11-10T16:23:25Z2009-11-10T16:23:25ZWhy would you NOT use the freakin' ID?http://stackoverflow.com/questions/1702029/gridview-that-toggles-percentages-of-counts/1702093#1702093Comment by d03boy on GridView that toggles percentages of countsd03boy2009-11-09T16:38:55Z2009-11-09T16:38:55ZI 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#1702093Comment by d03boy on GridView that toggles percentages of countsd03boy2009-11-09T16:24:45Z2009-11-09T16:24:45ZI 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#1694817Comment by d03boy on Select 2 COUNT()'s from MySQL queryd03boy2009-11-07T23:46:18Z2009-11-07T23:46:18ZThat 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#1694818Comment by d03boy on Select 2 COUNT()'s from MySQL queryd03boy2009-11-07T23:45:29Z2009-11-07T23:45:29ZAre there ties?http://stackoverflow.com/questions/1690115/program-with-javaComment by d03boy on program with javad03boy2009-11-06T20:18:42Z2009-11-06T20:18:42ZPleeease use paragraphs