User Robinb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T11:04:50Z http://stackoverflow.com/feeds/user/22064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/132798/what-should-every-programmer-know/133171#133171 12 Answer by Robinb for What should every programmer know? Robinb 2008-09-25T12:58:47Z 2009-03-11T06:32:40Z <p>Never trust a user (<strong>especially</strong> if the app is public!), they will often do everything in their power to break your app one way or another.</p> <p>Make it future proof &amp; expandable – you never know when you want to expand it in a few years time and realise how much effort it would take to re-code badly created code.</p> http://stackoverflow.com/questions/466437/minifying-html/467641#467641 0 Answer by Robinb for Minifying HTML Robinb 2009-01-22T00:28:16Z 2009-01-22T00:28:16Z <p>Couldn't JavaScript be used as a decompresser for a compressed HTML string, for instance have a DEV build for the uncompressed format, run a 'publish' script to compress the DEV build to production and attach a JavaScript to the HTML source (with the whitespace and such removed as before)?</p> <p>The bandwidth would be reduced on the server, but the downside is there is a lot more client strain for decompressing the string to HTML. Also JavaScript would need to be enabled and be able to parse the decompressed string to HTML.</p> <p>I am not saying its a definite solution, but something that might work - it all depends on if your looking in regards to bandwidth without the users JavaScript permissions/systems spec, or such.</p> <p>Otherwise look for obfuscation scripts, a simple google search produced <a href="http://tinyurl.com/phpob" rel="nofollow">http://tinyurl.com/phpob</a> - dependent on what your looking for there should be a software package available.</p> <p>If I am on the wrong lines, please shout and I will see what else I can do. </p> <p>Good Luck!</p> http://stackoverflow.com/questions/138419/sql-compact-select-top-1/138439#138439 2 Answer by Robinb for SQL Compact select top 1 Robinb 2008-09-26T09:20:02Z 2008-09-26T09:20:02Z <p>SELECT TOP(1) Id FROM tblJob WHERE Holder_Id IS NULL</p> <p>Need the brackets as far as I know.</p> <p>reference: <a href="http://technet.microsoft.com/en-us/library/bb686896.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/bb686896.aspx</a></p> <p>addition: likewise, only for version 3.5 onwards</p> http://stackoverflow.com/questions/138261/select-query-in-sql-all-the-values-in-columns/138326#138326 3 Answer by Robinb for Select Query in SQL + All the values in columns Robinb 2008-09-26T08:37:59Z 2008-09-26T08:37:59Z <p>Don't understand why this question is getting negitive reviews - This question can be extended to people who inherited a large table from a non-programmer in a community (I know from previous experience), and likewise if the table is unknown. To downgrade this because its '300' columns is pointless IMO. </p> http://stackoverflow.com/questions/138261/select-query-in-sql-all-the-values-in-columns/138301#138301 2 Answer by Robinb for Select Query in SQL + All the values in columns Robinb 2008-09-26T08:29:39Z 2008-09-26T08:29:39Z <p>Best bet is to either rethink the design of your tables, splitting them if required. </p> <p>otherwise best bet is do it progmatically - grab the table metadata, itterate through the columns and drynamically create the SQL from there. Most coding languages have access to the tables metadata, failing that a second SQL is required for it.</p> <p>But, best bet is to think how can I design the table better. </p> http://stackoverflow.com/questions/133226/eval-scripts-in-server-side-control-property/133241#133241 1 Answer by Robinb for Eval scripts in server side control property Robinb 2008-09-25T13:14:54Z 2008-09-25T13:14:54Z <p>&lt;%# Eval("Id") %></p> <p>as far as I know, its &lt;%# instead of &lt;%=</p>