User Joshua - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T23:26:59Zhttp://stackoverflow.com/feeds/user/14768http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1942552/dynamic-load-on-windows-7-fails/1942656#19426561Answer by Joshua for dynamic load on Windows 7 failsJoshua2009-12-21T21:11:54Z2009-12-21T21:11:54Z<p>It looks like you are assuming Ordinal # = offset in table. Maybe that's not true in Windows 7 DLLs.</p>
http://stackoverflow.com/questions/1915757/what-does-this-mean-void-0x00/1915782#19157820Answer by Joshua for What does this mean: (void *) 0x00Joshua2009-12-16T16:18:59Z2009-12-16T16:18:59Z<p>Weird C notation. If I had to guess I'd say this guy is trying to force a binary 0 into a pointer on some platform where NULL is not binary 0.</p>
http://stackoverflow.com/questions/1910819/what-kind-of-grammar-do-you-use-for-comments/1910898#19108980Answer by Joshua for What kind of grammar do you use for comments?Joshua2009-12-15T22:31:05Z2009-12-15T22:31:05Z<p>Whatever grammar I feel like at the time.</p>
<pre><code>// Here there be tygers
</code></pre>
<p>No that's not a spelling error.</p>
http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910883#19108835Answer by Joshua for [C++] Why aren't pointers initialized with NULL by default?Joshua2009-12-15T22:28:45Z2009-12-15T22:28:45Z<p>Besides, we do have a warning for when you blow it: "is possibly used before assigned a value" or similar verbage depending on your compiler.</p>
<p>You do compile with warnings, right?</p>
http://stackoverflow.com/questions/1909967/what-does-msvc-6-throw-when-an-integer-divide-by-zero-occurs/1910041#19100410Answer by Joshua for What does msvc 6 throw when an integer divide by zero occurs?Joshua2009-12-15T20:09:06Z2009-12-15T20:09:06Z<p>In msvc6 you can catch it with catch(...) and rethrow it with throw; however since you can't detect exception type that way you're better off doing something else.</p>
http://stackoverflow.com/questions/1904479/programmatically-suppressing-exceptions-in-c/1904881#19048810Answer by Joshua for Programmatically suppressing exceptions in C#Joshua2009-12-15T02:37:40Z2009-12-15T02:37:40Z<p>When I throw Exception rather than a derived class I always mean a failed assertion. I don't like failing out the backend because we are still able to receive a request (just not that one again). If we're really toast it will just error out on the next request anyway.</p>
<p>When the back end needs to generate an error message I have a ErrorMessage class that inherits from Exception and takes ErrorMessage and ErrorMessageTitle as constructor arguments.</p>
http://stackoverflow.com/questions/1902061/sha-1-based-directory-structure-and-ntfs-limitations/1902452#19024521Answer by Joshua for SHA-1-based directory structure and NTFS limitations?Joshua2009-12-14T18:00:50Z2009-12-14T18:00:50Z<p>Add a collision detector and resolver. You had better be ready in case someone tries to check in SHA-1 collision vectors.</p>
<p>I've not seen any SHA-1 collisions yet but I did see a bad case of an accidental MD5 collision where someone thought they were unique.</p>
<p>Anyway, NTFS uses BTree directory structures so you really could place all in one folder. Windows Explorer won't like it though.</p>
http://stackoverflow.com/questions/285971/how-do-i-renew-an-ssl-certificate-for-several-years-in-iis/1902002#19020020Answer by Joshua for How do I renew an SSL certificate for several years in IIS?Joshua2009-12-14T16:42:15Z2009-12-14T16:42:15Z<p>Last I checked trying to use any cert that is good for more than one year causes the client to reject it anyway.</p>
http://stackoverflow.com/questions/1003524/how-can-i-force-the-32-bit-version-of-the-remote-desktop-client-to-run-on-64-bit/1882863#18828630Answer by Joshua for How can I force the 32-bit version of the remote desktop client to run on 64 bit Vista?Joshua2009-12-10T18:03:28Z2009-12-10T18:03:28Z<p>Come to think of it, hooking IsWow64Process() to return 0 might work.</p>
http://stackoverflow.com/questions/1851172/bash-daemon-named-sh-or-sleep-not-the-filename/1851224#18512241Answer by Joshua for Bash Daemon Named "sh" or "sleep" not the filename....Joshua2009-12-05T05:31:18Z2009-12-05T05:31:18Z<p>Since that's what ps also shows I have a hunch you're out of luck. Sorry but shell scripts can't change their apparent process name.</p>
<p>However, for the cases that show bash you can create a symlink to bash under a name descriptive to your script and invoke your script via that symlink.</p>
http://stackoverflow.com/questions/1851195/how-to-create-composite-key-and-how-to-refer-it-in-other-table-as-a-foreign-key/1851209#18512090Answer by Joshua for How to create Composite Key and how to refer it in other table as a foreign keyJoshua2009-12-05T05:24:38Z2009-12-05T05:24:38Z<pre><code>create table tblcountry (
unqid uniqueidentifier,
name varchar(100),
isremoved bit,
PRImARY KEY (unqid, isremoved)
)
create table tblstate (
unqid uniqueidentifier,
name varchar(100),
f_tblcountry uniqueidentifier,
isremoved bit,
)
CREATE INDEX tblstateref ON tblstate (unqid, isremoved) -- always use index w/ foreign keys
ALTER TABLE tblstate ADD CONSTRAINT fk FOREIGN KEY (unqid, isremoved) references tblcountry (unqid, isremoved)
</code></pre>
http://stackoverflow.com/questions/1805960/can-you-determine-if-vista-uac-allows-writing-to-a-directory-without-elevation-in/1848259#18482590Answer by Joshua for Can you determine if Vista UAC allows writing to a directory without elevation in java?Joshua2009-12-04T16:52:13Z2009-12-04T16:52:13Z<ol>
<li><p>Prepare a native EXE that loads the JVM in process (java.exe does this but you will need your own).</p></li>
<li><p>Add a manifest file (or in RC data) that specifies UAC as invoker.</p></li>
<li><p>Try writing to the folder to see if it works.</p></li>
</ol>
<p>Or decide this is too much work and use a config file.</p>
http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finally/1843916#18439167Answer by Joshua for Clean up code in finalize() or finally()?Joshua2009-12-03T23:45:55Z2009-12-04T03:27:34Z<p>Always clean up things in finally.</p>
<p>Cleaning up in finalize is not guaranteed to occur.</p>
<p>However, it is often found to clean up such things in finalizers as a last-ditch safety valve should a finally block throw another exception on you.</p>
<p>The real problem with relying on finalizers is something else may need the resource before the GC gets around to calling the finalizer.</p>
http://stackoverflow.com/questions/1833982/in-c-is-there-a-difference-between-throw-and-throw-ex/1834039#18340392Answer by Joshua for In C++, is there a difference between “throw” and “throw ex”?Joshua2009-12-02T16:23:17Z2009-12-02T16:23:17Z<p>throw can throw a nonstandard exception type that was caught by catch(...) (eg structured exception)</p>
http://stackoverflow.com/questions/1821649/how-can-i-force-nhibernate-transaction-to-fail/1821896#18218960Answer by Joshua for How can i force Nhibernate transaction to fail ?Joshua2009-11-30T19:32:38Z2009-11-30T19:32:38Z<p>Set some global variable (I know people had global variables but this is a good use) that the transaction internal code reads and if it sees the variable set throw an exception.</p>
http://stackoverflow.com/questions/1790554/how-do-i-send-a-struct-from-c-to-vb6-and-from-vb6-to-c/1792240#17922401Answer by Joshua for How do I send a struct from C# to VB6, and from VB6 to C#?Joshua2009-11-24T19:07:12Z2009-11-24T19:07:12Z<p>By using P/Invoke on .NET and importing CopyMemory in VB6 you can make this work but this is so much of a maintenance disaster I'd recommend running from anything like this.</p>
http://stackoverflow.com/questions/1786257/properly-handling-platform-specifics-unix-windows-in-c/1786301#17863011Answer by Joshua for Properly handling platform specifics (unix/windows) in C?Joshua2009-11-23T21:53:16Z2009-11-23T21:53:16Z<p>Quite often the code fragments become large enough that it looks like this:</p>
<pre><code>#if WINDOWS
void dowindowsroutine()
{
}
#else
void dounixroutine()
{
}
#endif
int main(int argc, char *argv[]) {
#if WINDOWS
dowindowsroutine();
#else
dounixroutine();
#endif
return 0;
}
</code></pre>
<p>Yes, here's an example of where you would indent preprocessor macros.</p>
<p>Sometimes it becomes large enough that we do it in the linker (linking against impwindows.o or impunix.o depending on makefile switch).</p>
http://stackoverflow.com/questions/1785205/can-you-define-a-comment-in-c/1785846#17858460Answer by Joshua for Can you #define a comment in C?Joshua2009-11-23T20:48:58Z2009-11-23T20:48:58Z<p>It's been done. I don't recommend it. No time to test but the mechanism is kind of like this:</p>
<pre><code> #define printd_CAT(x) x ## x
#ifndef DEBUG
#define printd printd_CAT(/)
#else
#define printd printf
#endif
</code></pre>
<p>This works if your compiler processes // comments in the compiler itself (there's no guarantee like the ANSI guarantee that there are two passes for /* comments).</p>
http://stackoverflow.com/questions/1784093/get-application-pool-uptime-in-c/1784231#17842311Answer by Joshua for Get Application Pool Uptime in c#Joshua2009-11-23T16:21:46Z2009-11-23T16:21:46Z<p>Really stupid trick: in some class that everything uses, use a class constructor to remember your start time and use an aspx page to receive it. Now compare to current time.</p>
http://stackoverflow.com/questions/1777862/redirecting-command-line-arguments-for-bootstrapping/1777882#17778822Answer by Joshua for Redirecting Command-line Arguments for BootstrappingJoshua2009-11-22T05:14:06Z2009-11-22T05:14:06Z<p>Windows is all messed up. Every program has its own rules.</p>
http://stackoverflow.com/questions/1765072/bootstrapper-with-custom-package/1765154#17651540Answer by Joshua for Bootstrapper with custom packageJoshua2009-11-19T17:40:02Z2009-11-19T17:40:02Z<p>I built one a quick sfx that unpacked all setup files to a temp directory, ran setup.exe, and deleted all files. I can't give it to you but it should take you no more than a day to replicate.</p>
http://stackoverflow.com/questions/1764898/how-do-i-safely-stop-a-c-net-thread-running-in-a-windows-service/1765140#17651400Answer by Joshua for How do I safely stop a C# .NET thread running in a Windows service?Joshua2009-11-19T17:38:07Z2009-11-19T17:38:07Z<p>My service listens on a network socket so what I did is create a joined pair of network sockets and used the select system call to listen on both. If the joined pair reported ready to read I knew to shutdown the service.</p>
<p>This trick can be used to trigger an arbitrary number of threads to shut down so long as none of them actually read from the connected pair.</p>
http://stackoverflow.com/questions/1758743/applicationhellanzb-is-a-system-hog-and-nice-19-does-nothing/1758910#17589101Answer by Joshua for Application(hellanzb) is a system hog and nice 19 does nothing.Joshua2009-11-18T20:38:53Z2009-11-18T20:38:53Z<p>It sounds like you exceeded the entire IO capacity of the system before running out of CPU. I recall something about an ionice somewhere but I can't remember where.</p>
http://stackoverflow.com/questions/1735795/hex-0x0001-vs-0x00000001/1735801#17358013Answer by Joshua for Hex 0x0001 vs 0x00000001Joshua2009-11-14T22:22:23Z2009-11-14T22:22:23Z<p>What's going on here is this is a bitmask for which it is tradition to place leading zeros out to the width of the bitmask. I would furthermore guess the width of the bitmask changed at some point to add more specialized permissions.</p>
http://stackoverflow.com/questions/1710497/exception-caused-by-appdomain-when-it-shouldnt/1710656#17106560Answer by Joshua for Exception caused by AppDomain when it shouldn't?Joshua2009-11-10T19:45:01Z2009-11-10T19:45:01Z<pre><code> AddHandler Application.ThreadException, AddressOf MyExceptionHandler.HandleException
</code></pre>
<p>Adds a top-level exception handler but it might not do what you want in this case.</p>
http://stackoverflow.com/questions/780739/deserialize-object-into-assembly-that-is-now-signed-and-versioned/1709140#17091400Answer by Joshua for Deserialize object into assembly that is now signed and versionedJoshua2009-11-10T16:14:16Z2009-11-10T16:14:16Z<p>My recommendation is to never use the builtin serializes for your persistent storage. Always code your own if for no other reason someday in the future you will need to read and write your file formats from another language.</p>
http://stackoverflow.com/questions/1703650/here-is-some-code-that-makes-a-cookie-can-you-please-show-me-how-to-unmake-it/1703665#17036652Answer by Joshua for Here is some code that makes a cookie, can you please show me how to unmake it?Joshua2009-11-09T20:43:43Z2009-11-09T20:43:43Z<p>Expire cookies by setting their expiration time in the past.</p>
<pre><code> System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Domain = System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"].ToString().ToLower();
System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Value = tokenID.ToString();
System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Path = "~/";
System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Expires = DateTime.Now.AddDays(-7);
</code></pre>
http://stackoverflow.com/questions/613954/the-case-against-checked-exceptions/1694321#16943210Answer by Joshua for The case against checked exceptionsJoshua2009-11-07T20:34:38Z2009-11-08T16:47:50Z<p>My writeup on c2.com is still mostly unchanged from its original form: <A HREF="http://c2.com/cgi/wiki?CheckedExceptionsAreIncompatibleWithVisitorPattern" rel="nofollow">CheckedExceptionsAreIncompatibleWithVisitorPattern</A></p>
<p>In summary:</p>
<p>Visitor Pattern and its relatives are a class of interfaces where the indirect caller and interface implementation both know about an exception but the interface and direct caller form a library that cannot know.</p>
<p>The fundamental assumption of CheckedExceptions is all declared exceptions can be thrown from any point that calls a method with that declaration. The VisitorPattern reveals this assumption to be faulty.</p>
<p>The final result of checked exceptions in cases like these is a lot of otherwise useless code that essentially removes the compiler's checked exception constraint at runtime.</p>
<p>As for the underlying problem:</p>
<p>My general idea is the top-level handler needs to interpret the exception and display an appropriate error message. I almost always see either IO exceptions, communication exceptions (for some reason APIs distinguish), or task-fatal errors (program bugs or severe problem on backing server), so this should not be too hard if we allow a stack trace for a severe server problem.</p>
http://stackoverflow.com/questions/1683843/is-sql-injection-a-risk-today/1694346#16943460Answer by Joshua for Is SQL injection a risk today?Joshua2009-11-07T20:42:17Z2009-11-07T20:42:17Z<p>Whenever building up SQL from strings, SQL injection is a real danger.</p>
<p>I have also discovered that trying to avoid building up SQL from strings is a pointless endeavor. Sooner or later the full form of your SQL (not just things that could be parameters) must be generated at runtime.</p>
http://stackoverflow.com/questions/1683020/possible-to-rearrange-an-array-in-place-in-on/1683123#16831230Answer by Joshua for Possible to rearrange an array in place in O(N)?Joshua2009-11-05T19:55:20Z2009-11-05T22:56:26Z<p>I can do it given O(N) scratch space -- copy to new array and copy back.</p>
<p>EDIT: I am aware of the existance of an algorithm that will proceed through. The idea is to perform the swaps on the array of integers 1..N while at the same time mirroring the swaps on your array of large objects. I just cannot find the algorithm right now.</p>
http://stackoverflow.com/questions/1915757/what-does-this-mean-void-0x00/1915770#1915770Comment by Joshua on What does this mean: (void *) 0x00Joshua2009-12-17T16:59:08Z2009-12-17T16:59:08Z@Jason, exactly. On x86 DOS large model, NULL was binary 0, which was in turn a valid pointer that points to the interrupt vector table. Writing to NULL was quite strongly undefined behavior.http://stackoverflow.com/questions/1904479/programmatically-suppressing-exceptions-in-cComment by Joshua on Programmatically suppressing exceptions in C#Joshua2009-12-15T02:29:24Z2009-12-15T02:29:24Z@Eric I did that once by localizing the string being searched for. Still not a good idea.http://stackoverflow.com/questions/1883648/is-it-reasonable-to-catch-an-exception-based-on-the-message/1883681#1883681Comment by Joshua on Is it reasonable to catch an exception based on the message?Joshua2009-12-10T20:50:19Z2009-12-10T20:50:19ZWho dared downvote this?http://stackoverflow.com/questions/1883648/is-it-reasonable-to-catch-an-exception-based-on-the-message/1883675#1883675Comment by Joshua on Is it reasonable to catch an exception based on the message?Joshua2009-12-10T20:48:56Z2009-12-10T20:48:56ZOr even worse, non-english localized messages. The stock exceptions will localize themselves to the machine's settings.http://stackoverflow.com/questions/1805960/can-you-determine-if-vista-uac-allows-writing-to-a-directory-without-elevation-in/1848259#1848259Comment by Joshua on Can you determine if Vista UAC allows writing to a directory without elevation in java?Joshua2009-12-04T19:25:10Z2009-12-04T19:25:10Z@Yishai: No, the manifest for RunAsInvoker makes sure you do not.http://stackoverflow.com/questions/713805/net-finalizers-and-exit0/713924#713924Comment by Joshua on .NET - Finalizers and exit(0)Joshua2009-12-04T03:31:11Z2009-12-04T03:31:11ZTerminateProcess(GetCurrentProcess()) is guaranteed to not run finalizers or rewind stack (these are native methods -- P/Invoke them both).http://stackoverflow.com/questions/577943/how-accurate-are-the-technical-arguments-in-jwzs-ten-year-old-java-sucks-artic/674974#674974Comment by Joshua on How accurate are the technical arguments in JWZ's ten-year-old "java sucks" article with today's Java?Joshua2009-12-04T00:35:35Z2009-12-04T00:35:35Z"if your workplace could only use one language for the entire company needs, which language will you choose" -- Bad test we would be stuck with assembly everywhere. How about 95%?http://stackoverflow.com/questions/1833982/in-c-is-there-a-difference-between-throw-and-throw-ex/1834039#1834039Comment by Joshua on In C++, is there a difference between “throw” and “throw ex”?Joshua2009-12-02T17:42:14Z2009-12-02T17:42:14Z@peterchen, I hope not. That was darn useful to catch SEH exceptions, clean up, and rethrow them.http://stackoverflow.com/questions/1815004/how-can-i-compile-mysql-5-1-on-a-64-bit-centos-machine-in-order-to-achieve-high-p/1815251#1815251Comment by Joshua on How can I compile MySQL 5.1 on a 64 bit CentOS machine in order to achieve high performance?Joshua2009-11-30T19:34:42Z2009-11-30T19:34:42ZWHAT THE BLOODY? GENTOO DOES THIS FOR EVERYTHING!http://stackoverflow.com/questions/1817334/library-redefines-null/1817365#1817365Comment by Joshua on Library redefines NULLJoshua2009-11-30T01:02:56Z2009-11-30T01:02:56Znot quite should be #define NULL 0http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/687811#687811Comment by Joshua on What is the best comment in source code you have ever encountered?Joshua2009-11-27T05:41:39Z2009-11-27T05:41:39Z@Erik: primitive try/catch in C where a divide by zero called a library hook and jumped back to the message loop.http://stackoverflow.com/questions/796931/why-wasnt-code-managed-from-the-start/796979#796979Comment by Joshua on Why wasn't code "managed" from the start?Joshua2009-11-25T19:57:39Z2009-11-25T19:57:39ZIt's about garbage collection. You really can't have a managed environment without it.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407637#407637Comment by Joshua on What's your most controversial programming opinion?Joshua2009-11-24T21:00:13Z2009-11-24T21:00:13ZI had a case once where I wished I could do printf() debugging. All I could do was twiddle bits that were wired to four LEDs.http://stackoverflow.com/questions/1786257/properly-handling-platform-specifics-unix-windows-in-c/1786301#1786301Comment by Joshua on Properly handling platform specifics (unix/windows) in C?Joshua2009-11-23T22:38:01Z2009-11-23T22:38:01Z@xlyd if the fragment arguments start diverging a lot you're doing something wrong.http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/238165#238165Comment by Joshua on The funniest/weirdest error message you've got from a development environment/applicationJoshua2009-11-21T18:21:08Z2009-11-21T18:21:08ZIn the IBM PC BIOS ROM there is another message Video Error, Press F1 to continue