User Jake - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T08:06:46Zhttp://stackoverflow.com/feeds/user/24638http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1290305/link-in-marquee-unclickable/1290323#12903230Answer by Jake for Link in Marquee unclickable!Jake2009-08-17T20:46:12Z2009-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-authentication2pywikipedia bot with https and http authenticationJake2009-08-10T17:41:25Z2009-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&useskin=monobook&action=submit', wpSkipCookieCheck=1&wpPassword=XXXX&wpDomain=&wpRemember=1&wpLoginattempt=Aanmelden%20%26%20Inschrijven&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&action=edit&useskin=monobook" rel="nofollow">https://local.example.com/mywiki/index.php?title=Non-existing_page&action=edit&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#12091562Answer by Jake for python web programmingJake2009-07-30T20:30:08Z2009-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#164475284Answer by Jake for What real life bad habits has programming given you?Jake2008-10-02T20:39:39Z2009-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#2061081Answer by Jake for How to deal with an inept and self-centered programmer?Jake2008-10-15T19:36:17Z2008-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#1951880Answer by Jake for How do I stop Visual Studio Express SP1 install detecting old version that doesn't existJake2008-10-12T07:20:11Z2008-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#1951852Answer by Jake for LAMP Server LiveCDJake2008-10-12T07:18:04Z2008-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#1951822Answer by Jake for As a programmer, how do you deal with digestive system problem?Jake2008-10-12T07:15:59Z2008-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#1936592Answer by Jake for Starting CompSci Uni next week, what's the best advice you can muster?Jake2008-10-11T04:49:08Z2008-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-packed0Binary Database Aligned or PackedJake2008-10-10T20:58:02Z2008-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#1912804Answer by Jake for What frustrates you the most at your current workplace?Jake2008-10-10T13:30:39Z2008-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#1804272Answer by Jake for What are Code Smells? What is the best way to correct them?Jake2008-10-07T21:07:15Z2008-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#1715204Answer by Jake for How can I increase the key repeat rate beyond the OS's limit?Jake2008-10-05T04:59:30Z2008-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#1715071Answer by Jake for Learning C and/or C++ from beginner to advancedJake2008-10-05T04:46:11Z2008-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-linking2Static and dynamic library linkingJake2008-10-03T21:27:09Z2008-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#1258883Comment by Jake on pywikipedia bot with https and http authenticationJake2009-08-17T15:18:38Z2009-08-17T15:18:38ZI 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 "list index out of range" 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#1258883Comment by Jake on pywikipedia bot with https and http authenticationJake2009-08-11T13:01:35Z2009-08-11T13:01:35ZThis was part of the problem, +1. I was missing the "def path(self, code)" line in the family part of the code. Apparently the "scriptpath" section wasn't doing it.http://stackoverflow.com/questions/206106/is-a-safe-way-to-convert-to-bool-in-c/206126#206126Comment by Jake on Is !! a safe way to convert to bool in C++?Jake2008-10-18T22:24:26Z2008-10-18T22:24:26ZYes, 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#170163Comment by Jake on Static and dynamic library linkingJake2008-10-05T03:59:21Z2008-10-05T03:59:21ZI 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#169006Comment by Jake on Static and dynamic library linkingJake2008-10-05T03:45:57Z2008-10-05T03:45:57ZI 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#169454Comment by Jake on Static and dynamic library linkingJake2008-10-05T03:44:26Z2008-10-05T03:44:26ZI 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.