benc
|
Registered User
|
|
|
Nov 23 |
awarded | ● Notable Question |
|
Nov 14 |
comment |
Firefox Addon Development : Detecting non-compatible addons ? Can you clarify? You mean: how do I tell what addons are incompatible with my already-installed addons? |
|
Nov 13 |
comment |
Scrolling inside Vim in Mac’s Terminal Is 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? |
|
Nov 8 |
comment |
How does C Handle Integer Literals with Leading Zeros, and What About atoi? uh, what about the bits of an integer? aren't there seven 0's in an 8-bit integer of "1"? |
|
Oct 30 |
answered | How does Windows actually detect LAN (proxy) settings when using Automatic Configuration |
|
Oct 30 |
comment |
How does Windows actually detect LAN (proxy) settings when using Automatic Configuration -1 because the mechanism is more complicated. Mozilla's implementation fits the simple description, IE is more conformant to WPAD. |
|
Oct 23 |
awarded | ● Notable Question |
|
Oct 21 |
answered | Security implications of a limited function server |
|
Oct 16 |
accepted | Setting the Timeout in TCP |
|
Oct 13 |
answered | What is the cleverest UI feature you have seen in a website? |
|
Oct 11 |
answered | Setting the Timeout in TCP |
|
Sep 28 |
answered | service that takes xxx.1.2.3.4.theservice.com and resolves to IP 1.2.3.4 |
|
Sep 28 |
answered | Why is my local WCF client’s IP not 127.0.0.1? |
|
Sep 28 |
comment |
Wrong DNS for just one site on development machine This 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. |
|
Sep 28 |
answered | Getting DNS servers on Windows |
|
Sep 26 |
comment |
What is the difference between a port and a socket? This 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. |
|
Sep 26 |
comment |
What is the difference between a port and a socket? Not 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. |
|
Sep 26 |
answered | Dynamic port |
|
Sep 25 |
comment |
Does a “UDP Client For the TIME Service” need to check the length of the read data before converting? So, it sounds like you are saying I should do a length check as I read. Is this also a concern because of UDP truncation? |
|
Sep 25 |
comment |
What aspects of networking should I study as a programmer? cpb: 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. |
|
Sep 25 |
comment |
What aspects of networking should I study as a programmer? Yar: DNS, cookies, load times on pages.... plenty of stuff. Oh wait AJAX... URL parsing... etc. |
|
Sep 25 |
comment |
What aspects of networking should I study as a programmer? I must respectfully disagree, in the sense that this is an unrealistic recommendation. If you are a programer and you never 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. |
|
Sep 25 |
comment |
What aspects of networking should I study as a programmer? + I recommend both books, but for the asker, probably reading only one is really needed. |
|
Sep 24 |
asked | Does a “UDP Client For the TIME Service” need to check the length of the read data before converting? |
|
Sep 24 |
comment |
Can UDP data be delivered corrupted? If the datagram arrives with no checksum, can the application ask for that information? |
|
Sep 24 |
comment |
What would you like your software developers to learn? ++ This is a good question. I am sure most of us have a long list of people we have worked with that we wish had read the answers to this question. |
|
Sep 24 |
answered | What would you like your software developers to learn? |
|
Sep 24 |
answered | What’s your most controversial programming opinion? |
|
Sep 24 |
comment |
Does HTTP use UDP What do you mean by: "the web"? You mean using a browser? Or over the public internet? |
|
Sep 23 |
answered | client-server communication |
|
Sep 23 |
answered | Which FTP transfer modes are widely used? |
|
Sep 23 |
answered | Is there a generally available HTTPS POST smoke test? |
|
Aug 29 |
comment |
Time Zones Also, unless your design has an explicitly local or regional scope, you should be avoiding using the abbreviated time zone acronyms (iCalendar calls this a "TZNAME"), and you should use the more explicit "Area/Location" format (iCalendar calls this "TZID"). Be careful here, often your context is global and you won't realize it until later. |
|
Aug 29 |
revised |
How would you organize a timezone dropdown? added description of original iPod. |
|
Aug 26 |
awarded | ● Yearling |
|
Aug 23 |
comment |
apache localhost sites opening in Firefox, but not IE or Safari? The 502 error means an HTTP service replied. So it is either a set proxy (as you described, or a transparent proxy). |
|
Aug 23 |
answered | Redirect localhost through proxy? |
|
Aug 23 |
comment |
Setting up wildcard domains on local host (OS X 10.5)? I'm confused about the /etc/hosts comment: on my 10.5 system: $ ls -l /etc/hosts -rw-r--r-- 1 root wheel 235 Jun 28 2008 /etc/hosts |
|
Aug 23 |
comment |
Two Computers Finding Each Other over Internet +1 - The other higher answers seem to have ignored the "know nothing about each other before hand" part of the question. |
|
Aug 23 |
comment |
Two Computers Finding Each Other over Internet Plus, they would have to know which multi-cast address to use. That means they wouldn't "know nothing about each other before hand". |
|
Aug 23 |
comment |
Two Computers Finding Each Other over Internet But if they did know they had a common third-party system, then wouldn't that be DNS? Then wouldn't they be able to use a non-broadcast mechanism to find each other? |
|
Aug 23 |
comment |
Two Computers Finding Each Other over Internet How does this qualify under the "know nothing about each other before hand" part" of the question? |
|
Aug 23 |
comment |
Two Computers Finding Each Other over Internet -1 - Just to bring it down a notch. How could this question get 9 votes? Broadcast UDP can't reach every system on the public internet. Google "broadcast UDP", click on the first link and the first line says: "If you want to send something to every machine on a Subnet, there's a handy mechanism called a Broadcast. Nothing that your broadcast can get outside of the network, so it's an internal mechanism." |
|
Aug 17 |
answered | custom time zone |
|
Aug 14 |
answered | How do you figure out what the neighboring zipcodes are? |
|
Aug 14 |
answered | Are there any good metaphors for explaining project complexity to a non-programmer? |
|
Aug 13 |
answered | FF3 redirects from remote IP to localhost after form submission |
|
Aug 12 |
comment |
smtp sends headers as content sample please. remove the header field's content if you want, but leave in all the header labels and the whitespace. |
|
Aug 12 |
answered | Resources to get started with IPv4/IPv6 basics and development |
|
Aug 12 |
comment |
Addressing localhost from a virtualbox virtual machine I did notice in ipconfig (Windows in VirtualBox) that the default router for my VirtualBox is that IP address... so that makes sense to me. |
