User David Leonard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T08:26:19Zhttp://stackoverflow.com/feeds/user/19502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/655045/eclipse-still-using-http-proxyhost-settings-when-no-longer-set/1196317#11963173Answer by David Leonard for Eclipse still using http.proxyHost settings when no longer setDavid Leonard2009-07-28T19:41:25Z2009-07-28T19:41:25Z<p>It's a bug in the preferences panel. You can see it if you tail your workspace/.metadata/.log file.</p>
<p>The workaround (at least in Eclipse 3.4.2) is:</p>
<ul>
<li>Open <strong>Window > Preferences</strong>, then <strong>General > Network Connections</strong></li>
<li>Select <strong>Manual proxy configuration</strong></li>
<li>Click the <strong>Add Host...</strong> button to add a 'No Proxy' entry</li>
<li>Enter a random entry, say 'localhost' and click <strong>OK</strong></li>
<li>Click <strong>Direct connection to the Internet</strong></li>
<li>Close the property panel with the <strong>OK</strong> button.</li>
</ul>
http://stackoverflow.com/questions/858216/is-there-any-way-to-throttle-the-network-bandwidth-that-an-svn-checkout-does/858979#8589791Answer by David Leonard for Is there any way to throttle the network bandwidth that an svn checkout does?David Leonard2009-05-13T16:30:28Z2009-05-13T16:30:28Z<p>If you have sophisticated networking on your workstation (like OpenBSD's firewall or Linux's traffic control) then you should configure traffic shaping based on destination network.</p>
http://stackoverflow.com/questions/209869/what-is-the-accepted-way-to-send-64-bit-values-over-json/858857#8588571Answer by David Leonard for What is the accepted way to send 64-bit values over JSON?David Leonard2009-05-13T16:08:16Z2009-05-13T16:08:16Z<p>Javascript's Number type (64 bit IEEE 754) only has about 53 bits of precision.</p>
<p>But, if you don't need to do any addition or multiplication, then you could keep 64-bit value as 4-character strings as JavaScript uses UTF-16.</p>
<p>For example, 1 could be encoded as "\u0000\u0000\u0000\u0001". This has the advantage that value comparison (==, >, <) works on strings as expected. It also seems straightforward to write bit operations:</p>
<pre><code>function and64(a,b) {
var r = "";
for (var i = 0; i < 4; i++)
r += String.fromCharCode(a.charCodeAt(i) & b.charCodeAt(i));
return r;
}
</code></pre>
http://stackoverflow.com/questions/591300/how-can-i-modify-password-expiration-in-windows-using-python/603428#6034281Answer by David Leonard for How can I modify password expiration in Windows using Python?David Leonard2009-03-02T18:29:00Z2009-03-02T18:29:00Z<p>If you are running your python script with ActvePython against Active Directory, then you can use something like this:</p>
<pre><code>import win32com.client
ads = win32com.client.Dispatch('ADsNameSpaces')
user = ads.getObject("", "WinNT://DOMAIN/username,user")
user.Getinfo()
user.Put('userAccountControl', 65536 | user.Get('userAccountControl'))
user.Setinfo()
</code></pre>
<p>But if your python is running under unix, you need two things to talk to Active Directory: Kerberos and LDAP. Once you have a SASL(GSSAPI(KRB5)) authenticated LDAP connection to your Active Directory server, then you access the target user's "userAccountControl" attribute. </p>
<p>userAccountControl is an integer attribute, treated as a bit field, on which you must set the DONT EXPIRE PASSWORD bit. See <a href="http://support.microsoft.com/kb/305144" rel="nofollow">this KB article</a> for bit values.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/117951#11795136Answer by David Leonard for Hidden Features of JavaScript?David Leonard2008-09-22T22:13:25Z2009-03-02T17:50:40Z<p>Here are some interesting things:</p>
<ul>
<li>Comparing NaN with anything (even NaN) is always false.</li>
<li>Array.sort can take a comparator function and is usually called by a quicksort-like driver (depends on implementation).</li>
<li>Regular expression "constants" can maintain state (like the last thing they matched)</li>
<li>Some versions of javascript allow you to access $0, $1, $2 members on a regex.</li>
<li>null is unlike anything else. It is neither an object, a boolean, a number, a string, nor undefined. It's a bit like an "alternate" undefined. (note: typeof null == "object")</li>
<li>In the outermost context, 'this' yields the otherwise unnameable [Global] object.</li>
<li>Declaring a variable with 'var', instead of just relying on automatic declaration of the variable gives the runtime a real chance of optimizing access to that variable</li>
<li>the 'with' construct will destroy such optimzations</li>
<li>Variable names can contain Unicode.</li>
<li>JavaScript regular expressions are not actually regular. They are based on Perl's regexs, and it is possible to construct expressions with lookaheads that take a very, very long time to evaluate.</li>
<li>Blocks can be labeled and used as the targets of break. Loops can be labeled and used as the target of continue.</li>
<li>Arrays are not sparse. Setting the 1000th element of an otherwise empty array should fill it with undefined.</li>
<li>if(new Boolean(false)){...} will execute the true block</li>
</ul>
<p><em>[updated a little in response to good comments; please see comments]</em></p>
http://stackoverflow.com/questions/480395/is-gwt-slow-or-normal/601420#6014201Answer by David Leonard for Is gwt slow or normal ? David Leonard2009-03-02T06:14:09Z2009-03-02T06:14:09Z<p>The compiled apps themselves do not run slow, but the GWT compiler is slower than a frozen snail with a lobotomy.</p>
http://stackoverflow.com/questions/117826/how-do-i-set-the-desktop-background-on-windows-from-a-script2How do I set the desktop background on Windows from a script?David Leonard2008-09-22T21:41:42Z2008-09-23T02:24:06Z
<p>On X Windows I had a cool 'silent-alarm" reminder script that would change my root window (background) color to solid red, just for a few seconds a few moments before changing it back. Is there a way to do this for Windows XP?</p>
<p>I'm thinking some kind of scheduled task that uses cscript to set registry keys (HKEY_CURRENT_USER\Control Panel\Desktop) . However my attempts don't seem to have any effect. What do I have to signal to read those registry entries and re-draw the desktop?</p>
http://stackoverflow.com/questions/118100/what-tool-do-you-use-to-do-burndown-charts/118106#1181060Answer by David Leonard for What tool do you use to do burndown charts?David Leonard2008-09-22T22:56:46Z2008-09-22T22:56:46Z<p>We use something locally based on <a href="http://opentcdb.org/" rel="nofollow">http://opentcdb.org/</a> but that does scrum tracking, and draws pretty graphs.</p>
http://stackoverflow.com/questions/117422/how-can-i-resolve-the-drifting-clock-for-my-virtual-machine/118029#1180292Answer by David Leonard for How can I resolve the drifting clock for my Virtual Machine?David Leonard2008-09-22T22:33:03Z2008-09-22T22:33:03Z<p>vmware have <a href="http://www.vmware.com/pdf/vmware_timekeeping.pdf" rel="nofollow">a really good PDF doc</a> on this problem.</p>
<p>Basically, the host will slew the ticks delivered to your guests as it can.
<strong>Don't</strong> run NTP or timed or junk like that. Just install vmware-guestd and let the host slew your ticks. If you still lose ticks, then any other solution will have major drift too.</p>
<p>If you can, use a guest OS that has a low frequency tick rate. Newer versions of Linux come with 1000Hz ticks, but it used only to be 100Hz. That seems easier for the host to deliver. A kernel rebuild is usually needed to change the HZ value.</p>
http://stackoverflow.com/questions/117991/is-there-anything-like-code-taste/118007#1180071Answer by David Leonard for Is there anything like code taste?David Leonard2008-09-22T22:27:50Z2008-09-22T22:27:50Z<p>No. No there isn't.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/107403#1074030Answer by David Leonard for What was your first home computer?David Leonard2008-09-20T06:38:01Z2008-09-20T06:38:01Z<p>Mine was the Apple ][e ... and learning the 6502.. mind-expanding stuff.</p>
<p>Wow, this is a nostalgia thread. How come plastic these days doesn't have the excitement that it had back then?? I am looking at the great images of machines people have posted above, the machines that I recognise and I can recall the totally awesome power I felt when my hands were on them. Yet I have my hands right now on a quantifiably much much much more powerful laptop... yet it feels lame in comparison.</p>
<p>Bring back POKE!</p>
http://stackoverflow.com/questions/107148/the-quick-hack-you-are-most-proud-of/107378#1073781Answer by David Leonard for The quick hack you are most proud ofDavid Leonard2008-09-20T06:29:11Z2008-09-20T06:29:11Z<p>I had an Apple //c as a kid with a 512kiB expansion card, that I initially used as a ramdisk. One day when playing with bank switching registers, I hacked up a small bit of code that caught the 60Hz mouse interrupts and switched in the 'next' bank. The effect was a (flickery) illusion of 10 multitasking applebasic prompts. The weird effect I remember was that because keyboard input was polled from an I/O-mapped memory location, typing on the keyboard would deliver the keystroke into an indeterminate 'vm'. I ditched the thing as pointless, and years later when taking an OS class recognised its potential. Sadly, when I went looking for it I found my parents had donated my //c to a junior school.</p>
http://stackoverflow.com/questions/107317/how-do-i-get-the-value-of-a-jsobject-property-from-c/107346#1073460Answer by David Leonard for How do I get the value of a JSObject property from C?David Leonard2008-09-20T06:07:17Z2008-09-20T06:07:17Z<p>JS_GetProperty()</p>
http://stackoverflow.com/questions/188693/is-the-destructor-called-if-the-constructor-throws-an-exception/188882#188882Comment by David Leonard on Is the destructor called if the constructor throws an exception?David Leonard2009-09-15T00:53:06Z2009-09-15T00:53:06ZHerb Sutter's article is wrong for C# and Java. The finalizers appear to be run even if the constructors throw an exception.http://stackoverflow.com/questions/254281/best-practices-for-overriding-isequal-and-hash/254380#254380Comment by David Leonard on Best practices for overriding isEqual: and hashDavid Leonard2009-03-09T05:32:42Z2009-03-09T05:32:42ZWhere did the 1231:1237 come from? I see it in Java's Boolean.hashCode() too. Is it magical?