User Robinb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T11:04:50Zhttp://stackoverflow.com/feeds/user/22064http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132798/what-should-every-programmer-know/133171#13317112Answer by Robinb for What should every programmer know?Robinb2008-09-25T12:58:47Z2009-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 & 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#4676410Answer by Robinb for Minifying HTMLRobinb2009-01-22T00:28:16Z2009-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#1384392Answer by Robinb for SQL Compact select top 1Robinb2008-09-26T09:20:02Z2008-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#1383263Answer by Robinb for Select Query in SQL + All the values in columnsRobinb2008-09-26T08:37:59Z2008-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#1383012Answer by Robinb for Select Query in SQL + All the values in columnsRobinb2008-09-26T08:29:39Z2008-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#1332411Answer by Robinb for Eval scripts in server side control propertyRobinb2008-09-25T13:14:54Z2008-09-25T13:14:54Z<p><%# Eval("Id") %></p>
<p>as far as I know, its <%# instead of <%=</p>