User Gopherkhan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T08:25:12Zhttp://stackoverflow.com/feeds/user/13825http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1588295/is-oreillys-webos-book-out-of-date/1589822#15898221Answer by Gopherkhan for Is O'Reilly's WebOS book out of date?Gopherkhan2009-10-19T16:49:46Z2009-10-19T16:49:46Z<p>The book provides a decent overview of the MOJO platform, but it seems there are a few places where the code is either incomplete, or where the SDK has actually been changed since the book was submitted to O'Reilly. Your best bet would be to check out O'Reilly's errata page here: <a href="http://oreilly.com/catalog/errata.csp?isbn=9780596155254" rel="nofollow">http://oreilly.com/catalog/errata.csp?isbn=9780596155254</a> and then reference the api docs here: <a href="http://developer.palm.com/index.php?option=com%5Fcontent&view=article&id=1654" rel="nofollow">http://developer.palm.com/index.php?option=com%5Fcontent&view=article&id=1654</a> if you have any questions about whether or not what you are reading is actually current.</p>
http://stackoverflow.com/questions/703404/ie8-asynchronous-validation-of-js1IE8 -- Asynchronous Validation of JS?Gopherkhan2009-03-31T22:58:07Z2009-10-19T02:14:17Z
<p>Hey guys,</p>
<p>So I'm seeing some strange issues in ie8 with jquery, and assorted javascript files. These errors are not occurring in Firefox, Safari, or previous versions of IE. The main thing that's happening are variable undefined, mismatched bracket errors, etc... but the error changes each time you force-refresh the page. Checking the cited files reveals no such syntactical errors.</p>
<p>My question is, first, has anyone else seen such errors? It seems similar to issues with asynchronous events. Does this have something to do with the new multi-process/multi-threaded browsing features in IE8? Does IE 8 perform some sort of validation on js files immediately after they've been downloaded?</p>
<p>Thanks in advance.</p>
<p>UPDATE: Looks like it's shuffling elements of received js files into a larger js file. In the debugger it's showing a method from one file, right in the middle of code from another file. The code that the "imported" segment relies on is not to be found. Not sure what's happening here....</p>
http://stackoverflow.com/questions/1466461/recommended-movies-on-history-of-computers-programming/1472938#14729380Answer by Gopherkhan for Recommended movies on history of computers/programming?Gopherkhan2009-09-24T16:55:07Z2009-09-24T16:55:07Z<p>Weird Science ;) </p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/538811#5388112Answer by Gopherkhan for What non-programming books should programmers read?Gopherkhan2009-02-11T21:10:08Z2009-08-21T20:49:25Z<p>Hard Boiled Wonderland and The End of the World
by Haruki Murakami</p>
<p><img src="https://webapptst.lasalle.edu/wiki/images/thumb/7/7e/Hard%5FBoiled-Cover.jpeg/300px-Hard%5FBoiled-Cover.jpeg" alt="alt text" /></p>
http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/79855#798552Answer by Gopherkhan for What are the best programming and development related Blogs?Gopherkhan2008-09-17T04:03:24Z2009-07-22T19:38:18Z<p>I second <a href="http://www.artima.com" rel="nofollow">Artima</a>. I can't vote up yet :)</p>
http://stackoverflow.com/questions/1139447/java-servlet-jsp-cookie-disconnect0Java Servlet/JSP Cookie DisconnectGopherkhan2009-07-16T18:34:00Z2009-07-21T16:07:51Z
<p>Hey guys.</p>
<p>I'm having a strange issue with cookie visibility between an authentication servlet and our actual jsp. We're using a servlet to authenticate that the user is a valid user, and if they are, we go ahead and add a cookie to the HttpServletResponse with their referer url (this is so that integrations can be redirected to their own login page on logout). Logout operations go through the same servlet, and the cookie is retrieved, and the user directed back to the stored cookie url. This all works.</p>
<p>However, within my site, if I print out the cookies pulled through the pageContext.getRequest().getCookies() [Or through firebug's console] I do not find the cookie I stored at all. There's literally no trace of it. Yet, when you click the logout link, and are directed back to the authentication servlet, the cookie is found, and the redirect followed accordingly.</p>
<p>The thing is, I need to handle timeout operations in the same ways as logouts, but the timeout check is external to the servlet, in a jsp tag. Since the timeout can't find the cookie, it's just using the standard timout page, which the integrating customer wouldn't want to see. </p>
<p>Any ideas what's going on here?</p>
<p>[ANSWER]
It turned out to be a path issue. I know I didn't paste any code, but I was creating the cookie without setting a path, so the cookie was only visible within the servlet directory. Once I set a path of "/" the cookie was visible throughout the site.</p>
http://stackoverflow.com/questions/1139447/java-servlet-jsp-cookie-disconnect/1160167#11601670Answer by Gopherkhan for Java Servlet/JSP Cookie DisconnectGopherkhan2009-07-21T16:05:24Z2009-07-21T16:05:24Z<p>Actually, it turned out to be a path issue. I know I didn't paste any code, but I was creating the cookie without setting a path, so the cookie was only visible within the servlet directory. Once I set a path of "/" the cookie was visible throughout the site.</p>
http://stackoverflow.com/questions/1028967/simple-getter-setter-comments/1028996#102899614Answer by Gopherkhan for Simple Getter/Setter commentsGopherkhan2009-06-22T19:31:26Z2009-06-22T20:16:17Z<p>I'd say only worry about commenting getters and setters if they have some sort of side effect, or require some sort of precondition outside of initialization (i.e.: getting will remove an item from a data structure, or in order to set something you need to have x and y in place first). Otherwise the comments here are pretty redundant.</p>
<p>Edit: In addition, if you do find a lot of side effects are involved in your getter/setter, you might want to change the getter/setter to have a different method name (ie: push and pop for a stack) [Thanks for the comments below]</p>
http://stackoverflow.com/questions/57104/rails-binary-stream-support/1015419#10154190Answer by Gopherkhan for Rails Binary Stream supportGopherkhan2009-06-18T21:57:27Z2009-06-18T21:57:27Z<p>I've been working on a similar issue with blob image data. This doesn't really answer your question, but it might prove helpful:</p>
<p><a href="http://www.railsforum.com/viewtopic.php?id=4642" rel="nofollow">http://www.railsforum.com/viewtopic.php?id=4642</a></p>
<p>to me, the blob data support is pretty decent.</p>
http://stackoverflow.com/questions/703404/ie8-asynchronous-validation-of-js/703599#7035991Answer by Gopherkhan for IE8 -- Asynchronous Validation of JS?Gopherkhan2009-04-01T00:31:39Z2009-04-01T00:31:39Z<p>So, turns out it's an issue with specifying a mime type of 'application/javascript' instead of 'text/javascript'. Application makes ie8 go crazy....and to think we used application in the first place to get around previous ie version bugs.</p>
http://stackoverflow.com/questions/80341/best-os-app-for-outbound-smtp-packet-capture1Best OS App for Outbound SMTP Packet Capture?Gopherkhan2008-09-17T05:42:59Z2009-03-31T23:06:17Z
<p>Okay, so this probably sounds terribly nefarious, but I need such capabilities for my senior project. Essentially I'm tasked with writing something that will cut down outbound spam on a zombified pc through a system of packet interception and evaluation. We have a number of algorithms we'll use on the captured messages, but it's the actual capture -- full on interception rather than just sniffing -- that has me a bit stumped.</p>
<p>The app is being designed for windows, so I can't use IP tables. I could use the winpcap libraries, but I don't want to reinvent the wheel if I don't have to. Ettercap seemed a good option, but a test run on vista using the unofficial binaries resulted in nothing but crashes.</p>
<p>So, any suggestions?</p>
<p>Update: Great suggestions. Ended up scaling back the project a bit, but still received an A. I'm thinking Adam Mintz's answer is probably best, though we used WinPcap and Wireshark for the application.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/498161#4981610Answer by Gopherkhan for What non-programming books should programmers read?Gopherkhan2009-01-31T03:35:16Z2009-02-12T01:26:19Z<p><a href="http://rads.stackoverflow.com/amzn/click/0375726543" rel="nofollow">Secret Rendezvous</a> by Kobo Abe. Abe's the frickin' man, man. </p>
<p><img src="http://www.fantasticfiction.co.uk/images/n4/n24878.jpg" alt="http://www.fantasticfiction.co.uk/images/n4/n24878.jpg" /></p>
<p>But seriously, if you like Murakami, you owe it to yourself to check out Abe.</p>
http://stackoverflow.com/questions/473911/testng-multiple-suites-possible-to-merge-reports1TestNG, multiple suites, possible to merge reports?Gopherkhan2009-01-23T18:08:27Z2009-02-05T14:00:01Z
<p>So here's an issue at my work. I've got a few testng cases that, if run within the primary batch of test cases, wreak havock throughout the other test cases. Rather than going through and changing all our test cases, I've made a group for the involved cases. I run the main test suite, excluding that group, and then make a second ant call to run the affected group. This way all test cases pass, but I'm ending up having to create two TestNG reports so that the first one doesn't get overriden with the results from the second group.</p>
<p>So here's my question. Is it possible to merge the second test result report with the first, or am I stuck with the two?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/240887/linker-errors-c-visual-studio-20052Linker Errors C++ Visual Studio 2005Gopherkhan2008-10-27T18:06:52Z2008-10-28T07:01:37Z
<p>I'm getting a whole bunch of linker errors in Visual studios for methods I'm not even calling directly. I'm a java developer by day, but I have a project I need to do in C++, intended to run on windows machines. Hence, I'm stuck messing about with Visual Studio.</p>
<p>Bascally, I have an os project that I added an accessor method to. I compiled that project as a .lib file (compiles and links fine). </p>
<p>I then have my own project that uses that lib. I've included the library under Project->Properties -> Linker -> Input, and set the appropriate directory in the General -> Additional Lib Directories. I've included the header in the appropriate file, and I'm simply calling the constructor of one of the classes...not even calling the method that I created yet.</p>
<p>The code compiles, but I get the following mountain of linker errors -- mostly LNK2019 and LNK2001 errors. I've tried recompiling under different settings (lib, exe, etc.), and the linker errors only seem to multiply. When I switch back to the previous settings, the number of errors remain at their peak. Any ideas how to fix this?</p>
<p>Build Log</p>
<p>Build started: Project: SpamCapture, Configuration: Debug|Win32</p>
<p>Command Lines</p>
<p>Creating temporary file "c:\SpamCapture\SpamCapture\SpamCapture\Debug\RSP0000103081740.rsp" with contents
[
/VERBOSE:LIB /OUT:"C:\SpamCapture\SpamCapture\SpamCapture\Debug\SpamCapture.exe" /INCREMENTAL /LIBPATH:"C:\SpamCapture\Config\Debug\" /MANIFEST /MANIFESTFILE:"Debug\SpamCapture.exe.intermediate.manifest" /NODEFAULTLIB:"libcmtd.lib" /NODEFAULTLIB:"nafxcwd.lib" /DEBUG /PDB:"c:\SpamCapture\SpamCapture\SpamCapture\Debug\SpamCapture.pdb" /SUBSYSTEM:CONSOLE /MACHINE:X86 KeyCapture_Config.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib</p>
<p>".\Debug\Interaction.obj"</p>
<p>".\Debug\InteractionSet.obj"</p>
<p>".\Debug\LogReader.obj"</p>
<p>".\Debug\SpamCapture.obj"</p>
<p>".\Debug\stdafx.obj"</p>
<p>".\Debug\SpamCapture.res"</p>
<p>".\Debug\SpamCapture.exe.embed.manifest.res"
]
Creating command line "link.exe @c:\SpamCapture\SpamCapture\SpamCapture\Debug\RSP0000103081740.rsp /NOLOGO /ERRORREPORT:PROMPT"</p>
<p>Output Window</p>
<p>Linking...
LINK : warning LNK4067: ambiguous entry point; selected 'mainCRTStartup'
Searching libraries
Searching C:\SpamCapture\Config\Debug\KeyCapture_Config.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\kernel32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\user32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\gdi32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\winspool.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\comdlg32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\advapi32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\shell32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\ole32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\oleaut32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\uuid.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbc32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbccp32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\msvcprtd.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\MSVCRTD.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\OLDNAMES.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\lib\mfc80ud.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\lib\mfcs80ud.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\msimg32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\comctl32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\shlwapi.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\lib\atlsd.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\wininet.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\ws2_32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\mswsock.lib:
Searching C:\SpamCapture\Config\Debug\KeyCapture_Config.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\kernel32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\user32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\gdi32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\winspool.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\comdlg32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\advapi32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\shell32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\ole32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\oleaut32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\uuid.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbc32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbccp32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\msvcprtd.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\MSVCRTD.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\OLDNAMES.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\lib\mfc80ud.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\lib\mfcs80ud.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\msimg32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\comctl32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\shlwapi.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\lib\atlsd.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\wininet.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\ws2_32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\mswsock.lib:
Searching C:\SpamCapture\Config\Debug\KeyCapture_Config.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\kernel32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\user32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\gdi32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\winspool.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\comdlg32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\advapi32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\shell32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\ole32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\oleaut32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\uuid.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbc32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbccp32.lib:
Searching C:\Program Files\Microsoft Visual Studio 8\VC\lib\msvcprtd.lib:
Finished searching libraries</p>
<p>Linker Errors start here:</p>
<p>KeyCapture_Config.lib(KeyCapture_ConfigDlg.obj) : error LNK2001: unresolved external
symbol "public: virtual int __thiscall CWnd::Create(char const *,char const *,unsigned
long,struct tagRECT const &,class CWnd *,unsigned int,struct CCreateContext *)"
(?Create@CWnd@@UAEHPBD0KABUtagRECT@@PAV1@IPAUCCreateContext@@@Z)</p>
<p>... a bunch more like this</p>
<p>KeyCapture_Config.lib(KeyCapture_ConfigDlg.obj) : error LNK2019: unresolved external
symbol "public: struct HICON__ * <strong>thiscall CWinApp::LoadIconA(unsigned int)const "
(?LoadIconA@CWinApp@@QBEPAUHICON</strong>@@I@Z) referenced in function "public: __thiscall
CKeyCapture_ConfigDlg::CKeyCapture_ConfigDlg(class CWnd *)"
(??0CKeyCapture_ConfigDlg@@QAE@PAVCWnd@@@Z)</p>
<p>...a bunch more like this</p>
<p>(?DoDataExchange@SetupDialog@@MAEXPAVCDataExchange@@@Z)
C:\SpamCapture\SpamCapture\SpamCapture\Debug\SpamCapture.exe : fatal error LNK1120: 34 unresolved externals</p>
<p>Results</p>
<p>Build log was saved at "file://c:\SpamCapture\SpamCapture\SpamCapture\Debug\BuildLog.htm"
SpamCapture - 44 error(s), 1 warning(s)</p>
http://stackoverflow.com/questions/80470/performance-of-an-large-directory-structure-networked-application0Performance of an large directory structure, networked applicationGopherkhan2008-09-17T06:12:43Z2008-09-17T16:32:33Z
<p>I'm trying to find out what the performance of a large directory structure would be if deep directories were to be accessed on a shared, nfs filesystem. The structure would be excessively large, with 4 levels of nested directories, each level containing 1024 directories. (1024 at root, 1024 in a given subdirectory, and so on).</p>
<p>This filesystem would be on a network repository that users would be accessing for their personal information. The data would be replicated on multiple servers and load-balanced, but still, each machine would have a decent load at all times.</p>
<p>If the 4th level contained the information that the users were looking for, how bad would the performance be? If all were accessing different subdirectories? Could this be resolved by caching inode information, or no? </p>
<p>I've been searching on this for a while, but I'm primarily finding information on large files rather than large directory structures. </p>
http://stackoverflow.com/questions/80470/performance-of-an-large-directory-structure-networked-application/80508#805080Answer by Gopherkhan for Performance of an large directory structure, networked applicationGopherkhan2008-09-17T06:21:43Z2008-09-17T06:21:43Z<p>It's for a project at my work. Some layers will be related to user accounts, while others will be used for settings/widgets/addons for those accounts, and so on. I believe the file system would be ext3 on a Linux server.</p>
http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/80477#804770Answer by Gopherkhan for What are the best movies about Geeks/Programmers/Hackers. (for inspiration)Gopherkhan2008-09-17T06:14:32Z2008-09-17T06:14:32Z<p>lol. Didn't read the "for inspiration" part. Make that Superman III instead.</p>
http://stackoverflow.com/questions/80341/best-os-app-for-outbound-smtp-packet-capture/80432#804320Answer by Gopherkhan for Best OS App for Outbound SMTP Packet Capture?Gopherkhan2008-09-17T06:05:00Z2008-09-17T06:05:00Z<p>Thanks, CDV. I'll look into that as well. Good call about the legality check. I've actually been trying to use gnu public license projects so far.</p>
http://stackoverflow.com/questions/80341/best-os-app-for-outbound-smtp-packet-capture/80426#804260Answer by Gopherkhan for Best OS App for Outbound SMTP Packet Capture?Gopherkhan2008-09-17T06:02:39Z2008-09-17T06:02:39Z<p>Ilkka: I was looking at Wireshark, but from what I could tell, that didn't handle the interception aspect -- only the sniffing and logging. The thing the professor's looking for is to prevent the spams from getting out onto the network.</p>
<p>Adam: I'll definitely look into Winsock. I haven't checked that out yet. Only thing is the app's due in about 2 months, so if there are any OS apps that build off the WinSock SPI, I might want to tie into those. Know of any off the top of your head? </p>
http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/80397#803970Answer by Gopherkhan for What are the best movies about Geeks/Programmers/Hackers. (for inspiration)Gopherkhan2008-09-17T05:55:53Z2008-09-17T05:55:53Z<p>Dude, Evilspeak. Clint Howard is a nerd at a military academy. He's picked on by bullies morning, noon, and night...that is, until he contacts Satan on his IBM Compatible 286!!!! Bloody revenge in the monochrome era. Highly recommended.</p>
http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/80390#803900Answer by Gopherkhan for Do you listen to anything while programming?Gopherkhan2008-09-17T05:53:25Z2008-09-17T05:53:25Z<p>The weekly <a href="http://www.2600.com" rel="nofollow">Off the Hook</a>. Indie rock, J-Pop, the occasional youtube lecture.</p>
http://stackoverflow.com/questions/1588295/is-oreillys-webos-book-out-of-date/1589822#1589822Comment by Gopherkhan on Is O'Reilly's WebOS book out of date?Gopherkhan2009-10-19T22:47:15Z2009-10-19T22:47:15ZI think you could probably do just fine by checking the API and reading the forums, but the book's nice if you want to get away from the computer and read on paper. Still, over 100 pages of the book is API documentation, which should be viewed online in its most current format. Up to you :)http://stackoverflow.com/questions/1139447/java-servlet-jsp-cookie-disconnect/1139620#1139620Comment by Gopherkhan on Java Servlet/JSP Cookie DisconnectGopherkhan2009-07-16T21:58:05Z2009-07-16T21:58:05ZHowever, going to any subsequent page, even without a redirect, loses the cookie... Still working on that part.http://stackoverflow.com/questions/1139447/java-servlet-jsp-cookie-disconnect/1139620#1139620Comment by Gopherkhan on Java Servlet/JSP Cookie DisconnectGopherkhan2009-07-16T19:22:17Z2009-07-16T19:22:17ZAwesome. That worked. Thanks.http://stackoverflow.com/questions/1139447/java-servlet-jsp-cookie-disconnect/1139620#1139620Comment by Gopherkhan on Java Servlet/JSP Cookie DisconnectGopherkhan2009-07-16T19:08:00Z2009-07-16T19:08:00ZI'm actually using HttpServletResponse's sendRedirect(...). So I'd use that in the servlet to redirect to the main site after authenticating and storing the cookie? I'll try it out.http://stackoverflow.com/questions/1139447/java-servlet-jsp-cookie-disconnect/1139488#1139488Comment by Gopherkhan on Java Servlet/JSP Cookie DisconnectGopherkhan2009-07-16T18:56:48Z2009-07-16T18:56:48ZNo, it's all on the same domain. the servlet resides in its own directory though, while the jsp pages are served out of roothttp://stackoverflow.com/questions/1028967/simple-getter-setter-comments/1028996#1028996Comment by Gopherkhan on Simple Getter/Setter commentsGopherkhan2009-06-22T19:49:44Z2009-06-22T19:49:44Zakf, I was thinking exactly that after posting :) I guess I'll add it to my response.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/538811#538811Comment by Gopherkhan on What non-programming books should programmers read?Gopherkhan2009-03-05T17:07:49Z2009-03-05T17:07:49Z:) You'll have to find that out yourself.http://stackoverflow.com/questions/239739/what-is-the-best-free-plugin-for-eclipse-that-allows-for-formatting-indenting-cle/240054#240054Comment by Gopherkhan on What is the best free plugin for Eclipse that allows for formatting/indenting/cleanup of JSP code?Gopherkhan2009-02-12T19:59:12Z2009-02-12T19:59:12Zyah, the formatter in WTP has broken pages on me numerous times. http://stackoverflow.com/questions/473911/testng-multiple-suites-possible-to-merge-reports/515998#515998Comment by Gopherkhan on TestNG, multiple suites, possible to merge reports?Gopherkhan2009-02-11T20:51:44Z2009-02-11T20:51:44ZSounds good to me. Right now I just have the two reports generating as is. I've configured cruise control to make them available as separate artifacts. Once I have a bit more time, I'm definitely going to try out your solution.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/180946#180946Comment by Gopherkhan on What non-programming books should programmers read?Gopherkhan2009-01-31T03:18:43Z2009-01-31T03:18:43ZTerrible friggin cover.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/78124#78124Comment by Gopherkhan on What non-programming books should programmers read?Gopherkhan2009-01-31T03:17:43Z2009-01-31T03:17:43ZNot my fave Murakami, but okay. Reading Hard Boiled Wonderland and The End of the World at the moment. Possibly even better than Wind Up Bird.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/39444#39444Comment by Gopherkhan on What non-programming books should programmers read?Gopherkhan2009-01-31T03:15:58Z2009-01-31T03:15:58ZGreat book. I've been recommending it to all my friends.http://stackoverflow.com/questions/240887/linker-errors-c-visual-studio-2005/240957#240957Comment by Gopherkhan on Linker Errors C++ Visual Studio 2005Gopherkhan2008-10-27T18:46:41Z2008-10-27T18:46:41Zthanks for the article linkhttp://stackoverflow.com/questions/240887/linker-errors-c-visual-studio-2005/240957#240957Comment by Gopherkhan on Linker Errors C++ Visual Studio 2005Gopherkhan2008-10-27T18:41:12Z2008-10-27T18:41:12ZThe actual Project I'm integrating with can be found here:
<a href="http://dynamicnetservices.com/~will/academic/textinput/keycapture/" rel="nofollow">dynamicnetservices.com/~will/academic/…</a>
Runtime Library is set to Multi-threaded Debug DLL (/MDd). Should I be doing this somewhere else?http://stackoverflow.com/questions/240887/linker-errors-c-visual-studio-2005/240924#240924Comment by Gopherkhan on Linker Errors C++ Visual Studio 2005Gopherkhan2008-10-27T18:39:05Z2008-10-27T18:39:05ZActually, I set libcmtd.lib and nafxcwd.lib to ignore, as I was receiving a number of LNK2005 errors for those. See:
error LNK2005: "public: virtual void __thiscall CWnd::PreSubclassWindow(void)"
(?PreSubclassWindow@CWnd@@UAEXXZ) already defined in mfc80ud.lib(MFC80UD.DLL)