Community Page
- www.kyle-brady.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Web browsers have a very different bandwidth profile, but your point is valid in that other types of services can saturate a connection. Certainly any UDP service can do this. We used to take high...
- Hey Sean, I also agree with you - the oversubscription for low-cost purposes is an issue I didn't touch here, but may in the future. Good insight though. --Kyle
- Hey Chris, Thanks. I'll agree with too many streams saturating a connection... this is a known problem. Depending on, say, the Torrent client you use, you can decide whether or not you want to...
- I work for an ISP. We sell primarily to businesses. Our products are priced such that the price charged to the customer includes the fully burdened cost of providing that service. e.g. we make a...
- I think the point of your article is spot on, however, I think people underestimate the scope of the problem the telcos and ISPs are dealing with. The bulk of TCP traffic has always been limited by...
Kyle Brady: A Blog
thoughts on life, code, and things
Anyone having issues with the latest update of Prototype JS? I started using Prototype so things could be cross-browser very easily. And now portions of it are broken.
IE throws a “script error” when I try to do:
$(’dataContainerId’).innerHTML = ‘
This didn’t ... Continue reading »
IE throws a “script error” when I try to do:
$(’dataContainerId’).innerHTML = ‘
stuff
’;This didn’t ... Continue reading »
1 month ago
i try these code instead and it worked.
[code]
Element.update(eid,"
stuff
");[/code]
1 month ago
Thanks though!
--Kyle