User Jake - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T08:06:46Z http://stackoverflow.com/feeds/user/24638 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1290305/link-in-marquee-unclickable/1290323#1290323 0 Answer by Jake for Link in Marquee unclickable! Jake 2009-08-17T20:46:12Z 2009-08-17T20:46:12Z <p>Works in Firefox 3.5. Perhaps you should upgrade or tell us which browser you are using or use JavaScript to make things scroll.</p> http://stackoverflow.com/questions/1256213/pywikipedia-bot-with-https-and-http-authentication 2 pywikipedia bot with https and http authentication Jake 2009-08-10T17:41:25Z 2009-08-14T08:03:12Z <p>I'm having trouble getting my bot to login to a MediaWiki install on the intranet. I believe it is due to the http authentication protecting the wiki. </p> <p>Facts:</p> <ol> <li>The wiki root is: <a href="https://local.example.com/mywiki/" rel="nofollow">https://local.example.com/mywiki/</a></li> <li>When visiting the wiki with a web browser, a popup comes up asking for enterprise credentials (I assume this is basic access authentication) </li> </ol> <p>This is what I have in my user-config.py:</p> <pre><code>mylang = 'en' family = 'mywiki' usernames['mywiki']['en'] = u'Bot' authenticate['local.example.com'] = ('user', 'pass') </code></pre> <p>This is what I have in mywiki_family.py:</p> <pre><code># -*- coding: utf-8 -*- import family, config # The Wikimedia family that is known as mywiki class Family(family.Family): def __init__(self): family.Family.__init__(self) self.name = 'mywiki' self.langs = { 'en' : 'local.example.com'} def scriptpath(self, code): return '/mywiki' def version(self, code): return '1.13.5' def isPublic(self): return False def hostname(self, code): return 'local.example.com' def protocol(self, code): return 'https' def path(self, code): return '/mywiki/index.php' </code></pre> <p>When I execute login.py -v -v, I get this:</p> <pre><code>urllib2.urlopen(urllib2.Request('https://local.example.com/w/index.php?title=Special:Userlogin&amp;useskin=monobook&amp;action=submit', wpSkipCookieCheck=1&amp;wpPassword=XXXX&amp;wpDomain=&amp;wpRemember=1&amp;wpLoginattempt=Aanmelden%20%26%20Inschrijven&amp;wpName=Bot, {'Content-type': 'application/x-www-form-urlencoded', 'User-agent': 'PythonWikipediaBot/1.0'})): (Redundant traceback info here) urllib2.HTTPError: HTTP Error 401: Unauthorized </code></pre> <p>(I'm not sure why it has 'local.example.com/w' instead of '/mywiki'.)</p> <p>I thought it might be trying to authenticate to example.com instead of example.com/wiki, so I changed the authenticate line to:</p> <pre><code>authenticate['local.example.com/mywiki'] = ('user', 'pass') </code></pre> <p>But then I get an HTTP 401.2 error back from IIS:</p> <blockquote> <p>You do not have permission to view this directory or page using the credentials that you supplied because your Web browser is sending a WWW-Authenticate header field that the Web server is not configured to accept.</p> </blockquote> <p>Any help on how to get this working would be appreciated.</p> <p><strong>Update</strong> After fixing my family file, it now says:</p> <blockquote> <p>Getting information for site mywiki:en ('http error', 401, 'Unauthorized', ) WARNING: Could not open '<a href="https://local.example.com/mywiki/index.php?title=Non-existing_page&amp;action=edit&amp;useskin=monobook" rel="nofollow">https://local.example.com/mywiki/index.php?title=Non-existing_page&amp;action=edit&amp;useskin=monobook</a>'. Maybe the server or your connection is down. Retrying in 1 minutes...</p> </blockquote> <p>I looked at the HTTP headers on a plan urllib2.ulropen call and it's using WWW-Authenticate: Negotiate WWW-Authenticate: NTLM. I'm guessing urllib2 and thus pywikipedia don't support this?</p> <p><strong>Update</strong> Added a tasty bounty for help in getting this to work. I can authenticate using python-ntlm. How do I integrate this into pywikipedia?</p> http://stackoverflow.com/questions/1209092/python-web-programming/1209156#1209156 2 Answer by Jake for python web programming Jake 2009-07-30T20:30:08Z 2009-07-30T20:30:08Z <p>Google App Engine uses python and runs on Google's infrastructure: <a href="http://code.google.com/appengine/" rel="nofollow">http://code.google.com/appengine/</a></p> <p>They have many tutorials and examples that can help you get started.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164475#164475 284 Answer by Jake for What real life bad habits has programming given you? Jake 2008-10-02T20:39:39Z 2009-06-19T21:24:18Z <p>I google everything.</p> http://stackoverflow.com/questions/205957/how-to-deal-with-an-inept-and-self-centered-programmer/206108#206108 1 Answer by Jake for How to deal with an inept and self-centered programmer? Jake 2008-10-15T19:36:17Z 2008-10-15T19:36:17Z <p>I work for a large company and many developers show the individual characteristics you mention, but never all of them in one person. Congrats!</p> <p>Our code base has a centralized architecture and I am on the security team. Whenever someone experiences a crash or issue somewhat related to security (logging in, authorization, or just saw a security warning in the logs) they immediately assume we caused it and send us an email asking why their app isn't working.</p> <p>The only thing you can do in this case is tell them to do the rudimentary debugging, such as getting a call stack, core dump or something that tells me what in MY stuff is going wrong. This is what I suggest you do with this guy for some of his tricks. </p> <p>If he is asking for a feature, make him write something up detailing why he needs it and nothing out there now is supplying this functionality. When you have it in writing, it's easier to disprove and/or forward to managers for support. </p> <p>I also know a guy who can't formulate questions. I just keep asking him "what do you need to know?" I think he just is working through the problem in his head and I don't hold it against him. </p> <p>Either way, get him to write things down and tell him to provide you with all the information or you can't help him. Works pretty well for me!</p> http://stackoverflow.com/questions/195169/how-do-i-stop-visual-studio-express-sp1-install-detecting-old-version-that-doesn/195188#195188 0 Answer by Jake for How do I stop Visual Studio Express SP1 install detecting old version that doesn't exist Jake 2008-10-12T07:20:11Z 2008-10-12T07:20:11Z <p>Maybe there is a registry entry that was placed by the program or something else. Run a registry cleaner (after backing the registry up) and try again.</p> http://stackoverflow.com/questions/195164/lamp-server-livecd/195185#195185 2 Answer by Jake for LAMP Server LiveCD Jake 2008-10-12T07:18:04Z 2008-10-12T07:18:04Z <p>Get UNetBootin and download a LAMP install. Run UNetBootin on it and it will create a bootable pen drive. </p> http://stackoverflow.com/questions/195162/as-a-programmer-how-do-you-deal-with-digestive-system-problem/195182#195182 2 Answer by Jake for As a programmer, how do you deal with digestive system problem? Jake 2008-10-12T07:15:59Z 2008-10-12T07:15:59Z <p>I have similar symptoms and I find eating lighter meals helps tremendously. It's also good to get light exercise, like walking. </p> http://stackoverflow.com/questions/193344/starting-compsci-uni-next-week-whats-the-best-advice-you-can-muster/193659#193659 2 Answer by Jake for Starting CompSci Uni next week, what's the best advice you can muster? Jake 2008-10-11T04:49:08Z 2008-10-11T04:49:08Z <p>After you turn in a project or get your grade, search for the program on the internet, or see what other people did. There are many ways to write a program and chances are someone has done it better. Learn from that!</p> <p>Also, if you want a job after you graduate: <strong>Get an Internship</strong>!!</p> http://stackoverflow.com/questions/192993/binary-database-aligned-or-packed 0 Binary Database Aligned or Packed Jake 2008-10-10T20:58:02Z 2008-10-11T04:11:26Z <p>Is there a way to see, via hex editor or otherwise, if data in a binary file is aligned or packed, specifically for an HPUX system?</p> http://stackoverflow.com/questions/190976/what-frustrates-you-the-most-at-your-current-workplace/191280#191280 4 Answer by Jake for What frustrates you the most at your current workplace? Jake 2008-10-10T13:30:39Z 2008-10-10T13:30:39Z <p>Salary levels and position based on years of "experience" rather than demonstrated skill. </p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/180427#180427 2 Answer by Jake for What are Code Smells? What is the best way to correct them? Jake 2008-10-07T21:07:15Z 2008-10-07T21:07:15Z <pre><code>// This should never happen. </code></pre> http://stackoverflow.com/questions/171326/how-can-i-increase-the-key-repeat-rate-beyond-the-oss-limit/171520#171520 4 Answer by Jake for How can I increase the key repeat rate beyond the OS's limit? Jake 2008-10-05T04:59:30Z 2008-10-05T04:59:30Z <p>For Windows, open regedit.exe and navigate to <code>HKEY_CURRENT_USER\Control Panel\Keyboard</code>. Change KeyboardSpeed to your liking. </p> http://stackoverflow.com/questions/171126/learning-c-and-or-c-from-beginner-to-advanced/171507#171507 1 Answer by Jake for Learning C and/or C++ from beginner to advanced Jake 2008-10-05T04:46:11Z 2008-10-05T04:46:11Z <p>One of the most helpful things for me was/is Bjarne Stroustrup's homepage. He is the creator of C++. Quite a lot of programmers don't know what the differences between C and C++ are, so don't worry about not learning one or the other unless you know exactly what you want to do as a developer. They are surprisingly different and geared for different tasks. </p> <p>After you know the basics well, start seeking out best practices. They are no-nonsense rules that someone smarter than you and me wrote to keep less experienced programmers from making dumb mistakes. My favorite C++ resource for this is the Joint Strike Fighter Air Vehicle Coding Standards. While some points can be subjective, if you follow the guidelines you will be a great programmer.</p> <p>I'd highly suggest seeking out C resources, too. The knowledge comes in handy. Search for well know C projects, like the Linux Kernel, GNOME, oh, and check out the POSIX standards while you're at it.</p> http://stackoverflow.com/questions/168979/static-and-dynamic-library-linking 2 Static and dynamic library linking Jake 2008-10-03T21:27:09Z 2008-10-04T18:46:39Z <p>In C++, static library A is linked into dynamic libraries B and C. If a class, Foo, is used in A which is defined in B, will C link if it doesn't use Foo?</p> <p>I thought the answer was yes, but I am now running into a problem with xlc_r7 where library C says Foo is an undefined symbol, which it is as far as C is concerned. My problem with that is Library C isn't using the class referencing it. This links in Win32 (VC6) and OpenVMS.</p> <p>Is this a linker discrepancy or a PEBCAK?</p> <p><strong>New info:</strong> </p> <ol> <li><p>B depends on C, but not visa-versa.</p></li> <li><p>I'm not using /OPT:REF to link on Windows and it links without issue. </p></li> </ol> http://stackoverflow.com/questions/1256213/pywikipedia-bot-with-https-and-http-authentication/1258883#1258883 Comment by Jake on pywikipedia bot with https and http authentication Jake 2009-08-17T15:18:38Z 2009-08-17T15:18:38Z I found the line it is choking on: f = uo.open(url, data) in method getUrl. After I forced it to use the authenticateUrlOpener (and introduced the ntlm handler) it throws an exception &quot;list index out of range&quot; when I go to open it. The url looks fine and data is None, so not sure why it's freaking out here. http://stackoverflow.com/questions/1256213/pywikipedia-bot-with-https-and-http-authentication/1258883#1258883 Comment by Jake on pywikipedia bot with https and http authentication Jake 2009-08-11T13:01:35Z 2009-08-11T13:01:35Z This was part of the problem, +1. I was missing the &quot;def path(self, code)&quot; line in the family part of the code. Apparently the &quot;scriptpath&quot; section wasn't doing it. http://stackoverflow.com/questions/206106/is-a-safe-way-to-convert-to-bool-in-c/206126#206126 Comment by Jake on Is !! a safe way to convert to bool in C++? Jake 2008-10-18T22:24:26Z 2008-10-18T22:24:26Z Yes, double not is confusing. It seems to do nothing, if you don't know what t is. Assumptions can be made around it. Anytime you write code, you should write it at an easy-to-understand and read level for maintainability. I do assume the people that come after me are mentally retarded. http://stackoverflow.com/questions/168979/static-and-dynamic-library-linking/170163#170163 Comment by Jake on Static and dynamic library linking Jake 2008-10-05T03:59:21Z 2008-10-05T03:59:21Z I already grep'd the crap out of it looking for anything I missed. Foo is only used by one class in A in a file that C doesn't include. None of the classes involved are being exported. The linker is complaining about specific methods in Foo, e.g. Foo::DoThis() Foo::DoThat(). http://stackoverflow.com/questions/168979/static-and-dynamic-library-linking/169006#169006 Comment by Jake on Static and dynamic library linking Jake 2008-10-05T03:45:57Z 2008-10-05T03:45:57Z I don't think this is the problem because 1. I tried different order and 2. Foo is not used by any of the other libraries. http://stackoverflow.com/questions/168979/static-and-dynamic-library-linking/169454#169454 Comment by Jake on Static and dynamic library linking Jake 2008-10-05T03:44:26Z 2008-10-05T03:44:26Z I will probably accept this answer on Monday when I am working on it again. I suppose other linkers only pull in the symbols it needs and ignores any undefined ones while xlc's wants every symbol defined.