User Chris Noe - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:39:20Zhttp://stackoverflow.com/feeds/user/14749http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118342/how-to-search-cvs-comment-history2How to search cvs comment historyChris Noe2008-09-23T00:06:42Z2009-11-17T22:55:55Z
<p>I am aware of this command:
<code>cvs log -N -w<userid> -d"1 day ago"</code></p>
<p>Unfortunately this generates a formatted report with lots of newlines in it, such that the file-path, the file-version, and the comment-text are all on separate lines. Therefore it is difficult to scan it for all occurrences of comment text, (eg, grep), and correlate the matches to file/version.</p>
<p>(Note that the log output would be perfectly acceptable, if only cvs could perform the filtering natively.)</p>
<p>EDIT: Sample output. A block of text like this is reported for each repository file:</p>
<pre>
RCS file: /data/cvs/dps/build.xml,v
Working file: build.xml
head: 1.49
branch:
locks: strict
access list:
keyword substitution: kv
total revisions: 57; selected revisions: 1
description:
----------------------------
revision 1.48
date: 2008/07/09 17:17:32; author: noec; state: Exp; lines: +2 -2
Fixed src.jar references
----------------------------
revision 1.47
date: 2008/07/03 13:13:14; author: noec; state: Exp; lines: +1 -1
Fixed common-src.jar reference.
=============================================================================
</pre>
http://stackoverflow.com/questions/1675615/disable-highlighting-in-an-html-select-box2Disable highlighting in an HTML SELECT boxChris Noe2009-11-04T18:04:54Z2009-11-04T18:17:09Z
<p>I have a select box, <code><select multiple=true</code>, that the user populates with values via a Picklist mechanism. I would like to disable highlighting in this box because, by definition, the values in this box <em>are</em> the selection.</p>
<p>Just to clarify, I am NOT referring to text selection, which is what <code>::selection</code> operates on. I'm talking about the usually blue highlighting that the browser applies to selected line item(s) when the user clicks on them.</p>
<p>I'm not worried about the user blindly clicking around, because I am auto-selecting all items onsubmit so that all the values get sent.</p>
http://stackoverflow.com/questions/1669274/passing-a-shortcut-to-a-batch-script0Passing a shortcut to a batch scriptChris Noe2009-11-03T18:30:41Z2009-11-03T20:15:38Z
<p>My bat script accepts a filepath as a parameter, which allows me to drag-and-drop a file onto it from Explorer. Unfortunately when I drop a shortcut onto it, I simply get the filepath of the .lnk file itself, rather than the file that it refers to. Is there any way to derive the underlying filepath?</p>
<p>I am looking for a native capability in Windows XP that is directly available to bat/cmd without installing or configuring additional software.</p>
http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files91Underused features of Windows batch filesChris Noe2008-10-29T00:34:22Z2009-10-23T12:45:09Z
<p>I think everyone agrees that DOS batch scripting is lame. Nonetheless there are many situations where it is expedient, or you must maintain existing scripts.</p>
<p>Guidelines:</p>
<ul>
<li>One feature per answer</li>
<li>Give both a short <strong>description</strong> of the feature and an <strong>example</strong>, not just a link to documentation</li>
<li>Limit answers to <strong>native funtionality</strong>, i.e., does not require additional software, like the <em>Windows Resource Kit</em></li>
</ul>
<p>Clarification: We refer here to scripts that are processed by cmd.exe, which is the default on WinNT variants.</p>
<p>(See also: <a href="http://stackoverflow.com/questions/148968/windows-batch-files-bat-vs-cmd">Windows batch files: .bat vs .cmd?</a>)</p>
http://stackoverflow.com/questions/148968/windows-batch-files-bat-vs-cmd46Windows batch files: .bat vs .cmd?Chris Noe2008-09-29T14:39:07Z2009-10-08T21:52:40Z
<p>As I understand it, <code>.bat</code> is the old 16-bit naming convention, and <code>.cmd</code> is for 32-bit Windows, i.e., starting with NT. But I continue to see .bat files everywhere, and they seem to work exactly the same using either suffix. Assuming that my code will never need to run on anyhting older than NT, does it really matter which way I name my batch files, or is there some <strong>gotcha</strong> awaiting me by using the wrong suffix?</p>
http://stackoverflow.com/questions/133051/what-is-the-difference-between-visibilityhidden-and-displaynone22What is the difference between visibility:hidden and display:noneChris Noe2008-09-25T12:37:47Z2009-10-02T21:27:30Z
<p>Both of these result in the element not being visible. Are these synonyms?</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered10What is the worst class/variable/function name you have ever encounteredChris Noe2008-09-27T14:28:01Z2009-09-24T13:55:40Z
<p>Naming things well is arguably Job 1 for professional programmers. Yet we have all suffered from some bad naming choices from time to time. So just to vent a little, what are some doozies that you may have run across?</p>
<p><hr /></p>
<p>Just to get things started:</p>
<p>One of our original developers wasn't sure what to call a secondary key - on what turned out to be a primary table for this app - so he called it: <code>DL2WhateverTheHellThatIs</code>.</p>
<p>Unfortunately this system generates entity mappings from the XML, and attributes defined there result in classes, methods, and constants that are referenced through-out the app. To this day it is very hard to find a source file that does <em>not</em> reference this, er, <em>thing</em>! A few actual examples:</p>
<pre>
DL2WhateverTheHellThatIsBean cos = (DL2WhateverTheHellThatIsBean)itr.next();
String code = getDL2WhateverTheHellThatIs().getCode();
From from = new From("DL2WhateverTheHellThatIs");
String filter = "_dL2WhateverTheHellThatIs._code";
</pre>
<p>(Very difficult to refactor)</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/118556#11855612Answer by Chris Noe for Hidden Features of JavaScript?Chris Noe2008-09-23T01:06:46Z2009-09-22T20:38:14Z<p>There are several answers in this thread showing how to
extend the Array object via its prototype. This is a BAD
IDEA, because it breaks the <code>for (i in a)</code> statement.</p>
<p>So is it okay if you don't happen to use <code>for (i in a)</code>
anywhere in your code? Well, only if your own code is the
only code that you are running, which is not too likely
inside a browser. I'm afraid that if folks start extending
their Array objects like this, Stack Overflow will start
overflowing with a bunch of mysterious JavaScript bugs.</p>
<p>See helpful details <a href="http://web-graphics.com/2006/05/23/on-modifying-prototypes-of-javascript-built-ins/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/148968/windows-batch-files-bat-vs-cmd/149918#14991842Answer by Chris Noe for Windows batch files: .bat vs .cmd?Chris Noe2008-09-29T18:03:44Z2009-08-05T12:42:55Z<p>Here is a compilation of verified information from the various answers and cited references in this thread:</p>
<ol>
<li><code>command.com</code> is the 16-bit command processor introduced in MS-DOS and was also used in the Win9x series of operating systems.</li>
<li><code>cmd.exe</code> is the 32-bit command processor introduced in Windows NT, (64-bit Windows OS's also have a 64-bit version). <code> cmd.exe</code> was never part of Win9x.</li>
<li>The <code>ComSpec</code> env variable defines which program is launched by <code>.bat</code> and <code>.cmd</code> scripts. (Starting with WinNT this defaults to <code>cmd.exe</code>.)</li>
<li><code>cmd.exe</code> is backward compatible with <code>command.com</code>.</li>
<li>A script that is designed for <code>cmd.exe</code> can be named <code>.cmd</code> to prevent accidental execution on Windows 9x.</li>
</ol>
<p>Here is a list of <code>cmd.exe</code> features that are not supported by <code>command.com</code>:</p>
<ul>
<li>Long filenames (exceeding the 8.3 format)</li>
<li>Command history</li>
<li>Tab completion</li>
<li>Escape character: <code>^</code> (Use for: <code>\ & | > < ^</code>)</li>
<li>Directory stack: <code>PUSHD</code>/<code>POPD</code></li>
<li>Integer arithmetic: <code>SET /A</code> i=%i%+1</li>
<li>Search/Replace/Substring: <code>SET %varname:expression%</code></li>
<li>Command substitution: <code>FOR /F</code></li>
<li>Subshells: <code> `command` </code></li>
<li>Functions: <code>CALL :label</code></li>
</ul>
<p>References:</p>
<ul>
<li><a href="http://www.ss64.com/ntsyntax/" rel="nofollow">cmd.exe</a></li>
<li><a href="http://www.321site.com/greg/courses/os/handouts/doscmdref.pdf" rel="nofollow" title="PDF">command.com</a></li>
</ul>
<p>wikipedia: <a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5Fcomputer%5Fshells" rel="nofollow">Comparison of command shells</a></p>
http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/1228895#12288950Answer by Chris Noe for Underused features of Windows batch filesChris Noe2009-08-04T17:34:22Z2009-08-04T17:34:22Z<p>The goto :eof pasteboard</p>
<p>I add "goto :eof" to end of my scripts as a handy space for code fragments. That way I can quickly copy/paste to and from this area, without having to comment/uncomment.</p>
<pre><code>goto :eof
:: code scraps
call this.bat
call that.bat
set TS=%DATE:~10%%DATE:~4,2%%DATE:~7,2%-%TIME:~0,2%%TIME:~3,2%%TIME:~6%%
for /R C:\temp\ %%G in (*.bak) DO del %%G
</code></pre>
http://stackoverflow.com/questions/761179/firefox-3-address-bar-auto-complete-dependency/761373#7613734Answer by Chris Noe for firefox 3 address bar auto-complete dependencyChris Noe2009-04-17T17:24:26Z2009-07-20T23:37:06Z<p>Firefox stores all this information in <a href="http://www.sqlite.org/" rel="nofollow">SQLite</a> databases. You can query it directly if you have SQLite installed. You can also browse it using the <a href="http://code.google.com/p/sqlite-manager/" rel="nofollow">SQLite Manager</a> Firefox plugin.</p>
<p>In summary, the url history is stored in moz_places, and the various "phrases" that you have typed in the address bar are associated with <em>places</em> via moz<code>_</code>inputhistory, which is a child table.</p>
<p>Their algorithm seems to be: as you type each character into the address bar, query moz<code>_</code>inputhistory for matching entries and display them in descending order by use_count.</p>
<p>Hope that helps.</p>
<p>EDIT: This site has a bunch of good information about the Firefox databases: <a href="http://www.firefoxforensics.com/" rel="nofollow">firefoxforensic.com</a></p>
http://stackoverflow.com/questions/507602/how-to-initialise-a-static-map-in-java/1134205#1134205-1Answer by Chris Noe for How to Initialise a static Map in JavaChris Noe2009-07-15T21:29:54Z2009-07-15T21:29:54Z<p>Java 5 provides this more compact syntax:</p>
<pre><code>static final Map<String , String> FLAVORS = new HashMap<String , String>() {{
put("Up", "Down");
put("Charm", "Strange");
put("Top", "Bottom");
}};
</code></pre>
http://stackoverflow.com/questions/1069245/can-eclipse-monitor-an-arbitrary-log-file-in-the-console-view4Can eclipse monitor an arbitrary log file in the Console view?Chris Noe2009-07-01T13:51:30Z2009-07-01T14:33:44Z
<p>I am launching my JBoss server in eclipse, and so standard out/err displays in the Console view. But there are other logs being generated by log4j, and so I need to be able to monitor some of those as well. Is there anyway to "tail" an arbitrary file - with the nice source code hyperlinks that the Console view provides, of course.</p>
<p>(I am using myeclipse 7.5, which is eclipse 3.4.2)</p>
http://stackoverflow.com/questions/1033867/debugging-autoproxy-pac-javascript-with-alert1Debugging autoproxy (PAC) javascript with alert()?Chris Noe2009-06-23T17:00:01Z2009-06-29T16:25:24Z
<p>I am writing a custom .pac script for use with Firefox. Following numerous examples I've seen, I intersperse alert()s in order to debug it, but no alerts popup, even though the script is clearly being invoked. (I am clicking "Reload" in the "Connection settings" after each change to my script. I have even tried restarting Firefox.)</p>
<p>Are alerts supposed to work from PAC scripts? Maybe this is an IE-only feature?</p>
http://stackoverflow.com/questions/1033867/debugging-autoproxy-pac-javascript-with-alert/1040339#10403390Answer by Chris Noe for Debugging autoproxy (PAC) javascript with alert()?Chris Noe2009-06-24T19:12:18Z2009-06-24T19:12:18Z<p>Ah Ha! The alert messages are getting logged to the console. I actually prefer that to alert popups anyway.</p>
http://stackoverflow.com/questions/849994/what-are-your-real-world-uses-for-aspect-oriented-programming4What are your real world uses for Aspect Oriented Programming?Chris Noe2009-05-11T20:42:36Z2009-06-21T06:24:27Z
<p>I'm stumped as to why adoption of AO has been so slow. There are plenty of rich implementations out there for the predominant languages. My guess is that, like OO in it's day, it is enough of a paradigm shift that people don't recognize the places where it could be helping them.</p>
<p>So, beyond non-invasive logging, what are some of the ways that you have used, or plan to use AO, that reduces complexity, improves maintenance, enhances system <a href="http://en.wikipedia.org/wiki/Ilities" rel="nofollow">"ilities"</a>?</p>
http://stackoverflow.com/questions/947404/sed-line-range-all-but-the-last-line1sed line range, all but the last lineChris Noe2009-06-03T21:38:11Z2009-06-03T21:51:36Z
<p>You can specify a range of lines to operate on. For example, to operate on all lines, (which is of course the default):</p>
<pre><code>sed -e "1,$ s/a/b/"
</code></pre>
<p>But I need to operate on all but the last line. You apparently can't use arithmetic expressions:</p>
<pre><code>sed -e "1,$-1 s/a/b/"
</code></pre>
<p>(I am using cygwin in this case, if it make a difference)</p>
http://stackoverflow.com/questions/860597/how-can-i-tell-what-a-website-was-written-in/863218#8632182Answer by Chris Noe for How can I tell what a website was written in?Chris Noe2009-05-14T13:04:36Z2009-05-14T20:21:30Z<p>If page suffixes have ".do" then it's most likely Java using Struts.</p>
<p>This is the default configuration, and the suffix can be changed to anything the developer chooses. But most apps keep the default.</p>
http://stackoverflow.com/questions/860597/how-can-i-tell-what-a-website-was-written-in/860653#8606532Answer by Chris Noe for How can I tell what a website was written in?Chris Noe2009-05-13T22:01:59Z2009-05-14T20:20:56Z<p>If page suffixes have ".faces" then it's most likely Java using JSF.</p>
http://stackoverflow.com/questions/272360/does-opacity0-have-exactly-the-same-effect-as-visibilityhidden3Does opacity:0 have exactly the same effect as visibility:hiddenChris Noe2008-11-07T15:10:44Z2009-04-12T19:59:56Z
<p>If so, does it effectively deprecate the <code>visibility</code> property?</p>
<p>(I realize that Internet Explorer does not yet support this CSS2 property.)
<br/>
<a href="http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(CSS)#Properties" rel="nofollow">Comparisons of layout engines</a></p>
<p><a href="http://stackoverflow.com/questions/133051/what-is-the-difference-between-visibilityhidden-and-displaynone">See also: What is the difference between visibility:hidden and display:none</a></p>
http://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer/702735#7027351Answer by Chris Noe for What is your "best friend" as a programmer?Chris Noe2009-03-31T19:45:58Z2009-03-31T19:45:58Z<p>Backspace, the key that I type the most.</p>
http://stackoverflow.com/questions/684336/does-google-offer-the-ability-to-ban-results-systematically-from-certain-sources/684372#6843720Answer by Chris Noe for Does Google offer the ability to ban results systematically from certain sources without the -site string?Chris Noe2009-03-26T02:58:26Z2009-03-26T15:55:44Z<p>As an alternative to excluding results, I have a greasemonkey script that highlights google search results by domain. I configure subtle colors for a few sites of interest to me, like wikipedia & stackoverflow. But I use red for expertsexchange, which allows me to visually skip right over it.</p>
<p>I can publish my script if there is interest...</p>
<p>If you want to whip up your own script, you need to operate on two kinds of elements. Here are the two XPath expressions that I use:</p>
<pre><code>//cite[contains(., '" + domain + "')]/ancestor::li[1]
//span[@class='a'][contains(., '" + domain + "')]/ancestor::div[@class='g']
</code></pre>
<p>Then I just apply background-color styles to matching elements. Pretty straight forward.</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey5Hidden features of GreasemonkeyChris Noe2008-09-23T13:59:36Z2009-03-19T23:49:02Z
<p>What are some of the lesser-known but useful features and techniques that people are using in their Greasemonkey scripts?</p>
<p>(Please, just one feature per answer.)</p>
<p>Similar threads:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden Features of JavaScript</a></li>
<li><a href="http://beta.stackoverflow.com/questions/15496/hidden-features-of-java" rel="nofollow">Hidden Features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden Features of C++</a></li>
<li><a href="http://beta.stackoverflow.com/questions/9033/hidden-features-of-c" rel="nofollow">Hidden Features of C#</a></li>
</ul>
http://stackoverflow.com/questions/659970/why-is-it-not-advisable-to-have-the-database-and-web-server-on-the-same-machine/660271#6602710Answer by Chris Noe for Why is it not advisable to have the database and web server on the same machine?Chris Noe2009-03-18T21:58:26Z2009-03-18T21:58:26Z<p>Operating system is another consideration. While your database may require larger memory spaces and therefore UNIX, your web server - or more specifically your app server since you mention only two tiers - may be a .Net-based, and therefore require Windows.</p>
http://stackoverflow.com/questions/104568/accessing-greasemonkey-metadata-from-within-your-script5Accessing Greasemonkey metadata from within your script?Chris Noe2008-09-19T19:01:05Z2009-02-27T14:54:26Z
<p>Is there any way that my script can retrieve metadata values that are declared in its own header? I don't see anything promising in the API, except perhaps <code>GM_getValue()</code>. That would of course involve a special name syntax. I have tried, for example: <code>GM_getValue("@name")</code>.</p>
<p>The motivation here is to avoid redundant specification.</p>
<p>If GM metadata is not directly accessible, perhaps there's a way to read the body of the script itself. It's certainly in memory somewhere, and it wouldn't be too awfully hard to parse for <code>"// @"</code>. (That may be necessary in my case any way, since the value I'm really interested in is <code>@version</code>, which is an extended value read by <a href="http://userscripts.org/" rel="nofollow">userscripts.org</a>.)</p>
http://stackoverflow.com/questions/104568/accessing-greasemonkey-metadata-from-within-your-script/112148#1121483Answer by Chris Noe for Accessing Greasemonkey metadata from within your script?Chris Noe2008-09-21T21:01:34Z2009-02-27T14:54:26Z<p>Building on Athena's answer, here is my generalized solution that yields an object of name/value pairs, each representing a metadata property. Note that certain properties can have multiple values, (@include, @exclude, @require, @resource), therefore my parser captures those as Arrays - or in the case of @resource, as a subordinate Object of name/value pairs.</p>
<pre>
var scriptMetadata = parseMetadata(.toString());
function parseMetadata(headerBlock)
{
// split up the lines, omitting those not containing "// @"
var lines = headerBlock.split(/[\r\n]+/).filter(/\/\/ @/);
// initialize the result object with empty arrays for the enumerated properties
var metadata = { include: [], exclude: [], require: [], resource: {} };
for each (var line in lines)
{
[line, name, value] = line.match(/\/\/ @(\S+)\s*(.*)/);
if (metadata[name] instanceof Array)
metadata[name].push(value);
else if (metadata[name] instanceof Object) {
[rName, rValue] = value.split(/\s+/); // each resource is named
metadata[name][rName] = rValue;
}
else
metadata[name] = value;
}
return metadata;
}
// example usage
GM_log("version: " + scriptMetadata["version"]);
GM_log("res1: " + scriptMetadata["resource"]["res1"]);
</pre>
<p>This is working nicely in my scripts.</p>
<p>EDIT: Added @resource and @require, which were introduced in Greasemonkey 0.8.0.</p>
http://stackoverflow.com/questions/492480/what-type-of-development-do-you-find-most-interesting/492557#4925576Answer by Chris Noe for What type of development do you find most interesting?Chris Noe2009-01-29T17:17:57Z2009-01-29T17:17:57Z<p>I like building anything as long as I can see my user's reaction. Prototyping and evolving GUIs certainly applies here. But I've also gotten the same satisfaction from developing batch code because it filled a real need, and the users played the driving role.</p>
<p>The greatest impediment to producing excellent software is insulating the development team from the users. Too many projects "quarantine" the development organization.</p>
http://stackoverflow.com/questions/398963/what-is-the-worst-web-usability-error-you-have-encountered/400946#4009460Answer by Chris Noe for What is the worst web usability error you have encountered?Chris Noe2008-12-30T17:36:53Z2008-12-30T17:36:53Z<p><strong>IE applications</strong></p>
<p>Any app that assumes IE is not a "web application".</p>
http://stackoverflow.com/questions/393882/cross-browser-techniques-for-disabling-password-caching6Cross-browser techniques for disabling password cachingChris Noe2008-12-26T15:23:49Z2008-12-26T16:24:17Z
<p>Saving and auto-filing of username/password is a feature of most modern browsers. And the user can generally choose to disable this feature on a per domain basis. But is there a standard way for the site itself to prevent password caching?</p>
<p>The emphasis here is cross-browser, so I would employ multiple parallel mechanisms if necessary.</p>
<p>(I have seen caching be effectively disabled in the presence of non-standard login fields, eg, an extra hidden password field. But I'd rather not depend on <em>side-effects</em> whose behavior could unexpectedly change in the future.)</p>
<p>Conversely, are there browsers/versions out there that implement password caching without any disable feature?</p>
http://stackoverflow.com/questions/369406/what-are-your-favorite-eclipse-plug-ins/372005#3720050Answer by Chris Noe for What are your favorite Eclipse plug-ins?Chris Noe2008-12-16T17:19:27Z2008-12-16T17:19:27Z<p><a href="http://www.geocities.com/richard_hoefter/ContextMenuPlugin/" rel="nofollow">ContextMenuPlugin</a> makes the Windows Explorer context menu available when right-clicking on objects in navigator views, and on editor frames. It passes the clicked file or folder to the selected function.</p>
<p>This is especially valuable if you have useful Explorer extensions. I use this to invoke Tortoise CVS & SVN functions, to open a Command prompt in the corresponding directory, etc.</p>
http://stackoverflow.com/questions/1669274/passing-a-shortcut-to-a-batch-script/1669875#1669875Comment by Chris Noe on Passing a shortcut to a batch scriptChris Noe2009-11-11T16:52:22Z2009-11-11T16:52:22ZWell then I guess my batch file can generate the .vbs file on the fly, and then execute it. Yeah! Ugh!http://stackoverflow.com/questions/1675615/disable-highlighting-in-an-html-select-boxComment by Chris Noe on Disable highlighting in an HTML SELECT boxChris Noe2009-11-06T01:58:33Z2009-11-06T01:58:33ZA Picklist is that UI mechanism where items are selected from a list/tree, (usually on the left), by copying/moving them to an accumulator list, (usually on the right), by dragging or by clicking arrows. My question concerns the accumulator list.http://stackoverflow.com/questions/1675615/disable-highlighting-in-an-html-select-box/1675662#1675662Comment by Chris Noe on Disable highlighting in an HTML SELECT boxChris Noe2009-11-04T18:18:45Z2009-11-04T18:18:45ZConcur, disabling carries other visual baggage. So styling the select color is what I guess I'm looking to do. But how?http://stackoverflow.com/questions/1336126/does-every-web-request-send-the-browser-cookies/1336244#1336244Comment by Chris Noe on Does every web request send the browser cookies?Chris Noe2009-08-26T19:32:17Z2009-08-26T19:32:17ZIs this true with HTTP 1.1, which is a multiplexing scheme? I.e., the requests are bundled into a single TCP connection. Of course every request is received with a copy of the cookie attached. But if the concern is lots of transmission duplication, HTTP 1.1 is in a position to optimize. Though I don't know if it actually does...http://stackoverflow.com/questions/891158/how-do-you-place-stackoverflow-flair-on-facebook/891210#891210Comment by Chris Noe on How do you place Stackoverflow Flair on Facebook?Chris Noe2009-08-20T19:01:42Z2009-08-20T19:01:42ZNo way to do it without using an application? I'm a luddite, I don't trust applications.http://stackoverflow.com/questions/1033867/debugging-autoproxy-pac-javascript-with-alert/1049798#1049798Comment by Chris Noe on Debugging autoproxy (PAC) javascript with alert()?Chris Noe2009-08-11T20:23:37Z2009-08-11T20:23:37ZIt occurs to me that alert() probably requires a Window object, and being a network-level operation, there certainly is no Window object yet. There's not even a TCP connection yet, since the PAC script is helping decide how we're going to connect...http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/245425#245425Comment by Chris Noe on Underused features of Windows batch filesChris Noe2009-07-06T20:28:39Z2009-07-06T20:28:39ZHowever, if you want a subroutine to set an errorlevel, you will need to use exit /b. For example: exit /b 3http://stackoverflow.com/questions/1069245/can-eclipse-monitor-an-arbitrary-log-file-in-the-console-view/1069468#1069468Comment by Chris Noe on Can eclipse monitor an arbitrary log file in the Console view?Chris Noe2009-07-01T17:38:26Z2009-07-01T17:38:26Z@VonC, thanks NTail looks good. Perhaps a little too easy to truncate the underlying log file, but a nice little analog to the builtin Console view.http://stackoverflow.com/questions/1069245/can-eclipse-monitor-an-arbitrary-log-file-in-the-console-view/1069319#1069319Comment by Chris Noe on Can eclipse monitor an arbitrary log file in the Console view?Chris Noe2009-07-01T17:30:19Z2009-07-01T17:30:19ZHmm, eclipse 3.4.2 doesn't seem to load it from the dropins directory. Myeclipse complains, "missing: bundle org.jdt.jdtcommons". Not obvious how to resolve that.http://stackoverflow.com/questions/282099/whats-the-hi-lo-algorithm/282113#282113Comment by Chris Noe on What's the Hi/Lo AlgorithmChris Noe2009-06-30T15:48:09Z2009-06-30T15:48:09ZAre the hi & lo values typically then composed into a single integer value, or as a two-part business key?http://stackoverflow.com/questions/282099/whats-the-hi-lo-algorithm/282113#282113Comment by Chris Noe on What's the Hi/Lo AlgorithmChris Noe2009-06-30T13:15:39Z2009-06-30T13:15:39ZAre you saying that "low ranges" are coordinated within the client, while the "high sequence" corresponds to a DB sequence?http://stackoverflow.com/questions/1033867/debugging-autoproxy-pac-javascript-with-alert/1049798#1049798Comment by Chris Noe on Debugging autoproxy (PAC) javascript with alert()?Chris Noe2009-06-26T16:19:22Z2009-06-26T16:19:22ZInteresting. I wonder why they unilaterally convert alerts to log dumps. I suppose popping alerts during such a low-level operation is considered unacceptable.http://stackoverflow.com/questions/1033867/debugging-autoproxy-pac-javascript-with-alert/1034346#1034346Comment by Chris Noe on Debugging autoproxy (PAC) javascript with alert()?Chris Noe2009-06-24T15:09:49Z2009-06-24T15:09:49ZAccording to <a href="http://support.microsoft.com/kb/271361" rel="nofollow">support.microsoft.com/kb/271361</a>, that's an IE feature. That key does not appear anywhere in my registry, and I doubt that it would affect Firefox.http://stackoverflow.com/questions/860597/how-can-i-tell-what-a-website-was-written-in/863218#863218Comment by Chris Noe on How can I tell what a website was written in?Chris Noe2009-06-22T17:36:24Z2009-06-22T17:36:24Z"blatant" : brazenly obvious; flagrant; tastelessly conspicuous.
"blatent" : subtle misspelling; hardly worth mentioning.
http://stackoverflow.com/questions/135647/how-do-badges-work-in-stackoverflow/1007899#1007899Comment by Chris Noe on How do "Badges" work in Stackoverflow?Chris Noe2009-06-18T13:22:16Z2009-06-18T13:22:16ZGranted that some are from multiple posts, but many are not. It's disconcerting to get hey-great-answer, hey-great-answer, weeks or months after you posted it, and with many more posts "under the bridge".