User Steve Gury - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T22:09:02Zhttp://stackoverflow.com/feeds/user/1578http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/972705/is-there-a-way-to-initialize-an-array-with-non-constant-variables-c/972738#9727382Answer by Steve Gury for Is there a way to initialize an array with non-constant variables? (C++)Steve Gury2009-06-09T22:04:11Z2009-09-28T22:30:27Z<p>The compiler need to have the exact size of the class when compiling, you will have to use the new operator to dynamically allocate memory.</p>
<p>Switch char array[x][y]; to char** array; and initialize your array in the constructor, and don't forget to delete your array in the destructor.</p>
<pre><code>class MyClass
{
public:
MyClass() {
x = 10; //read from file
y = 10; //read from file
allocate(x, y);
}
MyClass( const MyClass& otherClass ) {
x = otherClass.x;
y = otherClass.y;
allocate(x, y);
// This can be replace by a memcopy
for( int i=0 ; i<x ; ++i )
for( int j=0 ; j<x ; ++j )
array[i][j] = otherClass.array[i][j];
}
~MyClass(){
deleteMe();
}
void allocate( int x, int y){
array = new char*[x];
for( int i = 0; i < y; i++ )
array[i] = new char[y];
}
void deleteMe(){
for (int i = 0; i < y; i++)
delete[] array[i];
delete[] array;
}
MyClass& operator= (const MyClass& otherClass)
{
if( this != &otherClass )
{
deleteMe();
x = otherClass.x;
y = otherClass.y;
allocate(x, y);
for( int i=0 ; i<x ; ++i )
for( int j=0 ; j<y ; ++j )
array[i][j] = otherClass.array[i][j];
}
return *this;
}
private:
int x, y;
char** array;
};
</code></pre>
<p>*EDIT:
I've had the copy constructor
and the assignment operator</p>
http://stackoverflow.com/questions/679670/best-way-to-profile-optimize-a-website-on-googles-appengine2Best way to profile/optimize a website on google's appengineSteve Gury2009-03-24T23:27:38Z2009-07-03T15:30:30Z
<p>I'm currently trying to optimize my website, which run on the google's appengine. It's not an easy task, because I'm not using any powerful tool.</p>
<p>Does anyone have experience in optimizing python code for this purpose?
Have you find a good python profiler?</p>
http://stackoverflow.com/questions/976898/static-stylesheets-gets-reloaded-with-each-post-request/977488#9774880Answer by Steve Gury for static stylesheets gets reloaded with each post requestSteve Gury2009-06-10T18:50:39Z2009-06-10T18:50:39Z<p>You just have to put all your css in a "static directory" and specify an expiration into the app.yaml file.</p>
<p>Here is the app.yaml of one of my project:</p>
<pre><code>application: <my_app_id>
version: 1
runtime: python
api_version: 1
skip_files: |
^(.*/)?(
(app\.yaml)|
(index\.yaml)|
(\..*)|
(.*\.pyc)|
(.*\.bat)|
(.*\.svn/.*)|
(.*\.lnk)|
(datastore/.*)|
(img/src_img/.*)|
)$
handlers:
- url: /favicon\.ico
static_files: img/favicon.ico
upload: img/favicon.ico
expiration: 180d
- url: /img
static_dir: img
expiration: 180d
- url: /static-js
static_dir: static-js
expiration: 180d
- url: .*
script: main.py
</code></pre>
http://stackoverflow.com/questions/971153/gql-does-not-work-for-get-paramters-for-keys/972350#9723500Answer by Steve Gury for gql does not work for get paramters for keysSteve Gury2009-06-09T20:34:56Z2009-06-09T20:34:56Z<p>The error "invalid literal for int()" indicate that the paramater pass to int was not a string representing an integer. Try to print the value of "row" for debuging, I bet it is an empty string.</p>
<p>The correct way to retrieve an element from the key is simply by using the method "get" or "get_by_id".
In your case:</p>
<pre><code>row = self.request.get("selectedrow")
mydbobject = DbModel.get(row)
</code></pre>
http://stackoverflow.com/questions/968701/breakpoint-in-eclipse-for-appengine/969586#9695862Answer by Steve Gury for breakpoint in eclipse for appengineSteve Gury2009-06-09T11:49:27Z2009-06-09T11:49:27Z<p>I'm using eclipse with PyDev with appengine and I debug all the time, it's completely possible !</p>
<p>What you have to do is start the program in debug, but you have to start the dev_appserver in debug, not the handler directly. The main module you have to debug is:</p>
<pre><code><path_to_gae>/dev_appserver.py
</code></pre>
<p>With program arguments:</p>
<pre><code>--datastore_path=/tmp/myapp_datastore <your_app>
</code></pre>
<p>I hope it help</p>
http://stackoverflow.com/questions/934191/how-to-check-existence-of-a-program-in-the-path0How to check existence of a program in the pathSteve Gury2009-06-01T09:52:37Z2009-06-01T16:26:12Z
<p>I'm writing a program in scala which call:</p>
<pre><code>Runtime.getRuntime().exec( "svn ..." )
</code></pre>
<p>I want to check if "svn" is available from the commandline (ie. it is reachable in the PATH).
How can I do this ?</p>
<p>PS: My program is designed to be run on windows</p>
http://stackoverflow.com/questions/906566/how-can-i-quickly-improve-my-abilities-as-a-programmer/917959#9179590Answer by Steve Gury for How can I quickly improve my abilities as a programmer?Steve Gury2009-05-27T20:50:57Z2009-05-27T20:50:57Z<p>My multi-advise:</p>
<ol>
<li>Keep training, and write code. Participate in small open source project.</li>
<li>Read standard book (<a href="http://www.codinghorror.com/blog/archives/000020.html" rel="nofollow">here</a> is the Jeff's list)</li>
<li>Learn from your mistakes, or better from the mistakes of others by reading site like <a href="http://www.badprogramming.com" rel="nofollow">www.badprogramming.com</a></li>
</ol>
http://stackoverflow.com/questions/37956/c-whats-the-easiest-library-to-open-video-file7C++ : What's the easiest library to open video fileSteve Gury2008-09-01T13:35:41Z2009-05-16T18:13:57Z
<p>I would like to open a small video file and map every frames in memory (to apply some custom filter). I don't want to handle the video codec, I would rather let the library handle that for me.</p>
<p>I've tried to use Direct Show with the SampleGrabber filter (using this sample <a href="http://msdn.microsoft.com/en-us/library/ms787867" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms787867</a>(VS.85).aspx), but I only managed to grab some frames (not every frames!). I'm quite new in video software programming, maybe I'm not using the best library, or I'm doing it wrong. </p>
<p>I've pasted a part of my code (mainly a modified copy/paste from the msdn example), unfortunately it doesn't grabb the 25 first frames as expected...</p>
<pre><code>[...]
hr = pGrabber->SetOneShot(TRUE);
hr = pGrabber->SetBufferSamples(TRUE);
pControl->Run(); // Run the graph.
pEvent->WaitForCompletion(INFINITE, &evCode); // Wait till it's done.
// Find the required buffer size.
long cbBuffer = 0;
hr = pGrabber->GetCurrentBuffer(&cbBuffer, NULL);
for( int i = 0 ; i < 25 ; ++i )
{
pControl->Run(); // Run the graph.
pEvent->WaitForCompletion(INFINITE, &evCode); // Wait till it's done.
char *pBuffer = new char[cbBuffer];
hr = pGrabber->GetCurrentBuffer(&cbBuffer, (long*)pBuffer);
AM_MEDIA_TYPE mt;
hr = pGrabber->GetConnectedMediaType(&mt);
VIDEOINFOHEADER *pVih;
pVih = (VIDEOINFOHEADER*)mt.pbFormat;
[...]
}
[...]
</code></pre>
<p>Is there somebody, with video software experience, who can advise me about code or other simpler library?</p>
<p>Thanks</p>
<p>Edit:
Msdn links seems not to work (<a href="http://stackoverflow.uservoice.com/pages/general/suggestions/19963" rel="nofollow">see the bug</a>)</p>
http://stackoverflow.com/questions/871119/google-app-engine-directed-to-google-sites-instead-for-domain-name/871127#8711270Answer by Steve Gury for Google App Engine: Directed to Google Sites Instead for Domain NameSteve Gury2009-05-15T22:31:36Z2009-05-15T22:31:36Z<p>The app engine binding doesn't work while google app site is available.
So, disable google app site and it should work!</p>
http://stackoverflow.com/questions/748952/how-do-i-get-all-the-entities-of-a-type-with-a-required-property-in-google-app-en/749012#7490121Answer by Steve Gury for How do I get all the entities of a type with a required property in Google App Engine?Steve Gury2009-04-14T19:27:43Z2009-04-14T20:18:21Z<p>Maybe you have old data in the datastore with no sex property (added before you specified the required property), then the system complain that there is an entry without sex property.</p>
<p>Try adding a default value:</p>
<pre><code>class Jean(db.Model):
sex = db.StringProperty(required=True, choices=set(["male", "female"]), default="male")
</code></pre>
<p>I hope it helps.</p>
<p>/edit:
Go to the local datastore viewer (default is at <a href="http://localhost:8080/_ah/admin/" rel="nofollow">http://localhost:8080/_ah/admin/</a>) and list your entities. You can try fixing the issue manually (if possible) by filling the missing property.</p>
http://stackoverflow.com/questions/742276/hosting-transferring-a-web-site-on-google-app-engine/742453#7424538Answer by Steve Gury for Hosting/transferring a web site on Google App EngineSteve Gury2009-04-12T21:21:05Z2009-04-12T21:21:05Z<p>1) First you will have to adapt your website to the GAE framework (python with django or the new Java environment). You can test your work by <a href="http://code.google.com/appengine/downloads.html" rel="nofollow">downloading the SDK</a> of GAE which offer a local server.</p>
<p>2) Then create an account on <a href="http://appengine.google.com/" rel="nofollow">appengine.google.com</a> and upload your application on something.appspot.com, test it.</p>
<p>3) If you have a domain name, create a google apps account on this domain, and finally bind this domain with your GAE website. <a href="http://code.google.com/appengine/articles/domains.html" rel="nofollow">Here</a> is the Google doc.</p>
http://stackoverflow.com/questions/27700/c-opening-a-file-in-non-exclusive-mode2C++ : Opening a file in non exclusive modeSteve Gury2008-08-26T10:24:10Z2009-04-08T19:33:06Z
<p>I have to develop an application which parses a log file and sends specific data to a server. It has to run on both Linux and Windows. </p>
<p>The problem appears when I want to test the log rolling system (which appends .1 to the name of the creates a new one with the same name). On Windows (haven't tested yet on Linux) I can't rename a file that I have opened with std::ifstream() (exclusive access?) even if I open it in "input mode" (ios::in).</p>
<p>Is there a cross-platform way to open file in a non-exclusive way?</p>
http://stackoverflow.com/questions/614794/c-c-detecting-superfluous-includes/629560#6295601Answer by Steve Gury for C/C++: Detecting superfluous #includes?Steve Gury2009-03-10T10:14:15Z2009-03-10T10:14:15Z<p><a href="http://gamesfromwithin.com/?p=7" rel="nofollow">This article</a> explains a technique of #include removing by using the parsing of Doxygen. That's just a perl script, so it's quite easy to use.</p>
http://stackoverflow.com/questions/39107/tool-for-degrading-my-network-connection8Tool for degrading my network connection?Steve Gury2008-09-02T09:41:23Z2008-12-09T19:11:30Z
<p>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.</p>
<p>Edit:</p>
<p>I'm only interested in Windows tools</p>
http://stackoverflow.com/questions/166125/c-multithreading-and-refcounted-object4C++: Multithreading and refcounted objectSteve Gury2008-10-03T09:47:55Z2008-10-03T16:03:35Z
<p>I'm currently trying to pass a mono threaded program to multithread. This software do heavy usage of "refCounted" objects, which lead to some issues in multithread. I'm looking for some design pattern or something that might solve my problem.</p>
<p>The main problem is object deletion between thread, normally deletion only decrement the reference counting, and when refcount is equal to zero, then the object is deleted. This work well in monothread program, and allow some great performance improvement with copy of big object.</p>
<p>However, in multithread, two threads might want to delete the same object concurrently, as the object is protected by a mutex, only one thread delete the object and block the other one. But when it releases the mutex, then the other thread continue its execution with invalid (freed object), which lead to memory corruption.</p>
<p>Here is an example with this class RefCountedObject</p>
<pre><code>class RefCountedObject
{
public:
RefCountedObject()
: _refCount( new U32(1) )
{}
RefCountedObject( const RefCountedObject& obj )
: _refCount( obj._refCount )
{
ACE_Guard< ACE_Mutex > guard( _refCountMutex );
++(*_refCount);
}
~RefCountedObject()
{
Destroy();
}
RefCountedObject& operator=( const RefCountedObject& obj )
{
if( this != &obj )
{
Destroy();
ACE_Guard< ACE_Mutex > guard( _refCountMutex );
_refCount = obj._refCount;
++(*_refCount);
}
return *this;
}
private:
void Destroy()
{
ACE_Guard< ACE_Mutex > guard( _refCountMutex ); // thread2 are waiting here
--(*_refCount); // This cause a free memory write by the thread2
if( 0 == *_refCount )
delete _refCount;
}
private:
mutable U32* _refCount;
mutable ACE_Mutex _refCountMutex; // BAD: this mutex only protect the refCount pointer, not the refCount itself
};
</code></pre>
<p>Suppose that two threads want to delete the same RefCountedObject, both are in ~RefCountedObject and call Destroy(), the first thread has locked the mutex and the other one is waiting. After the deletion of the object by the first thread, the second will continue its execution and cause a free memory write.</p>
<p>Anyone has experience with a similar problem and found a solution ?</p>
<p><hr /></p>
<p>Thanks all for your help, I realize my mistake:
The mutex is only protecting refCount pointer, not the refCount itself! I've created a RefCount class which is mutex protected. The mutex is now shared between all refCounted object.</p>
<p>Now all works fine.</p>
http://stackoverflow.com/questions/102911/whats-a-good-functional-language-to-learn-first/103100#1031006Answer by Steve Gury for What's a good Functional language to learn first?Steve Gury2008-09-19T15:46:23Z2008-09-19T15:46:23Z<p>I recommend <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a> a great programming based on the Java VM. It's a successful mix between imperative and functional programming.</p>
http://stackoverflow.com/questions/95751/what-technologies-inspire-you/95822#958221Answer by Steve Gury for What technologies inspire you?Steve Gury2008-09-18T19:08:30Z2008-09-18T19:08:30Z<p><a href="http://www.scala-lang.org/" rel="nofollow">scala</a> maybe the next great programming language</p>
http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up/72089#720890Answer by Steve Gury for Visual Studio 2005 - 'Updating IntelliSense' hang-upSteve Gury2008-09-16T13:20:54Z2008-09-16T13:20:54Z<p><a href="http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008">Here</a> is the only solution that works for me.</p>
http://stackoverflow.com/questions/54184/best-tool-to-monitor-network-connection-bandwidth1Best tool to monitor network connection bandwidthSteve Gury2008-09-10T14:26:00Z2008-09-10T14:42:45Z
<p>I'm looking for a very simple tool to monitor the bandwidth of all my applications.
No need for extra features like traffic spying, I'm just interested by bandwidth.</p>
<p>I already know Wireshark (which is great), but what I'm looking for is more something like TcpView (great tool from Sysinternals) with current bandwidth indication.</p>
<p>PS: I'm interested by Windows tools only</p>
http://stackoverflow.com/questions/51561/how-do-i-automate-finding-unused-include-directives/51677#516772Answer by Steve Gury for How do I automate finding unused #include directives?Steve Gury2008-09-09T11:47:38Z2008-09-09T12:00:36Z<p><a href="http://www.gamesfromwithin.com/articles/0403/000011.html" rel="nofollow">This article</a> explains a technique of #include removing by using the parsing of Doxygen. That's just a perl script, so it's quite easy to use.</p>
http://stackoverflow.com/questions/46048/what-is-the-best-book-to-learn-c/46065#460656Answer by Steve Gury for What is the best book to learn C#?Steve Gury2008-09-05T15:39:13Z2008-09-05T15:39:13Z<p>Look at this <a href="http://www.charlespetzold.com/dotnet/index.html" rel="nofollow">free book of Charles Petzold</a>, that's a very good introduction.</p>
http://stackoverflow.com/questions/44205/direct-tcp-ip-connections-in-p2p-apps/44208#442081Answer by Steve Gury for Direct TCP/IP connections in P2P appsSteve Gury2008-09-04T17:15:32Z2008-09-04T17:15:32Z<p>There is a technique called "<a href="http://en.wikipedia.org/wiki/Hole_punching" rel="nofollow">Hole Punching</a>" that works well with "Cone" NAT (Cone is a technical familly of router). That's not an 100% sure technique, today, it works well with UDP on about 80% of the router.</p>
<p>There is some implementations of library to realize Hole Punching: <a href="http://sourceforge.net/projects/stun/" rel="nofollow">STUN</a> (<a href="http://en.wikipedia.org/wiki/STUN" rel="nofollow">wikipedia</a>)</p>
http://stackoverflow.com/questions/44177/connecting-private-ips/44203#442032Answer by Steve Gury for Connecting private IPsSteve Gury2008-09-04T17:12:42Z2008-09-04T17:12:42Z<p>There is a technique called "<a href="http://en.wikipedia.org/wiki/Hole_punching" rel="nofollow">Hole Punching</a>" that works well with "Cone" NAT (Cone is a technical familly of router). That's not an 100% sure technique, today, it works well with UDP on about 80% of the router.</p>
<p>There is some implementations of library to realize Hole Punching: <a href="http://sourceforge.net/projects/stun/" rel="nofollow">STUN</a> (<a href="http://en.wikipedia.org/wiki/STUN" rel="nofollow">wikipedia</a>)</p>
http://stackoverflow.com/questions/32494/visual-studio-identical-token-highlighting/42088#420882Answer by Steve Gury for Visual Studio identical token highlightingSteve Gury2008-09-03T16:39:04Z2008-09-03T16:39:04Z<p>The automatic highlight is implemented in <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist</a> as the refactoring command "Find References". It highlights all occurences of a given variable or method, but that's not automatic (binded to a keyboard shortcut on my computer).</p>
<p>Here is an exmaple:</p>
<p><img src="http://s.gury.free.fr/VA.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/39107/tool-for-degrading-my-network-connection/39115#391150Answer by Steve Gury for Tool for degrading my network connection?Steve Gury2008-09-02T09:43:46Z2008-09-02T16:34:57Z<p>@Mark</p>
<p>Unfortunately I use "custom" traffic</p>
<p>@Abhinav</p>
<p>That's an interesting I will try it, but this is not exactly what I'm looking for</p>
<p>@Christian</p>
<p>That's exactly what I'm looking for, but it seems to work only on Linux/BSD. Anything similar for Windows users?</p>
<p>@Herms</p>
<p>Thanks, Traffic Sharper XP do what I want, furthermore, that's a freeware!</p>
http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/39590#3959012Answer by Steve Gury for How to get intellisense to reliably work in Visual Studio 2008Steve Gury2008-09-02T14:02:01Z2008-09-02T15:07:53Z<p>I've also realized than Intellisense is sometime 'lost', on some big project. Why? No idea.</p>
<p>This is why we have bought <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist</a> (from <a href="http://www.wholetomato.com/" rel="nofollow">Tomato software</a>) and disabled Intellisense by deleting the dll feacp.dll in the Visual studio subdirectory (C:\Program Files\Microsoft Visual Studio 8\VC\vcpackages)</p>
<p>This is not a solution, just a workaround.</p>
http://stackoverflow.com/questions/38370/php-session-variable-arent-usable-when-site-is-redirected1PHP : session variable aren't usable when site is redirectedSteve Gury2008-09-01T20:17:28Z2008-09-02T06:18:34Z
<p>I've to admin a small website for my alumni group which is hosted by my ISV. The url is something like www.myIsv.com/myWebSite/ which is quite ugly and very forgetable. The main admin of the webserver has registered a domain name www.mysmallwebsite.com and put a index.html with this content:</p>
<pre><code><html>
<head>
<title>www.mysmallwebsite.com</title>
</head>
<frameset>
<frame src="http://www.myIsv.com/myWebSite/" name="redir">
<noframes>
<p>Original location:
<a href="www.myIsv.com/myWebSite/">http://www.myIsv.com/myWebSite/</a>
</p>
</noframes>
</frameset>
</html>
</code></pre>
<p>It works fine, but some features like PHP Session variables doesn't work anymore! Anyone has a suggestion for correcting that?</p>
<p>Edit:
This doesn't work both on IE and on Firefox (no plugins)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/38370/php-session-variable-arent-usable-when-site-is-redirected/38395#383950Answer by Steve Gury for PHP : session variable aren't usable when site is redirectedSteve Gury2008-09-01T20:36:44Z2008-09-01T20:36:44Z<p>@pix0r
www.myIsv.com/myWebSite/ -> session variable work
www.mysmallwebsite.com -> session variable doesn't work</p>
<p>@Alexandru
Unfortunately this is not on the same webserver</p>
http://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio/36788#367883Answer by Steve Gury for Do you have any recommended add-ons/plugins for Microsoft Visual Studio?Steve Gury2008-08-31T11:38:13Z2008-08-31T12:43:51Z<p>+1 for Visual Assist
And I will add <a href="http://www.codeplex.com/VLH2005" rel="nofollow">VLH</a> (Visual Local History) which provides a kind of local source control system. Every time you save a file, the plugin add a copy in the local repository.</p>
http://stackoverflow.com/questions/35817/whats-the-best-way-to-escape-os-system-calls-in-python/35827#358272Answer by Steve Gury for What's the best way to escape os.system() calls in Python?Steve Gury2008-08-30T09:37:48Z2008-08-30T09:37:48Z<p>Beware of the security issue!
For instance if out_filename is </p>
<pre><code>foo.txt; rm -rf /
</code></pre>
<p>The malicious user can add more command directly interpreted by the shell.</p>
http://stackoverflow.com/questions/972705/is-there-a-way-to-initialize-an-array-with-non-constant-variables-c/972738#972738Comment by Steve Gury on Is there a way to initialize an array with non-constant variables? (C++)Steve Gury2009-06-10T06:20:58Z2009-06-10T06:20:58ZMartin, you're right, I've taken your comment into account. Personnaly I definitely would have used a vector (as aaron mentionned), but as the title of the question is "Is there a way to initialize an array with non-constant variables?", I've written an answer corresponding to this question.http://stackoverflow.com/questions/972705/is-there-a-way-to-initialize-an-array-with-non-constant-variables-c/972738#972738Comment by Steve Gury on Is there a way to initialize an array with non-constant variables? (C++)Steve Gury2009-06-09T22:17:31Z2009-06-09T22:17:31ZYes Keand64, simply use array[xpos][ypos];http://stackoverflow.com/questions/968701/breakpoint-in-eclipse-for-appengineComment by Steve Gury on breakpoint in eclipse for appengineSteve Gury2009-06-09T20:18:50Z2009-06-09T20:18:50ZThis is not an error, only a warning ! The system tell you that it has not found previous datastore (logic or a first execution)
You are not obliged to specify the datastore path, by default the system with put the datastore file in the temp directory. But this is a good practice in order to store data between two executions.http://stackoverflow.com/questions/871119/google-app-engine-directed-to-google-sites-instead-for-domain-name/871127#871127Comment by Steve Gury on Google App Engine: Directed to Google Sites Instead for Domain NameSteve Gury2009-05-16T11:35:57Z2009-05-16T11:35:57ZYou're right Nick, what I wanted to say, was that: by default when you register a new domain with google app, it binds www. to a default google website. To bind your app engine to www. , you have to unregister the google websitehttp://stackoverflow.com/questions/54184/best-tool-to-monitor-network-connection-bandwidth/54245#54245Comment by Steve Gury on Best tool to monitor network connection bandwidthSteve Gury2008-09-10T20:59:10Z2008-09-10T20:59:10ZThanks, after using it for a couple of hours, I can say that's a great soft, definitely!