User Brian - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T12:37:49Z http://stackoverflow.com/feeds/user/18192 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1901311/how-to-implement-searching-on-a-vertically-designed-table/1901334#1901334 0 Answer by Brian for How to implement searching on a vertically designed table? Brian 2009-12-14T14:51:34Z 2009-12-14T14:51:34Z <p>Seen this before. Instead of searching for things that match city and sex and whatever, count how many attributes match your search query. If this count is equal to the number of attributes in your search query, it is one of your results.</p> http://stackoverflow.com/questions/1890316/heritance-to-override-a-function 0 "heritance" to override a function Brian 2009-12-11T19:25:19Z 2009-12-11T19:51:15Z <p>To some extent, this is more a thought exercise than a real problem, since I don't have enough CustomFS classes to be particularly bothered by just using copy paste. But I wonder if there's a better way.</p> <p>Suppose I have several classes <code>CustomFS</code>, <code>CustomFS2</code>, etc., all of which inherit from <code>FS</code>, <code>FS2</code>, etc. FS/FS2/etc. all inherit from <code>FSG</code>, which has a function <code>GetStuff</code>. Assuming I do not have the ability to modify FS and FSG how can I override a particular function in many of of the FS/FS2 with only one CustomFS class, and without constructing CustomFS with FS and adding a wrapper function for all of FS's methods to customFS.</p> <p>Current strategy: Copy/paste:</p> <pre><code>class CustomFS : FS { protected override int GetStuff(int x) { int retval = base.GetStuff(x); return retval + 1; } } class CustomFS2 : FS2 { protected override int GetStuff(int x) { int retval = base.GetStuff(x); return retval + 1; } } </code></pre> http://stackoverflow.com/questions/371898/how-does-differential-execution-work 9 How Does Differential Execution Work? Brian 2008-12-16T16:49:50Z 2009-12-10T22:54:00Z <p>I've seen a few mentions of this on SO, but staring at <a href="http://en.wikipedia.org/wiki/Differential_execution" rel="nofollow">Wikipedia</a> and at an <a href="http://sourceforge.net/projects/dyndlgdemo/" rel="nofollow">MFC dynamic dialog demo</a> did nothing to enlighten me. Can someone please explain this? Learning a fundamentally different concept sounds nice.</p> <p>Edit: I think I'm getting a better feel for it. I guess I just didn't look at the source code carefully enough the first time. I have mixed feelings about DE at this point. On the one hand, it can make certain tasks considerably easier. On the other hand, getting it up and running (i.e. setting it up in your language of choice) is not easy (I'm sure it would be if I understood it better)...though I guess the toolbox for it need only be made once, then expanded as necessary. I think in order to really understand it, I'll probably need to try implimenting it in another language.</p> http://stackoverflow.com/questions/1869356/fast-atomic-table-replacement 1 Fast, Atomic Table Replacement Brian 2009-12-08T19:43:02Z 2009-12-08T21:12:55Z <p>I have a rather simple command which I occasionally run:</p> <pre><code>BEGIN TRAN T1; truncate table mytable insert into mytable select name from myview COMMIT TRAN T1; </code></pre> <p>This command has two ugly side effects: Firstly, select requests on mytable often time out. Secondly, select requests on mytable sometimes return no results. I don't care if it returns the pre-transaction results or the post-transaction results, but don't want it to return anything in the middle, or to time out. One solution I thought of, and which will almost definitely help, is to first copy the view into a temp table (as the view is a little expensive). This won't fully solve the problem, but it will almost definitely make the window narrow enough for the problem to be ignored. Frankly, the window is narrow enough to ignore it <em>now</em>, but I don't like ignoring it. Another solution, which is an example of crazy over-engineering, would be to replace the table with two tables (e.g. a double-buffer), and call the newest, properly populated table.</p> <p>Is there a more elegant way to replace a table with a new one?</p> http://stackoverflow.com/questions/1822734/controlling-shortcut-order-in-wix 1 Controlling Shortcut order in wix Brian 2009-11-30T22:08:02Z 2009-12-01T02:58:47Z <p>Given a Wix installer with multiple shortcuts in the start menu, how can I, without renaming the shortcuts, control the order they appear in the start menu?</p> http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections/1820961#1820961 1 Answer by Brian for Binary encoding for low bandwidth connections? Brian 2009-11-30T16:47:30Z 2009-11-30T16:47:30Z <p>Try using <a href="http://en.wikipedia.org/wiki/ASN.1" rel="nofollow">ASN.1</a>. The packed encoding rules should yield a pretty decently compressed form on their own and and the xml encoding rules should yield something equivalent to your existing xml.</p> <p>Also, consider using 7zip instead of gzip.</p> http://stackoverflow.com/questions/1650395/faster-string-gethashcode-e-g-using-multicore-or-gpu 7 Faster String GetHashCode (e.g. using Multicore or GPU) Brian 2009-10-30T15:12:47Z 2009-11-27T22:04:26Z <p>According to <a href="http://www.codeguru.com/forum/showthread.php?t=463663" rel="nofollow">http://www.codeguru.com/forum/showthread.php?t=463663</a> , C#'s <code>getHashCode</code> function in 3.5 is implemented as:</p> <pre><code>public override unsafe int GetHashCode() { fixed (char* str = ((char*) this)) { char* chPtr = str; int num = 0x15051505; int num2 = num; int* numPtr = (int*) chPtr; for (int i = this.Length; i &gt; 0; i -= 4) { num = (((num &lt;&lt; 5) + num) + (num &gt;&gt; 0x1b)) ^ numPtr[0]; if (i &lt;= 2) { break; } num2 = (((num2 &lt;&lt; 5) + num2) + (num2 &gt;&gt; 0x1b)) ^ numPtr[1]; numPtr += 2; } return (num + (num2 * 0x5d588b65)); } } </code></pre> <p>I am curious if anyone can come up with a function which returns the same results, but is faster. It is OK to increase the overall starting and resource overhead of the main application. Requiring a one-time initialization (per application execution, not per call or per string) is OK.</p> <p>Note that unlike Microsoft, considerations like, "doing it this way will make everything else slower and has costs that make this method stupid!" can be ignored, so it is possible that even assuming Microsoft's is perfect, it can be beaten by doing something "stupid."</p> <p>This purely an exercise in my own curiosity and will not be used in real code.</p> <p>Examples of ideas I've thought of:</p> <ul> <li>Using multiple cores (calculating num2 and num independently)</li> <li>Using the gpu</li> </ul> http://stackoverflow.com/questions/1430476/dynamically-create-wix-files-without-having-to-edit-the-wix-files-manually/1799754#1799754 1 Answer by Brian for Dynamically create WIX files without having to edit the wix files manually Brian 2009-11-25T20:31:48Z 2009-11-25T20:31:48Z <p>WixEdit has an import folder function that can grab the entire contents of a folder and turn it into Directory/Component/File nodes.</p> http://stackoverflow.com/questions/1798672/eqatec-profiler-the-remote-server-returned-an-error-404-not-found/1798731#1798731 0 Answer by Brian for EQATEC Profiler - The remote server returned an error: (404) Not Found Brian 2009-11-25T17:49:03Z 2009-11-25T17:49:03Z <p><br>1) Try rebuilding (in Equatec) your application. Make sure "enable runtime control" is enabled in the application options when you build. <br>1a) Try changing the port being used for runtime control. <br>2) Run your application through Equatec <br>3) Check if you have anything funny for firewall settings or similar. Some firewalls treat Equatec communication as traffic to be blocked. <br>4. If all else fails, just close your application normally. Even if taking snapshots fails, you can still see the profile once your application is closed.</p> http://stackoverflow.com/questions/1792889/some-cookies-not-sent-to-server 0 Some cookies not sent to server Brian 2009-11-24T21:00:26Z 2009-11-24T21:09:00Z <p>I am attempting to set a cookie on a particular page to be read on another page. I wish to know why the other page is not being sent the cookie. Examining what is going on shows that the cookie <em>is</em> being set, but is not being sent to the server. My understanding was that if the path of a cookie is not set, the cookie will be sent to any page on the domain, though I tried adding <code>path=/</code> to the cookie in case that would help anyhow. Opera has the cookie tagged as "Only sent to creator" for whatever reason. I'm sure I'm missing something simple.</p> <pre><code>&lt;script type="text/javascript"&gt; function setCookie(c_name,value,expiredays) { var exdate=new Date(); exdate.setDate(exdate.getDate()+expiredays); document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : "; expires="+exdate.toGMTString()); } setCookie("mycookie",document.location.href,7); &lt;/script&gt; </code></pre> <p><br>http://www.site.com/Folder/subfolder/page.aspx - Cookie set here <br>http://www.site.com/folder/page.aspx - Cookie should be sent here. <strong>Why isn't it?</strong></p> http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests 0 Prevent windows from queuing shellexecute requests Brian 2009-11-18T19:45:47Z 2009-11-19T19:04:50Z <pre><code>Win.ShellExecute 0, "open", "C:\dir\program.exe", "arguments", vbNullString, SW_SHOWNORMAL Win.ShellExecute 0, "open", "http://www.google.com", vbNullString, vbNullString, SW_SHOWNORMAL </code></pre> <p>I want google.com to open regardless of whether or not program.exe is still running. How do I fix this? I would rather avoid things like calling "start."</p> <p>Both of these calls happen pretty much instantly, and the VB program continues running. However, on both Vista and XP, google.com does not open until program.exe closes. If the application which called <code>shellexecute</code> closes before program.exe closes, google.com will still open once program.exe is closed.</p> <p>Note:</p> <p>I have found that having program.exe call doevents every 100ms or so fixes the problem, but obviously this is somewhat of a hack.</p> <p>Note2: Below is an example implementation of program.exe. Yes, I realize that changing program.exe will fix this (i.e. adding a <code>doevents</code> call).</p> <pre><code>Option Explicit Public Sub Main() Do Until False Sleep 100 Loop End Sub </code></pre> http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v 7 Simplest, efficient ways to read binary and ascii files to string or similar in various languages. Brian 2008-10-08T07:15:56Z 2009-11-18T17:14:25Z <p>Personally, I always forget this stuff. So I figured this is a useful thing to have as a reference.</p> <ol> <li>Read an ascii file into a string</li> <li>Write an ascii file from a string</li> <li>Read a binary file into something appropriate. If possible, store in a string, too.</li> <li>Write a binary file from something appropriate. If possible, write from a string, too.</li> </ol> <p>Current Answers (sorted alphabetically):</p> <ul> <li>Ada</li> <li>Bash</li> <li>C</li> <li>C++</li> <li>C#/.Net</li> <li>Delphi</li> <li>Groovy</li> <li>Java </li> <li>Lua</li> <li>PHP</li> <li>Perl</li> <li>Python</li> <li>R6RS Scheme</li> <li>Rebol</li> <li>Ruby</li> <li>VB</li> </ul> <p>Missing Answers:</p> <ul> <li>Common Lisp</li> </ul> http://stackoverflow.com/questions/1723723/convert-language-abbreviation-to-full-name-e-g-en-to-english/1723791#1723791 3 Answer by Brian for Convert language abbreviation to full name, e.g. en to English? Brian 2009-11-12T17:05:42Z 2009-11-12T17:05:42Z <pre><code> System.Globalization.CultureInfo x = new CultureInfo("en"); string name = x.EnglishName; </code></pre> http://stackoverflow.com/questions/1521851/hidden-features-of-xpathxslt 2 Hidden Features of Xpath+Xslt Brian 2009-10-05T19:12:10Z 2009-11-11T16:38:00Z <p>What are the hidden features of XPath AND XSLT?</p> http://stackoverflow.com/questions/1715824/prevent-user-keeping-browsing-information-from-my-website/1715975#1715975 1 Answer by Brian for Prevent user keeping browsing information from my website Brian 2009-11-11T15:34:31Z 2009-11-11T15:34:31Z <p>Make all links on your site into POST requests hitting the same URL. That page will be a simple asp page which returns the real page. Note that this has side effects beyond merely preventing your site from having a proper history. These may or may not be acceptable effects.</p> http://stackoverflow.com/questions/1709845/python-str-magic-console 0 Python __str__: Magic Console Brian 2009-11-10T17:46:49Z 2009-11-10T18:06:33Z <p>Suppose one decided (yes, this is horrible) to create handle input in the following manner: A user types in a command on the python console after importing your class, the command is actually a class name, the class name's <code>__str__</code> function is actually a function with side effects (e.g. the command is "north" and the function changes some global variables and then returns text describing your current location). Obviously this is a stupid thing to do, but how would you do it (if possible)?</p> <p>Note that the basic question is how to define the <code>__str__</code> method for a class without creating an instance of the class, otherwise it would be simple (but still just as crazy:</p> <pre><code>class ff: def __str__(self): #do fun side effects return "fun text string" ginst = ff() &gt;&gt;ginst </code></pre> http://stackoverflow.com/questions/1703694/substitute-user-controls-on-failure 1 Substitute User Controls on Failure Brian 2009-11-09T20:47:30Z 2009-11-09T20:55:51Z <p>Recently, I had a user control I was developing throw an exception. I know what caused the exception, but this issue got me thinking. If I have a user control throw an exception for whatever reason and I wish to replace that usercontrol with something else (e.g. an error saying, "Sorry, this part of the page broke.") and perhaps log the error, what would be a good way to do it that could be done independently of what the user control is or does (i.e. I'm not saying what the user control does/is, because I want an answer where that is irrelevant).</p> <p>Code sample:</p> <pre><code>&lt;asp:TableRow VerticalAlign="Top" HorizontalAlign="Left"&gt; &lt;asp:TableCell&gt; &lt;UR:MyUserControl ID="MyUserControl3" runat="server" FormatString="&lt;%$ AppSettings:RVUC %&gt;" ConnectionString="&lt;%$ ConnectionStrings:WPDBC %&gt;" Title="CO" /&gt; &lt;/asp:TableCell&gt; &lt;asp:TableCell&gt; &lt;UR:MyUserControl ID="MyUserControl4" runat="server" FormatString="&lt;%$ AppSettings:RVUA %&gt;" ConnectionString="&lt;%$ ConnectionStrings:WPDBA %&gt;" Title="IEAO" /&gt; &lt;/asp:TableCell&gt; &lt;/asp:TableRow&gt; </code></pre> http://stackoverflow.com/questions/1702683/finding-and-removing-orphaned-web-pages-images-and-other-related-files/1702757#1702757 1 Answer by Brian for Finding and removing orphaned web pages, images, and other related files. Brian 2009-11-09T18:16:18Z 2009-11-09T18:16:18Z <p>Step 1: Establish a list of pages on your site which are definitely visible. One intelligent way to create this list is to parse your log files for pages people visit.</p> <p>Step 2: Run a tool that recursively finds site topology, starting from a specially written page (that you will make on your site) which has a link to each page in step 1. One tool which can do this is <a href="http://home.snafu.de/tilman/xenulink.html" rel="nofollow">Xenu's Link Sleuth</a>. It's intended for finding dead links, but it will list live links as well. This can be run externally, so there are no security concerns with installing 'weird' software onto your server. You'll need to watch over this occasionally since your site may have infinite pages and the like if you have bugs or whatever.</p> <p>Step 3: Run a tool that recursively maps your hard disk, starting from your site web directory. I can't think of any of these off the top of my head, but writing one should be trivial, and is safer since this will be run on your server.</p> <p>Step 4: Take the results of steps 2 and 3 programmatically match #2 against #3. Anything in #3 not in #2 is potentially an orphan page.</p> <p>Note: This technique works poorly with password-protected stuff, and also works poorly with sites relying heavily on dynamically generated links (dynamic content is fine if the links are consistent).</p> http://stackoverflow.com/questions/1677345/how-can-i-tell-that-a-directory-is-the-recycling-bin-in-vb6 1 How can I tell that a directory is the Recycling bin in VB6? Brian 2009-11-04T23:15:03Z 2009-11-06T20:18:29Z <p>I am attempting to mimic the code in <a href="http://stackoverflow.com/questions/94046/how-can-i-tell-that-a-directory-is-really-a-recycle-bin">this question</a> (see also <a href="http://stackoverflow.com/questions/1585295/how-can-i-tell-that-a-directory-is-the-recycle-bin-in-c">here</a>), but I'm experiencing crashing. I'm pretty sure my error is in my call to <code>SHBindToParent</code> (<a href="http://msdn.microsoft.com/en-us/library/bb762114(VS.85).aspx" rel="nofollow">MSDN entry</a>) since <code>SHParseDisplayName</code> is returning 0 (<code>S_OK</code>) and <code>ppidl</code> is being set. I admit my mechanism of setting the riid (I used an equivalent type, a <code>UUID</code>) is pretty ugly, but I think it more likely I'm doing something wrong with <code>psf</code>.</p> <pre><code>Private Declare Function SHParseDisplayName Lib "shell32" (ByVal pszName As Long, ByVal IBindCtx As Long, ByRef ppidl As ITEMIDLIST, sfgaoIn As Long, sfgaoOut As Long) As Long Private Declare Function SHBindToParent Lib "shell32" (ByVal ppidl As Long, ByRef shellguid As UUID, ByVal psf As Long, ByVal ppidlLast As Long) As Long Private Sub Main() Dim hr As Long Dim ppidl As ITEMIDLIST Dim topo As String Dim psf As IShellFolder Dim pidlChild As ITEMIDLIST topo = "c:\tmp\" '"//This VB comment is here to make SO's rendering look nicer. Dim iid_shellfolder As UUID iid_shellfolder.Data1 = 136422 iid_shellfolder.Data2 = 0 iid_shellfolder.Data3 = 0 iid_shellfolder.Data4(0) = 192 iid_shellfolder.Data4(7) = 70 hr = SHParseDisplayName(StrPtr(topo), 0, ppidl, 0, 0) Debug.Print hr, Hex(hr) hr = SHBindToParent(VarPtr(ppidl), iid_shellfolder, VarPtr(psf), VarPtr(pidlChild)) 'Crashes here End Sub </code></pre> http://stackoverflow.com/questions/1677345/how-can-i-tell-that-a-directory-is-the-recycling-bin-in-vb6/1690120#1690120 0 Answer by Brian for How can I tell that a directory is the Recycling bin in VB6? Brian 2009-11-06T20:18:29Z 2009-11-06T20:18:29Z <p>A prototype which I got to work, for those who may need it.</p> <pre><code>Private Declare Function SHParseDisplayName Lib "shell32" (ByVal pszName As Long, ByVal IBindCtx As Long, ByRef ppidl As Long, ByVal sfgaoIn As Long, ByRef sfgaoOut As Long) As Long Private Declare Function SHBindToParent Lib "shell32" (ByVal ppidl As Any, ByRef shellguid As UUID, ByRef psf As IShellFolder, ByRef ppidlLast As Any) As Long Private Sub Main() Dim iid_shellfolder As UUID Dim hr As Long Dim ppidl As Long Dim topo As String Dim psf As IShellFolder Dim pidlChild As Long Dim lpIDList2 As Long Dim pdid As shdescriptionid iid_shellfolder.Data1 = 136422 iid_shellfolder.Data2 = 0 iid_shellfolder.Data3 = 0 iid_shellfolder.Data4(0) = 192 iid_shellfolder.Data4(7) = 70 Dim bin As UUID bin.Data1 = &amp;H645FF040 bin.Data2 = &amp;H5081 bin.Data3 = &amp;H101B bin.Data4(0) = &amp;H9F bin.Data4(1) = &amp;H8 bin.Data4(2) = &amp;H0 bin.Data4(3) = &amp;HAA bin.Data4(4) = &amp;H0 bin.Data4(5) = &amp;H2F bin.Data4(6) = &amp;H95 bin.Data4(7) = &amp;H4E 'topo = "C:\Temp" topo = "c:\$Recycle.Bin\S-1-5-21-725345543-1972579041-1417001333-1192\" hr = SHParseDisplayName(StrPtr(topo), ByVal 0&amp;, lpIDList2, ByVal 0&amp;, ByVal 0&amp;) hr = SHBindToParent(lpIDList2, iid_shellfolder, psf, pidlChild) Dim objShell As shell32.Shell Set objShell = CreateObject("Shell.Application.1") 'New Shell32.Shell win.Shell.SHGetDataFromIDList psf, pidlChild, SHGDFIL_DESCRIPTIONID, pdid, LenB(pdid) Ole32.CoTaskMemFree lpIDList2 Debug.Print equalUUID(pdid.clsid, bin) end sub </code></pre> http://stackoverflow.com/questions/1676298/why-is-select-distinct-from-function-returning-duplicates 0 Why is Select distinct from function returning duplicates? Brian 2009-11-04T20:11:21Z 2009-11-04T20:40:56Z <p>I tried two different variations on the same thing. The first version selects from <code>freetexttable</code>, the other insets into a temp table and selects from that. I've tried numerous variations on the first version (select several combinations, at both levels of scope, of group by, distinct, and casting [rank] to an integer. Regardless, the first query consistently returns 3 rows each having value <code>137</code> whereas the second query consistently returns 1 row having value of <code>137</code>.</p> <p>What is going on here? Why does freetext return duplicates and why aren't they eliminated with <code>select distinct</code> or with <code>group by</code>?</p> <p><b>Note: I want to know why, not how to fix it.</b> I already have acceptable workarounds.</p> <pre><code>select * from ( select distinct [rank] from freetexttable(dbo.vw_PPN, allKeywords, N'foo', 100000 ) where [key] = 3781054 ) as CT create table #temp ([rank] int) insert into #temp select distinct [rank] from freetexttable(dbo.vw_PPN, allKeywords, N'foo', 100000 ) where [key] = 3781054 select * from #temp drop table #temp </code></pre> http://stackoverflow.com/questions/1652021/desktop-namespace-extension-in-windows-7-unable-to-drag-and-drop 0 Desktop Namespace Extension in Windows 7: Unable to drag and drop Brian 2009-10-30T20:07:51Z 2009-11-03T18:19:29Z <p>I have a program which makes use of a desktop Namespace extension. In Windows 2000, Windows XP, and Windows Vista, users can drag icons onto an icon on the desktop and the program is launched. However, in Windows 7 (both Home and Ultimate), all that happens is the icon order is rearranged. I tried using Sysinternals dbgview.exe. It correctly noticed many events from handler.exe, but no events are triggered by dragging an icon onto the namespace icon, which means the drophandler isn't even being called at all. </p> <p>As it still works properly, there must be something Windows 7 requires that previous versions of the OS did not. </p> <p>The namespace extension is installed by stuffing the relevant keys into the registry, and I'd like to keep the installer working that way:</p> <pre><code>HKCR\CLSID\{{MY-NAMESPACE-GUID}:():"Caption" HKCR\CLSID\{{MY-NAMESPACE-GUID}:(Drop):"""c:\programpath\program.exe"" /argument ""%s""" HKCR\CLSID\{{MY-NAMESPACE-GUID}\InProcServer32:():"""c:\programpath\handler.exe""" HKCR\CLSID\{{MY-NAMESPACE-GUID}\InProcServer32:ThreadingModel:"Apartment" HKCR\CLSID\{{MY-NAMESPACE-GUID}\DefaultIcon:():"""c:\programpath\program.exe"",4" HKCR\CLSID\{{MY-NAMESPACE-GUID}\Shell\Open\Command:():"""c:\programpath\program.exe""" HKCR\CLSID\{{MY-NAMESPACE-GUID}\shellex\DropHandler:():{MY-GUID-HANDLER} HKCR\CLSID\{{MY-NAMESPACE-GUID}\shellex\PropertySheetHandlers(): {MY-GUID-HANDLER} HKCR\CLSID\{{MY-NAMESPACE-GUID}\ShellFolder():00 01 00 00 HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\Namespace\{{MY-NAMESPACE-GUID}:():"Caption" </code></pre> http://stackoverflow.com/questions/1652021/desktop-namespace-extension-in-windows-7-unable-to-drag-and-drop/1669199#1669199 0 Answer by Brian for Desktop Namespace Extension in Windows 7: Unable to drag and drop Brian 2009-11-03T18:19:29Z 2009-11-03T18:19:29Z <p>ShellFolder needs to have the SFGAO_BROWSABLE bit (0x08000000) set when on Windows 7.</p> http://stackoverflow.com/questions/1667591/rotating-a-bitmap-90-degrees/1667778#1667778 0 Answer by Brian for Rotating a bitmap 90 degrees Brian 2009-11-03T14:45:21Z 2009-11-03T14:45:21Z <p>If an if-powered loop is acceptable, the formula for bits is simple enough:</p> <pre><code>8&gt;&gt;Column - Row - 1 </code></pre> <p>Column and Row are 0-indexed.</p> <p>This gives you this mapping:</p> <pre><code> 7 15 23 31 39 47 55 63 6 14 22 ... 5 ... 4 ... 3 ... 2 ... 1 ... 0 8 16 24 32 40 48 54 </code></pre> http://stackoverflow.com/questions/192479/whats-the-coolest-hack-youve-seen-or-done/1633033#1633033 2 Answer by Brian for What's the coolest hack you've seen or done? Brian 2009-10-27T19:12:08Z 2009-10-27T19:12:08Z <p>The <a href="http://www.codinghorror.com/blog/archives/001125.html" rel="nofollow">Black Sunday Hack</a>.</p> http://stackoverflow.com/questions/1619836/c-random-number/1619966#1619966 1 Answer by Brian for C# Random Number Brian 2009-10-25T04:00:43Z 2009-10-25T04:00:43Z <p>Well, I decided to try to beat Guffa :) I suspected his version had too much indirection. So, here's a variant on his solution, which uses a character array instead of a stringbuilder. It runs in about 70% of the time of his faster solution, when I benchmarked it via <code>Stopwatch</code>.</p> <pre><code>char[] fauxbuilder = new char[8]; int num = rnd.Next(0, 100000000); for (int i = 0; i &lt; 8; i++) { fauxbuilder[i] = (char)((num % 10) + 48); num /= 10; } string code = new string(fauxbuilder); </code></pre> http://stackoverflow.com/questions/1599363/how-to-explicitly-pass-a-program-flow-into-the-finally-block-in-c/1602454#1602454 0 Answer by Brian for How to explicitly pass a program flow into the finally block in C#? Brian 2009-10-21T17:54:38Z 2009-10-21T17:54:38Z <pre><code>void funcA() { if (!DoSomething()) return; if (!DoSomething2()) return; if (!DoSomething3()) return; } void funcB() { funcA(); DoSomethingElse; } </code></pre> http://stackoverflow.com/questions/1041181/password-recovery-without-sending-password-via-email 0 Password Recovery without sending password via email Brian 2009-06-24T21:48:28Z 2009-10-17T22:12:56Z <p>So, I've been playing with <code>asp:PasswordRecovery</code> and discovered I really don't like it, for several reasons:</p> <p>1) Alice's password can be reset even without having access to Alice's email. A security question for password resets mitigates this, but does not really satisfy me.</p> <p>2) Alice's new password is sent back to her in cleartext. I would rather send her a special link to my page (e.g. a page like example.com/recovery.aspx?P=lfaj0831uefjc), which would let her change her password.</p> <p>I imagine I could do this myself by creating some sort of table of expiring password recovery pages and sending those pages to users who asked for a reset. Somehow those pages could also change user passwords behind the scenes (e.g. by resetting them manually and then using the text of the new password to change the password, since a password cannot be changed without knowing the old one). I'm sure others have had this problem before and that kind of solution strikes me as a little hacky. Is there a better way to do this?</p> <p>An ideal solution does not violate encapsulation by accessing the database directly but instead uses the existing stored procedures within the database...though that may not be possible.</p> http://stackoverflow.com/questions/1581124/why-would-i-put-src-in-a-link/1581146#1581146 2 Answer by Brian for Why would I put ?src= in a link? Brian 2009-10-17T01:23:13Z 2009-10-17T01:23:13Z <p>There are a few reasons that the src is being used explicitly. But in general, it is easier and more reliable to trust a query string to determine referer[sic] than it is to trust the referer, since the latter is often broken, deliberately or not. On the other hand, browsers almost never break the query string in a url, since this, unlike referers, is pretty important for pages to function. Besides, a referer is often done without any deliberate action on the part of the site doing the refering, which some users dislike.</p> http://stackoverflow.com/questions/1546113/double-to-string-conversion-without-scientific-notation/1568787#1568787 1 Answer by Brian for Double to string conversion without scientific notation Brian 2009-10-14T20:28:49Z 2009-10-14T21:56:49Z <p>The obligatory Logarithm-based solution. Note that this solution, because it involves doing math, may reduce the accuracy of your number a little bit. Not heavily tested.</p> <pre><code>private static string DoubleToLongString(double x) { int shift = (int)Math.Log10(x); if (Math.Abs(shift) &lt;= 2) { return x.ToString(); } if (shift &lt; 0) { double y = x * Math.Pow(10, -shift); return "0.".PadRight(-shift + 2, '0') + y.ToString().Substring(2); } else { double y = x * Math.Pow(10, 2 - shift); return y + "".PadRight(shift - 2, '0'); } } </code></pre> <p>Edit: <em>If the decimal point crosses non-zero part of the number, this algorithm will fail miserably. I tried for simple and went too far.</em></p> http://stackoverflow.com/questions/1890316/heritance-to-override-a-function Comment by Brian on "heritance" to override a function Brian 2009-12-12T12:52:04Z 2009-12-12T12:52:04Z Note: The overriding function is not really complex enough to justify adding an extra layer of indirection. http://stackoverflow.com/questions/1661269/is-it-possible-to-strengthen-forms-authentication-in-asp-net-with-certificates Comment by Brian on Is it possible to strengthen forms authentication in ASP.NET with certificates? Brian 2009-12-10T19:11:06Z 2009-12-10T19:11:06Z You could, instead of worrying about Certificate, authenticate location based on IP address. Most offices have a static IP. If the IP changes, this will need to be reconfigured. http://stackoverflow.com/questions/1876926/how-can-i-create-bitmaps-in-c Comment by Brian on How can I create bitmaps (in C)? Brian 2009-12-09T22:20:46Z 2009-12-09T22:20:46Z Create bitmap from scratch or create a bitmap via library? http://stackoverflow.com/questions/1869356/fast-atomic-table-replacement Comment by Brian on Fast, Atomic Table Replacement Brian 2009-12-08T21:11:57Z 2009-12-08T21:11:57Z I don't know how to set it or what I'm using. http://stackoverflow.com/questions/1822734/controlling-shortcut-order-in-wix Comment by Brian on Controlling Shortcut order in wix Brian 2009-11-30T22:15:44Z 2009-11-30T22:15:44Z In truth, I suspect it isn't even possible. But my QA department was unhappy and so I figured I'd at least ask. http://stackoverflow.com/questions/1792889/some-cookies-not-sent-to-server Comment by Brian on Some cookies not sent to server Brian 2009-11-25T14:24:31Z 2009-11-25T14:24:31Z @Josh: Actually, I was testing with multiple browsers. I mentioned Opera because of that setting. http://stackoverflow.com/questions/1792889/some-cookies-not-sent-to-server/1792931#1792931 Comment by Brian on Some cookies not sent to server Brian 2009-11-24T21:13:40Z 2009-11-24T21:13:40Z I typed something wrong when I tried to set the path in hopes of fixing it. :/ http://stackoverflow.com/questions/1234136/alternative-to-content-disposition-in-http-header-c Comment by Brian on Alternative to Content-Disposition in HTTP Header (c#) Brian 2009-11-23T22:14:04Z 2009-11-23T22:14:04Z Note: If you omit the content-type header, some browsers (e.g. Opera) will give the file the wrong filename extension, regardless of what you chose for it. http://stackoverflow.com/questions/1784767/g-error-stricmp-was-not-declared-in-this-scope-but-ok-for-strcmp Comment by Brian on g++ error: ‘stricmp’ was not declared in this scope (but OK for 'strcmp') Brian 2009-11-23T17:44:32Z 2009-11-23T17:44:32Z Considering that stricmp and strcmp are not the same (the latter is case sensitive), you might want to hesistate before changing them anyhow. http://stackoverflow.com/questions/1749905/code-golf-fractran Comment by Brian on Code Golf: Fractran Brian 2009-11-19T20:17:27Z 2009-11-19T20:17:27Z Proof that 2^x3^y with (3,2) yields 3^(x+y): Clearly it will run through x times, because the 3^y part will never become divisible by 2 regardless of the value of y, but 2^x is divisible by 2 x times. 2^x*1.5^x = 3^x. 2^x*1.5^x*3^y=3^(x+y). http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764569#1764569 Comment by Brian on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Brian 2009-11-19T20:01:41Z 2009-11-19T20:01:41Z @jellybean: There's nothing stopping him from calling itertools on set([a]) instead of calling it on [a]. http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests/1758858#1758858 Comment by Brian on Prevent windows from queuing shellexecute requests Brian 2009-11-19T19:08:00Z 2009-11-19T19:08:00Z Well, I tried createprocess and it did not help. http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests/1765306#1765306 Comment by Brian on Prevent windows from queuing shellexecute requests Brian 2009-11-19T19:07:18Z 2009-11-19T19:07:18Z GIving my test application a form had no effect. http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests Comment by Brian on Prevent windows from queuing shellexecute requests Brian 2009-11-19T19:06:45Z 2009-11-19T19:06:45Z @tyranid: I changed my test program to have a GUI, and passed its hwnd to shellexecute. This made no difference. http://stackoverflow.com/questions/1758554/prevent-windows-from-queuing-shellexecute-requests/1758869#1758869 Comment by Brian on Prevent windows from queuing shellexecute requests Brian 2009-11-19T19:02:16Z 2009-11-19T19:02:16Z Well, I tried createprocess and it did not help.