16
votes
8answers
5k views
How can I upload a photo to a server with the iPhone?
I'm writing an iPhone app that takes a photo and then uploads it to a server. How do I upload a photo to a server with Cocoa in Xcode? I suppose I use NSUrl somewhere.
Thanks!
13
votes
5answers
2k views
Why does my .NET application crash when run from a network drive?
My .NET application fails when run from a network drive even when the very same executable runs perfectly fine from a local hard drive?
I tried checking for "Full trust" like so:
try
{
// Demand …
13
votes
4answers
544 views
Dealing with Latency in Networked Games
I'm thinking about making a networked game. I'm a little new to this, and have already run into a lot of issues trying to put together a good plan for dead reckoning and network latency, so I'd love …
12
votes
16answers
872 views
Why is it not advisable to have the database and web server on the same machine?
Listening to Scott Hanselman's interview with the Stack Overflow team (part 1 and 2), he was adamant that the SQL server and application server should be on separate machines. Is this just to make …
10
votes
8answers
510 views
What’s the best way to sync large amounts of data around the world?
I have a great deal of data to keep synchronized over 4 or 5 sites around the world, around half a terabyte at each site. This changes (either adds or changes) by around 1.4 Gigabytes per day, and the …
9
votes
6answers
10k views
Linux / C++: Get the IP Address of local computer
This Question is almost the same as the previously asked Get the IP Address of local computer-Question. However I need to find the IP address(es) of a Linux Machine.
So: How do I - programmatically …
9
votes
3answers
324 views
Testing network interrupts in software
I have a network C++ program in Windows that I'd like to test for network disconnects at various times. What are my options?
Currently I am:
Actually disconnecting the network wire from the back …
8
votes
2answers
2k views
Detecting network connection speed and bandwidth usage in C#
Is there a way to detect the network speed and bandwidth usage in C#? Even pointers to open-source components are welcome. Thanks in advance.
8
votes
2answers
297 views
A good Java library for network math
I'm looking for a Java library that is geared towards network math and already tested. Nothing particularly fancy, just something to hold ips and subnets, and do things like print a subnet mask or …
8
votes
9answers
1k views
Tool for degrading my network connection?
I've written some applications than heavily use network, and I would to test it over a slow network. I'm looking for a tool to simulate this kind of connections.
Edit:
I'm only interested in Windows …
7
votes
6answers
462 views
Faster DirectoryExists function?
Hi,
I use
DirectoryExists (const PathName : String);
to check if a directory is reachable from a computer or not. But if the directory does not exist and the path name is a network path, i.e.
…
7
votes
4answers
430 views
Speed up File.Exists for non existing network shares
I have to check if a set of file paths represent an existing file.
It works fine except when the path contains a network share on a machine that's not on the current network. In this case it takes a …
7
votes
1answer
1k views
Using Linux, how to specify which ethernet interface data is transmitted on
I'm working on a Linux based server system in which there are two network interfaces, both on the same subnet (for now, lets just say they are 172.17.32.10 & 172.17.32.11). When I send data to a …
6
votes
3answers
702 views
How to know if urllib.urlretrieve succeeds?
urllib.urlretrieve returns silently even if the file doesn't exist on the remote http server, it just saves a html page to the named file. For example:
urllib.urlretrieve('http://google.com/abc.jpg', …
6
votes
4answers
157 views
How do you expand your real-life network?
I come from a small city and university where few students seem to share my interest in programming. Although the internet has provided me with endless knowledge and technical support, it is not as …
