User benc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T04:34:40Zhttp://stackoverflow.com/feeds/user/2910http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/703612/using-firebug-lite-1-2-would-you-use-it-in-production-sites0Using Firebug Lite (1.2) would you use it in production sites?benc2009-04-01T00:37:40Z2009-12-05T23:00:02Z
<p>I tried to use Firebug Lite (via the bookmarklet and also adding it to one of my web sites).</p>
<p>I seem to get the alert:</p>
<p>"Unable to detect the following script "firebug-lite.js" ... if the script has been renamed then please set the value of firebug.env.liteFilename to reflect this change"</p>
<p>Alot. Especially when I try to close the tab. This happens in Firefox, Camino and Safari.</p>
<p>What I'm wondering is, is this ready for use, or do I need to copy the code, post it locally and hack it? I already checked the documentation, and it was pretty limited.</p>
<p>I was also looking at the mod dates and the site appears to have been relatively idle since mid-2008. </p>
http://stackoverflow.com/questions/191023/how-does-windows-actually-detect-lan-proxy-settings-when-using-automatic-config/1648343#16483430Answer by benc for How does Windows actually detect LAN (proxy) settings when using Automatic Configurationbenc2009-10-30T06:39:22Z2009-10-30T06:39:22Z<p>The IE configuration described enables a WPAD implementation. Here's the <a href="http://technet.microsoft.com/en-us/library/cc713344.aspx" rel="nofollow">Microsoft explanation of the entire mechanism</a> (probably too much detail for a single post).</p>
http://stackoverflow.com/questions/1453765/security-implications-of-a-limited-function-server/1600219#16002191Answer by benc for Security implications of a limited function serverbenc2009-10-21T11:23:32Z2009-10-21T11:23:32Z<p>Unless you have experience writing server software, I would simply use Postfix as the MTA, and process the messages using whatever interfaces it offers (rather than let it forward mail to your application via SMTP.</p>
<p>I would avoid writing a new custom MTA, that is simply another layer that you have to implement and secure. </p>
<p>Don't underestimate:</p>
<p>1- The complexity of security, especially if you are not experienced with attacks in that area.</p>
<p>2- The possible longevity of your system. It might not seem worth attacking now, but what if it were left on for 10 years...?</p>
http://stackoverflow.com/questions/226701/what-do-you-think-when-a-boolean-if-has-three-resulting-code-paths3What do you think when a Boolean "if" has three resulting code paths?benc2008-10-22T17:02:19Z2009-10-20T09:59:55Z
<p>(Background: from a previous job, a co-worker and I would end up discussing the bug pile during lunch. We began to develop a topic called "bug of the week". I doubt I have material for 52 posts a year, but here's the first one...)</p>
<p>Reported by:</p>
<p>QA tester was reading HTML/JS code to write a functional test of a web form, and saw:</p>
<pre><code>if (form_field == empty)
{
...do stuff for empty field
}
else if (form_field != empty)
{
...do stuff for non-empty field
}
else
{
...do stuff that will never be done
}
</code></pre>
<p>After a couple embarassing attempts, tester realized that they couldn't trigger the alert strings hidden in the third block.</p>
<p>Things I'm wondering are:</p>
<ul>
<li>Is this problem more or less language specific (can non-JS people learn lessons here?)</li>
<li>Are there legitimate reasons code ended up this way?</li>
<li>What approaches should be used to find/address the problem (code coverage, code review, blackbox testing, etc.)</li>
</ul>
<p>A couple other points:</p>
<ol>
<li><p>I'm hoping we can keep it positive. Imagine this is a person you work with (in a company that does not encourage flaming). Whatever mean things you might think of the guilty party, I probably already thought them too.</p></li>
<li><p>I'm not a coder by profession. I checked the wiki box, in case someone wants to provide a more literal example, or add to the base of the thread.</p></li>
</ol>
<p>[EDIT] Similar to <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them</a></p>
http://stackoverflow.com/questions/1543107/what-is-the-cleverest-ui-feature-you-have-seen-in-a-website/1558398#15583981Answer by benc for What is the cleverest UI feature you have seen in a website?benc2009-10-13T05:52:15Z2009-10-13T05:52:15Z<p>This is a bit esoteric, because it really applies to just wiki-tech, but I think the edit-by-section feature of some wiki's is great. I have to use several different wiki's, and when you are editing a really large page in a wiki that does not support edit-by-section (or worse, also doesn't support preview your diff), you feel like like every change could result in disaster.</p>
http://stackoverflow.com/questions/1510219/setting-the-timeout-in-tcp/1550094#15500941Answer by benc for Setting the Timeout in TCPbenc2009-10-11T07:28:05Z2009-10-11T07:28:05Z<p>You could set it to that, but you would be decreasing the amount of cushion you are giving variations in RTT by half.</p>
<p>If you have wide variances in RTT, which can happen in more situations than you realize, then you would be setting the timeout value relatively low.</p>
<p>Because this timeout controls the re-transmission of data, setting this level lower almost certainly means that the number of re-transmission will increase in certain scenarios. The concern would be that these re-transmissions are unnecessary, and possibly increase utilization of an already saturated network.</p>
http://stackoverflow.com/questions/866292/service-that-takes-xxx-1-2-3-4-theservice-com-and-resolves-to-ip-1-2-3-4/1489099#14890991Answer by benc for service that takes xxx.1.2.3.4.theservice.com and resolves to IP 1.2.3.4benc2009-09-28T20:06:55Z2009-09-28T20:06:55Z<p>It sounds like what you need to do is set up your own internal DNS server.</p>
<p>You can create whatever domains you want, and any systems you point to that server will use the entries you create.</p>
http://stackoverflow.com/questions/1368794/why-is-my-local-wcf-clients-ip-not-127-0-0-1/1487756#14877560Answer by benc for Why is my local WCF client's IP not 127.0.0.1?benc2009-09-28T15:38:22Z2009-09-28T15:38:22Z<p>My recollection with older versions of windows is that Windows is a little annoying in this category, because it seems to be self-naming. In other words, rather than letting ALL naming obey your configuration choices for DNS and /etc/hosts, Windows seems to think it can server the information for its own hostname (even if it might be different than what the external naming service says).</p>
<p>So, what you might be seeing is that Windows is matching the hostname to the IP address of the main interface. That would explain why you cannot map the hostname with /etc/hosts.</p>
<p>(FYI: This is my interpretation of my past personal experiences and the problem description. I did not spend time working with this configuration, so there could be more to this than I mentioned.)</p>
http://stackoverflow.com/questions/197344/getting-dns-servers-on-windows/1485529#14855290Answer by benc for Getting DNS servers on Windowsbenc2009-09-28T05:18:15Z2009-09-28T05:18:15Z<p>I could not find an API in MSDN, but I did find this line command:</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa916844.aspx" rel="nofollow">IPv6 dp6dns</a></p>
</blockquote>
http://stackoverflow.com/questions/846948/dynamic-port/1481148#14811480Answer by benc for Dynamic portbenc2009-09-26T12:54:06Z2009-09-26T12:54:06Z<p>To clarify the other end...</p>
<p>Servers of "standard application protocols", like HTTP and FTP have a port assigned to them by a standards body IANA. For example, in the case of HTTP, the default port is "80".</p>
<p>Unless the client selects a non-standard port, web connections are always made to port 80.</p>
<p>The web server is always listening on port 80, it never goes anywhere.</p>
<p>Separately, some protocols use "dynamic protocol assignment", where the protocol number of a service can change, but there is a way to make sure the changing port number is known.</p>
http://stackoverflow.com/questions/1473440/does-a-udp-client-for-the-time-service-need-to-check-the-length-of-the-read-dat0Does a "UDP Client For the TIME Service" need to check the length of the read data before converting?benc2009-09-24T18:39:26Z2009-09-25T05:17:14Z
<p>I'm in the middle of of reading Internetworking with TCP/IP Vol III, by Comer.</p>
<p>I am looking at a some sample code for a "TIME" client for UDP.</p>
<p>The code gets to the point where it does the read of the response, and it takes what should be a 4 bytes and converts it to a 32 bit unsigned integer, so it can be converted to UNIX time.</p>
<p>"n" is a file descriptor that points to a socket that listens for UDP.</p>
<pre><code>n = read (s, (char *)&now, sizeof(now));
if (n < 0)
errexit("read failed: %s\n", strerror(errno));
now = ntohl((u_long)now); /* put in host byte order */
</code></pre>
<p>What I am wondering is:</p>
<p>Are there some assumptions that should be checked before making the conversion? This is in C, and I am wondering if there are situations where read would pass a number of bytes that is not 4. If so, it seems like "now" would be a mess.</p>
<p>"Now" is defined as:</p>
<pre><code>time_t now; /* 32-bit integer to hold time */
</code></pre>
<p>So maybe I don't understand the nature of "time_t", or how the bytes are passed around in C, or what situations UDP would return the wrong number of bytes to the file descriptor...</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/943817/what-would-you-like-your-software-developers-to-learn/1472889#14728890Answer by benc for What would you like your software developers to learn?benc2009-09-24T16:47:07Z2009-09-24T16:47:07Z<p><a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">Smart and gets things done.</a> This is a JOSW site.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1470286#14702861Answer by benc for What's your most controversial programming opinion?benc2009-09-24T07:44:54Z2009-09-24T07:44:54Z<p><strong>QA can be done well, over the long haul, without exploring all forms of testing</strong></p>
<p>Lots of places seem to have an "approach", how "we do it". This seems to implicitly exclude other approaches. </p>
<p>This is a serious problem over the long term, because the primary function of QA is to file bugs -and- get them fixed. </p>
<p>You cannot do this well if you are not finding as many bugs as possible. When you exclude methodologies, for example, by being too black-box dependent, you start to ignore entire classes of discoverable coding errors. That means, by implication, you are making entire classes of coding errors unfixable, except when someone else stumbles on it.</p>
<p>The underlying problem often seems to be management + staff. Managers with this problem seem to have narrow thinking about the computer science and/or the value proposition of their team. They tend to create teams that reflect their approach, and a whitelist of testing methods.</p>
<p>I am not saying you can or should do everything all the time. Lets face it, some test methods are simply going to be a waste of time for a given product. And some methodologies are more useful at certain levels of product maturity. But what I think is missing is the ability of testing organizations to challenge themselves to learn new things, and apply that to their overall performance.</p>
<p>Here's a hypothetical conversation that would sum it up:</p>
<blockquote>
<p>Me: You tested that startup script for <strong>10</strong> years, and you managed to learn NOTHING about shell scripts and how they work?!</p>
<p>Tester: Yes.</p>
<p>Me: Permissions?</p>
<p>Tester: The installer does that</p>
<p>Me: Platform, release-specific dependencies?</p>
<p>Tester: We file bugs for that</p>
<p>Me: Error handling?</p>
<p>Tester: when errors happen to customer support sends us some info.</p>
<p>Me: Okay...(starts thinking about writing post in stackoverflow...)</p>
</blockquote>
http://stackoverflow.com/questions/772362/client-server-communication/1464324#14643240Answer by benc for client-server communicationbenc2009-09-23T06:50:40Z2009-09-23T06:50:40Z<p>If this is a client/server environment, so the client is going to need to know the server address.</p>
<p>If you are using gethostbyname, then the name resolution systems that are actually supported (DNS, NIS, etc.) will vary by OS and system configuration.</p>
<p>The most common configuration is to use DNS. In this case, it is worth noting that the server cannot easily discovery its own name on the network (or name itself). This is because the naming service that the client will use is external to the server. The server has a local idea of what its hostname and it's resolver's default domain, but they are not necessarily the FQDN that DNS externally maps to the server's IP addresses.</p>
http://stackoverflow.com/questions/1260242/which-ftp-transfer-modes-are-widely-used/1464286#14642860Answer by benc for Which FTP transfer modes are widely used?benc2009-09-23T06:36:26Z2009-09-23T06:36:26Z<p>It sounds like you are mostly concerned with interoperability. The answer is a bit different between client and server.</p>
<p>For server, you want to implement the basic modes that clients use. For every client, you need to support a minimum of one configuration, so the number of combinations should be relatively low. Beyond the minimum, supporting active -and- passive mode would probably the major addition (the mozilla community has wanted passive support for a long time, and <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=465" rel="nofollow">it is probably never going to happen</a>).</p>
<p>If you are a client, providing good URL support and date/time handling is probably the biggest barrier. </p>
http://stackoverflow.com/questions/1405019/is-there-a-generally-available-https-post-smoke-test/1464216#14642160Answer by benc for Is there a generally available HTTPS POST smoke test?benc2009-09-23T06:11:52Z2009-09-23T06:11:52Z<p>SSL adds a lot of complexity to the transaction, and you actually should break it up into two pieces.</p>
<p>You should do an GET w/ HTTPS first. When I was smoke testing networking for Netscape/AOL/Mozilla, I used <a href="http://www.verisign.com" rel="nofollow">http://www.verisign.com</a>, because that was the home page for the main certificate vendor. I did not test the HTTP/SSL implementation itself, but we figured that while we are sitting around clicking on links in a build, we may as well do some SSL versions of the HTTP requests.</p>
<p>I cannot easily think of a good https: URL that uses POST, but I actually think it matters a lot less. </p>
<p>Once you know that SSL is working w/ HTTP at all, failures that are request-specific are going to be pretty limited, based on my recollection. Then again, this area was not assigned directly to me, so take that with a grain of salt.</p>
<p>My more recent thinking about testing is that test groups need to setup their systems, especially test servers. You would probably get better mileage by getting a good working set of instructions on how to configure HTTPS w/ a self signed certs, and then create your own internal POST test pages.</p>
http://stackoverflow.com/questions/710756/ie8-var-w-window-open-message-invalid-argument1ie8 var w= window.open() - "Message: Invalid argument."benc2009-04-02T17:27:47Z2009-09-22T20:46:36Z
<p>I have a site that has an IE8-only problem:</p>
<p>The code is: </p>
<pre><code>var w = window.open(urlstring, wname, wfeatures, 'false');
</code></pre>
<p>The error is:</p>
<blockquote>
<p>Message: Invalid argument.<br />
Line: 419
Char: 5<br />
Code: 0<br />
URI: <a href="http://HOSTNAME/js_context.js" rel="nofollow">http://HOSTNAME/js_context.js</a></p>
</blockquote>
<p>I have confirmed the line number of the code (the "Line" and "URI" are correct), and I understand in later versions of IE8, this is considered accurate.</p>
<p>I have checked all the incoming parameters in the call by dumping alerts, and they all look valid.</p>
<p>This problem does not happen on FF (probably 3) and IE7 when the popup-blocker is off.</p>
<p>(Interestingly, the IE7 popup-blocker creates the same error when it is on.)</p>
<p>UPDATE:</p>
<p>The problem appears to be in using assigning the result of window.open() when doing "var w". When I split the line into two statements it works in IE8.</p>
<p>UPDATE2: </p>
<p>Based on: </p>
<p><a href="http://javascript.crockford.com/code.html" rel="nofollow">http://javascript.crockford.com/code.html</a></p>
<blockquote>
<p>When a function is to be invoked
immediately, the entire invocation
expression should be wrapped in parens
so that it is clear that the value
being produced is the result of the
function and not the function itself.</p>
</blockquote>
<p>This is not exactly what is going on here, but I found that applying the principle solved the problem, in IE8's compatability mode.</p>
<pre><code>var w = (window.open(urlstring, wname, wfeatures, false));
</code></pre>
http://stackoverflow.com/questions/119672/how-would-you-organize-a-timezone-dropdown/316624#3166240Answer by benc for How would you organize a timezone dropdown?benc2008-11-25T07:52:21Z2009-08-29T14:59:56Z<p>The answer depends on the sophistication of the timezone support.</p>
<p><strong>Minimal - "one selection per hour.'</strong></p>
<p>Looking at the original iPod, the timezone selection is simply a list of zones. Each appears twice, with a non-DST and a DST entry.</p>
<p>iPod (root menu) -> Settings -> Date & Time -> Set Time Zone -> (list).</p>
<p>Example entries:</p>
<ul>
<li>Hawaii</li>
<li>Hawaii (DST).</li>
</ul>
<p>There appear to be about ~20 pairs, so this is probably a list of "heavily populated zones". Since the built-in clock does not support auto-DST calculations, this is really a "I got off the plane and I want to hack my clock temporarily" interface. </p>
<p>A sizable number of rarer use cases are not supported, like non-hour offsets.</p>
<p><strong>Fully featured - time zone selection</strong></p>
<p>If the number if time zones is small, I would present the "Area/Location" format, sorted by standard GMT offset.</p>
<p>Sorting by the current offset (Standard vs. DST) is probably too much work, and the general order will be the same. Most people understand time zones enough where they can pick the correct on.</p>
<p>The most important factor is number of items. If the list gets very long, then you might want to used a multi-tab list, where you make a geographic grouping (or simply make the tabs group by "Area").</p>
<p>I am working on the time zone support of several products right now, and that is my recent experience.</p>
http://stackoverflow.com/questions/958504/redirect-localhost-through-proxy/1318808#13188080Answer by benc for Redirect localhost through proxy?benc2009-08-23T15:26:36Z2009-08-23T15:26:36Z<p>It depends on your browser. In Firefox, check to see that "no proxy" is empty. By default Firefox blocks proxy of URLs to localhost and 127.0.0.1.</p>
<p><a href="https://developer.mozilla.org/en/No%5FProxy%5FFor%5Fconfiguration" rel="nofollow">mozilla.org</a></p>
http://stackoverflow.com/questions/598695/custom-time-zone/1285923#12859230Answer by benc for custom time zonebenc2009-08-17T02:19:07Z2009-08-17T02:19:07Z<p>WARNING: You should be very careful about creating your own time zone, even if you think your systems are isolated. </p>
<p>This could cause problems with exchanging information with other systems, both from conversion errors as well as exception handling.</p>
<p>If the time zone you want is legally recognized, you should consider bothering your vendor to properly add you to the time zone repository they use.</p>
http://stackoverflow.com/questions/1278635/how-do-you-figure-out-what-the-neighboring-zipcodes-are/1278684#12786840Answer by benc for How do you figure out what the neighboring zipcodes are?benc2009-08-14T15:57:48Z2009-08-14T15:57:48Z<p>You need to use a GIS database and ask it for ZIP codes that are nearby your current location.</p>
<p>You cannot simply take the ZIP code number and apply some mathematical calculations to find other nearby ZIP codes. ZIP codes are not as geographically scattered as area codes in the US, but they are not a coordinate system.</p>
<p>The only exception is that the ZIP+4 codes are sub-sections of the larger ZIP code. You can assume that any ZIP+4 codes that have the same ZIP code are close to each other.</p>
<p>I used to work on rationalizing the ZIP code handling at a company, here are some practical notes I made:</p>
<p><a href="https://benc.fogbugz.com/default.asp?W24" rel="nofollow">Testing ZIP codes</a></p>
<p>Hopefully has other useful info.</p>
http://stackoverflow.com/questions/1278026/are-there-any-good-metaphors-for-explaining-project-complexity-to-a-non-programme/1278604#12786040Answer by benc for Are there any good metaphors for explaining project complexity to a non-programmer?benc2009-08-14T15:43:02Z2009-08-14T15:43:02Z<p>In an interview, I remember Moby saying something to the effect of...</p>
<p>Sometimes I think that I should rephrase "Everything is wrong" to "Everything is complicated."</p>
<p><hr /></p>
<p>That's software. </p>
<p>Or they actually <em>read</em>, give them:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0140176551" rel="nofollow">I Sing the Body Electronic: A Year with Microsoft on the Multimedia Frontier</a>, which is probably the best book I have read that could give a lay person insight into software development. (In fact, as a non-CS major, it was one of the books that lead me to stay with software).</p>
http://stackoverflow.com/questions/909566/ff3-redirects-from-remote-ip-to-localhost-after-form-submission/1271835#12718350Answer by benc for FF3 redirects from remote IP to localhost after form submissionbenc2009-08-13T13:05:18Z2009-08-13T13:05:18Z<p>In this type of problem, the source is <em>usually</em> the server and its content. </p>
<p>Please edit your question to be more specific.</p>
<p>What URL did you type?</p>
<p>What did the source say?</p>
<p>What did your web server's access log say?</p>
http://stackoverflow.com/questions/1078283/resources-to-get-started-with-ipv4-ipv6-basics-and-development/1267168#12671680Answer by benc for Resources to get started with IPv4/IPv6 basics and developmentbenc2009-08-12T16:11:24Z2009-08-12T16:11:24Z<p>I have read several Comer and Stevens books, and they were all excellent. If you are going to stick to TCP/IP networking, you should gather stash of them (I got most of mine used or from giveaway stacks). Read a couple pages everyday. So many common "mysteries" are simply concepts that are missing from weaker texts.</p>
<p>That being said, I have only read two books on IPv6, which I would to recommend for programmers. However, I do recall that the lead developer for the networking stack of Mozilla/Geko (Necko), when I was at Netscape/AOL/mozilla.org had recommended "IPv6 Clearly Explained", by Loshin (as best I recall).</p>
<p>I took a quick look online, and appears that this person has written two books on IPv6, both are 5 stars.</p>
<p>I would caution you to pick the book carefully. For a while, I was shopping for an IPv6 book, and I found that many books are very thick, but potentially unhelpful.</p>
http://stackoverflow.com/questions/1238963/query-arp-cache-to-get-mac-id/1255779#12557790Answer by benc for Query ARP cache to get MAC IDbenc2009-08-10T16:09:57Z2009-08-10T16:09:57Z<p>This may not be solvable in the context of Java (because it is platform independent), but you should also consider whether or not you can get the MAC addresses via a system service. There are probably situations where you cannot reliably find the MAC address via ARP, it depends on why you would need the MAC address.</p>
http://stackoverflow.com/questions/813347/http-localhost-not-working-on-windows-7-whats-the-problem/1248225#12482250Answer by benc for http://localhost/ not working on Windows 7. What's the problem?benc2009-08-08T07:16:59Z2009-08-08T07:16:59Z<p>Assuming there is no problem doing a lookup on localhost (to 127.0.0.1), you need to make sure your server is listening to 127.0.0.1.</p>
<p>netstat works in both windows an UNIX. You probably need "netstat -a" to display listeners.</p>
http://stackoverflow.com/questions/426375/how-do-i-launch-a-specific-telnet-based-app-from-a-web-browser/1236816#12368161Answer by benc for How do I launch a specific telnet-based app from a web browser?benc2009-08-06T03:22:50Z2009-08-06T03:22:50Z<p>You cannot do this with a telnet: URL in most browsers (IE, FF, afaik). The telnet URL was originally described in RFC 1738, and it provided only information for a hostname, port, username and password.</p>
<p>When you click on it, the browser will usually ask the OS for the default "telnet" handler, which is an external application that is run. Most modern telnet clients accept these parameters and put them to use.</p>
<p>This architecture varies a bit between browsers, but the application is usually external. There was the occasional request in bugzilla.mozilla.org for support for a telnet plugin or a native telnet client, but it never got much attention. </p>
<p>There might be inline solutions like a java applet, but I doubt they are called with a telnet: URL.</p>
http://stackoverflow.com/questions/666510/under-what-conditions-with-nslookup-and-ping-return-different-ip-addresses-on-win/1176370#11763700Answer by benc for Under what conditions with NSLOOKUP and PING return different IP addresses on windows XP?benc2009-07-24T08:16:23Z2009-07-24T08:16:23Z<p>From your ipconfig example, I am assuming you using Windows.</p>
<p>nslookup is DNS only.</p>
<p>hosts will use the normal resolution process on your system. This could include (but is not limited to: hosts, Windows naming, and DNS).</p>
<p>How are you getting the IP address that Firefox uses? If it appears in the URL, you should ignore that, many things could be happening at that level.</p>
http://stackoverflow.com/questions/1009800/why-does-ie8s-user-agent-return-opera/1154019#11540190Answer by benc for Why does ie8's user agent return 'opera'?benc2009-07-20T14:46:48Z2009-07-20T14:46:48Z<p>You should use a lower-level tool, like a packet trace or server logging or a header dump to see what is being sent.</p>
http://stackoverflow.com/questions/316574/dhcp-setting-in-mac-os-x0DHCP Setting in Mac OS Xbenc2008-11-25T07:26:44Z2009-07-18T19:21:12Z
<p>Are there any command line interfaces to the DHCP settings in Mac OS X? I have found that inside System Profiler, the Network tab provides a lot of useful information, but I have not found any documentation about any command line equivalents.</p>
http://stackoverflow.com/questions/1894313/dns-round-robin-on-ssl/1895392#1895392Comment by benc on DNS Round-Robin on SSLbenc2009-12-13T16:29:14Z2009-12-13T16:29:14Zre: browsers, you'd have to look at the browsers and their OS to see the problem.
In the case of Mozilla, there is some fixed-duration caching by default for 1 minute.
<a href="https://developer.mozilla.org/En/Mozilla_Networking_Preferences#DNS" rel="nofollow">developer.mozilla.org/En/…</a>
But the browsers don't often get access to TTL info:
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=151929#c34" rel="nofollow">bugzilla.mozilla.org/show_bug.cgi?id=151929#c34/…</a>
and also OS-level DNS caching is very common now (I have not spent as much time on the internals of that).http://stackoverflow.com/questions/977727/browser-cache-api-for-non-ie-browsers/1007823#1007823Comment by benc on Browser Cache API for non IE browsersbenc2009-12-02T17:45:04Z2009-12-02T17:45:04Zyeah, I think I clicked in the wrong panel... I realized that after I hit "save"....http://stackoverflow.com/questions/1733357/firefox-addon-development-detecting-non-compatible-addonsComment by benc on Firefox Addon Development : Detecting non-compatible addons ?benc2009-11-14T07:02:05Z2009-11-14T07:02:05ZCan you clarify? You mean: how do I tell what addons are incompatible with my already-installed addons?http://stackoverflow.com/questions/1727261/scrolling-inside-vim-in-macs-terminalComment by benc on Scrolling inside Vim in Mac's Terminalbenc2009-11-13T09:16:48Z2009-11-13T09:16:48ZIs this something you can do in other platforms or terminal editors? If there was an X-based VI implementation, I guess it could support that, but wouldn't you rather have support for the scroll mouse to control the scrollback buffer?http://stackoverflow.com/questions/1661369/how-does-c-handle-integer-literals-with-leading-zeros-and-what-about-atoi/1661380#1661380Comment by benc on How does C Handle Integer Literals with Leading Zeros, and What About atoi?benc2009-11-08T15:11:08Z2009-11-08T15:11:08Zuh, what about the bits of an integer? aren't there seven 0's in an 8-bit integer of "1"?
http://stackoverflow.com/questions/191023/how-does-windows-actually-detect-lan-proxy-settings-when-using-automatic-config/191041#191041Comment by benc on How does Windows actually detect LAN (proxy) settings when using Automatic Configurationbenc2009-10-30T06:35:48Z2009-10-30T06:35:48Z-1 because the mechanism is more complicated. Mozilla's implementation fits the simple description, IE is more conformant to WPAD.http://stackoverflow.com/questions/1031172/wrong-dns-for-just-one-site-on-development-machine/1031267#1031267Comment by benc on Wrong DNS for just one site on development machinebenc2009-09-28T07:58:58Z2009-09-28T07:58:58ZThis example covers most of the possible causes.
In regards to the third suggestion, you should also check to see if you are doing any windows domain based name resolution.
Finally, if you must, a packet trace could show you why PING is going to the wrong IP address.http://stackoverflow.com/questions/152457/what-is-the-difference-between-a-port-and-a-socketComment by benc on What is the difference between a port and a socket?benc2009-09-26T21:17:21Z2009-09-26T21:17:21ZThis question is entirely too vague. Did you mean in the context of TCP/IP? That is pretty easy to answer. Did you mean in reference to any usage of the words?
The short answer is: they aren't the same thing in almost any possible connotation of the word "socket" or "port", unless you mean it in the vaguest of hardware terms. http://stackoverflow.com/questions/152457/what-is-the-difference-between-a-port-and-a-socket/152825#152825Comment by benc on What is the difference between a port and a socket?benc2009-09-26T21:13:00Z2009-09-26T21:13:00ZNot a good analogy. You might want to try this:
If an IP address is like a place (like a business or house), the port is analogous to a phone extension or a mail room mailbox, it is the the way you make sure communications goes to a specific person (process) in that place.
A socket (in TCP/IP) is an address + port. So it is basically a full description (phone number + extension) or (postal address + mailstop). Sort of.http://stackoverflow.com/questions/1473440/does-a-udp-client-for-the-time-service-need-to-check-the-length-of-the-read-dat/1474795#1474795Comment by benc on Does a "UDP Client For the TIME Service" need to check the length of the read data before converting?benc2009-09-25T05:04:31Z2009-09-25T05:04:31ZSo, it sounds like you are saying I should do a length check as I read.
Is this also a concern because of UDP truncation?http://stackoverflow.com/questions/560854/what-aspects-of-networking-should-i-study-as-a-programmer/560915#560915Comment by benc on What aspects of networking should I study as a programmer?benc2009-09-25T01:49:39Z2009-09-25T01:49:39Zcpb: In today's world, if you want your code to work well, understanding the network is just as important as syntax, data structures, etc. For one thing, TCP/IP is a very mature application environment. In some circles it is fashionable to bash TCP/IP and talk about it's limitations, but for the most part, it is a lot of great stuff that has stood the test of time.http://stackoverflow.com/questions/560854/what-aspects-of-networking-should-i-study-as-a-programmer/560918#560918Comment by benc on What aspects of networking should I study as a programmer?benc2009-09-25T01:42:04Z2009-09-25T01:42:04ZYar: DNS, cookies, load times on pages.... plenty of stuff. Oh wait AJAX... URL parsing... etc.http://stackoverflow.com/questions/560854/what-aspects-of-networking-should-i-study-as-a-programmer/560917#560917Comment by benc on What aspects of networking should I study as a programmer?benc2009-09-25T01:40:10Z2009-09-25T01:40:10ZI must respectfully disagree, in the sense that this is an unrealistic recommendation.
If you are a programer and you <i>never</i> code that interacts with networks, this might be true. This means: no web, no HTML, no shared drives, and nothing that makes a network connection.
Recommending a dummy's book or doing tech support has actually HURT programers in my experience, because it gives them a simplistic black box view of how networks work.
On several occasions, I had to explain to programmers that they need to attempt a connection to every IP address returned for a DNS name. http://stackoverflow.com/questions/560854/what-aspects-of-networking-should-i-study-as-a-programmer/560886#560886Comment by benc on What aspects of networking should I study as a programmer?benc2009-09-25T01:36:24Z2009-09-25T01:36:24Z+ I recommend both books, but for the asker, probably reading only one is really needed.http://stackoverflow.com/questions/47901/can-udp-data-be-delivered-corrupted/357263#357263Comment by benc on Can UDP data be delivered corrupted?benc2009-09-24T18:01:57Z2009-09-24T18:01:57ZIf the datagram arrives with no checksum, can the application ask for that information?