User Coderer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:43:08Zhttp://stackoverflow.com/feeds/user/26286http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1785274/what-happened-to-the-jquery-contains-traversal-method0What happened to the jQuery "contains" traversal method?Coderer2009-11-23T19:04:39Z2009-11-27T04:12:09Z
<p>A follow-up to the comment I just posted <a href="http://stackoverflow.com/questions/971477/jquery-error-a-function-is-not-a-function/971522#971522">here</a>... I ran this in Firebug:</p>
<pre><code>var l = []; for(f in $('div')){l.push(f);}; l.sort(); alert(l.join("\n"));
</code></pre>
<p>just to make sure I wasn't going crazy, and "contains" is not, in fact, a method of the jQuery wrapped set. But the <a href="http://docs.jquery.com/Traversing/contains" rel="nofollow">jquery docs page</a> says it is. What gives? Was there a "contains" method that got deprecated? Is it new, and the version I'm testing with (1.2.1) doesn't have it yet? Is there a better way to find this information than asking on SO?</p>
http://stackoverflow.com/questions/1793531/sinatra-on-rack-under-passenger-returning-0-byte-pages0Sinatra on Rack under Passenger returning 0-byte pagesCoderer2009-11-24T22:57:35Z2009-11-24T22:57:35Z
<p>I'm trying to write a Sinatra app that will run on a shared Passenger server. For now, I'd be happy just getting a "hello world", but something isn't working quite right. I have:</p>
<p>config.ru</p>
<pre><code>require 'vendor/sinatra-lib/sinatra.rb'
set :environment, :production
disable :run
require 'myapp.rb'
run Sinatra::Application
</code></pre>
<p>myapp.rb</p>
<pre><code>get '/' do
"Hello world!"
end
</code></pre>
<p>and of course all the support libs I need for sinatra are under /vendor/sinatra-lib. I can rackup this exact load on my local machine, and it runs like a champ. However, on the remote machine, I get 0-byte responses for any URL I try to visit. Note that I have a /public directory, and I can view pages out of that successfully, so I guess Rack is still responding. Also, I can run a basic Rack app without any problems, so Rack must be configured correctly (at least, correctly for running Rack apps).</p>
<p>At this point, the only thing I can think of is to check the version of Rack, etc, on the remote server. I don't have full control over the box, so I don't really have log output to share. I can try to chase it down, if it's important, but I'm hoping something will jump out at somebody.</p>
http://stackoverflow.com/questions/344964/how-do-i-use-databinding-with-windows-forms-radio-buttons1How do I use databinding with Windows Forms radio buttons?Coderer2008-12-05T20:07:04Z2009-09-16T10:02:20Z
<p>I have a binary field in my database that is hard to describe in a UI using a single "Is XXXX?"-type checkbox. I'd rather use a pair of radio buttons (e.g. "Do it the Foo way" and "Do it the Bar way"), but right now all the other fields on my form are data-bound to a business object. I'd like to data-bind the pair of radio buttons to the business object as well, but haven't come up with a good way to do it yet. I can bind one of the buttons to the field, such that the field is set "true" if the button is selected, but while selecting the other button does de-select the first one (that is, the two radio buttons are properly paired), the value of the field does not update to reflect this.</p>
<p>I'd like to be able to say</p>
<pre><code>button1.DataBindings.Add(new Binding("checked", source, "useFoo"));
button2.DataBindings.Add(new Binding("checked", source, "!useFoo"));
</code></pre>
<p>but I'm pretty sure that will throw when it runs. Is there an easier way, or should I just put more thought into how to word a single checkbox? I don't want to add extra functions to handle something this trivial...</p>
<p>ETA: A commenter has suggested considering a dropdown (ComboBox). I had thought about this, but how would I data-bind that to a boolean field in a database/Property in a business object? If I bind the SelectedItem to the useFoo property, what would go in the Items collection? Would I have to add just "True" and "False", or could I somehow add a key/value pair object that ties a displayed item ("Use Foo" / "Do Not Use Foo") to the boolean value behind it? I'm having trouble finding docs on this.
<hr>
About the answer: the solution I wound up using involved modifying the business object -- the basic idea is very similar to the one posted by Gurge, but I came up with it separately before I read his response. In sort, I added a separate property that simply returns !useFoo. One radio button is bound to source.UseFoo, and the other is bound to source.UseBar (the name of the new property). It's important to make sure the new property has both getters and setters, or you'll wind up with really odd behavior.</p>
http://stackoverflow.com/questions/528607/setting-usb-configuration-fails0Setting USB configuration failsCoderer2009-02-09T15:26:50Z2009-06-29T00:10:17Z
<p>I'm trying to talk to a USB device using libusb, but I feel like I'm tripping up on the first leg of the race. I know precisely what endpoints I need to talk to, etc., but I can't even get that far. I have, in essence:</p>
<pre><code>usb_device *dev = ...; // opened from get_busses()
usb_set_configuration(dev, dev->config[0].bConfigurationValue); // bConfigVal = 1
</code></pre>
<p>Now, I can look at the device information in debug mode and I know that the current configuration is 0 (uninitialized / just after restart), and there's exactly 1 valid configuration, which has a configuration number of 1. But when I set the config to 1, I get a return value of -22, which (passed through the stringifier) translates to "windows api error: bad parameter.</p>
<p>I haven't been able to find other people having a similar problem, and it seems like such a simple thing to do -- I can't even claim the interface, or set the alt-interface, or anything like that, because I have to set the configuration first. What am I missing? (if it matters: this is on WinXP)</p>
http://stackoverflow.com/questions/234059/is-a-memory-leak-created-if-a-memorystream-in-net-is-not-closed9Is a memory leak created if a MemoryStream in .NET is not closed?Coderer2008-10-24T15:39:40Z2009-05-15T20:01:18Z
<p>I have the following code:</p>
<pre><code>MemoryStream foo(){
MemoryStream ms = new MemoryStream();
// write stuff to ms
return ms;
}
void bar(){
MemoryStream ms2 = foo();
// do stuff with ms2
return;
}
</code></pre>
<p>Is there any chance that the MemoryStream that I've allocated will somehow fail to be disposed of later? </p>
<p>I've got a peer review insisting that I manually close this, and I can't find the information to tell if he has a valid point or not.</p>
http://stackoverflow.com/questions/756663/do-grants-on-master-propogate-to-other-dbs0Do GRANTs on [master] propogate to other DBs?Coderer2009-04-16T15:24:20Z2009-04-16T15:45:21Z
<p>OK, I'm trying to make an "empty" version of a database on another instance of SQL Server 2005. To do this, I use the Scripting wizard to make a big script that CREATEs all the tables, views, SPs, etc., adds some users, and grants permissions for them. Now, in the permission section of the script, I have (among other things)</p>
<pre><code>use [master]
GO
GRANT CREATE VIEW to [myUser]
GO
...
use [prodDb]
GO
GRANT REFERENCES on [tblMyTable] to [myUser]
GO
...
</code></pre>
<p>Remember, this is the script generated by the wizard. What I'm trying to figure out is, should the "use master ... GRANT CREATE VIEW" allow myUser to create views in prodDb? That's my understanding -- I'm saying "myUser can create views in any database on this instance" -- but I think I'm getting permission errors when I try to allow myUser to create a view in prodDb. When I look at permissions for prodDb in SQL Server Manager, the permissions are correct, but the target system where I'm executing the generated script doesn't have SQL Server Manager, and I'm not sure how to check per-user permissions on a given object from the command line (and obviously, the errors when I try to exercise those permissions are a big hint).</p>
<p>Is this a bug in the scripting wizard? Should I take away the permissions at Master level and grant them only at the per-DB level? If it makes any difference, this is for a local app on a standalone system that will never be networked.</p>
<p>ETA: OK, so why doesn't the scripting wizard script the correct GRANT statements for prodDb? I mean, if I look at the current permissions for myUser on prodDb, they can CREATE VIEW. But if I run the script on a fresh instance of SQL Server from the command line, myUser cannot CREATE VIEW on prodDb. I can fix this by hand, but it's pretty damn irritating to have to remember that every time I re-run the script wizard.</p>
http://stackoverflow.com/questions/188120/can-i-specify-my-explicit-type-comparator-inline4Can I specify my explicit type comparator inline?Coderer2008-10-09T16:41:57Z2009-04-13T07:06:01Z
<p>So .NET 3.0/3.5 provides us with lots of new ways to query, sort, and manipulate data, thanks to all the neat functions supplied with LINQ. Sometimes, I need to compare user-defined types that don't have a built-in comparison operator. In many cases, the comparison is really simple -- something like foo1.key ?= foo2.key. Rather than creating a new IEqualityComparer for the type, can I simply specify the comparison inline using anonymous delegates/lambda functions? Something like:</p>
<pre><code>var f1 = ...,
f2 = ...;
var f3 = f1.Except(
f2, new IEqualityComparer(
(Foo a, Foo b) => a.key.CompareTo(b.key)
) );
</code></pre>
<p>I'm pretty sure the above doesn't actually work. I just don't want to have to make something as "heavy" as a whole class just to tell the program how to compare apples to apples.</p>
http://stackoverflow.com/questions/710890/the-referenced-component-system-could-not-be-found-or-any-other-component-for/737797#7377970Answer by Coderer for The referenced component 'System' could not be found. (or any other component for that matter)Coderer2009-04-10T14:31:37Z2009-04-10T14:31:37Z<p>Check your output with ILDASM to make sure the references are showing up correctly -- compare them to an assembly that works, and see if anything jumps out at you.</p>
http://stackoverflow.com/questions/734253/solved-my-printout-doesnt-look-like-the-print-preview-when-i-use-a-transform0[Solved] My printout doesn't look like the print preview when I use a TransformCoderer2009-04-09T13:34:35Z2009-04-09T18:58:21Z
<p>I'm trying to print out a DataGridView using a PrintDocument. In my PrintPage event handler, I use the e.Graphics object to draw some grid lines, then print some text in the "cells" created -- as an aside, this really should have been done by Microsoft, but I digress.</p>
<p>Anyway, this works just fine. The PrintDocument is tied to a PrintPreviewDialog, and when I open it, the DGV is rendered correctly. The user can click the Preview dialog's print button and get a printout. My problem is that sometimes the DGV is too wide for the page, so I'd like to be able to scale it (horizontally only) to fit. I'm calling</p>
<pre><code>e.Graphics.ScaleTransform(printableWidth / gridWidth)
</code></pre>
<p>before I actually start drawing anything. This makes the preview look exactly the way I want it to, but for some reason, the actual printout looks exactly like it did before I added the code for scaling -- if the report is too wide, it just falls right off the side of the page!</p>
<p>Is there some difference between the way that a PrintPage event is handled for preview versus how it's sent to the printer? Would my run-of-the-mill PostScript office laser printer not be able to handle the ScaleTransform function? I would think it should just blindly print what's sent to it, but maybe there's more processing involved than I thought.</p>
http://stackoverflow.com/questions/734253/solved-my-printout-doesnt-look-like-the-print-preview-when-i-use-a-transform/734667#7346670Answer by Coderer for [Solved] My printout doesn't look like the print preview when I use a TransformCoderer2009-04-09T15:11:45Z2009-04-09T15:11:45Z<p>OK, I found my problem -- I thought I was calling ScaleTransform for each page, but it turns out it was only actually executing on the first call to the PrintPage handler. Subsequent calls were skipping over the line due to a conditional it was wrapped in. So a word to the wise -- make sure that if you want to transform your printout, you do it independently for every page.</p>
http://stackoverflow.com/questions/710566/find-the-last-value-in-a-rolled-over-sequence-with-a-stored-procedure0Find the last value in a "rolled-over" sequence with a stored procedure?Coderer2009-04-02T16:45:17Z2009-04-09T13:37:26Z
<p>Suppose I had a set of alpha-character identifiers of a set length, e.g. always five letters, and they are assigned in such a way that they are always incremented sequentially (GGGGZ --> GGGHA, etc.). Now, if I get to ZZZZZ, since the length is fixed, I must "roll over" to AAAAA. I might have a contiguous block from ZZZAA through AAAAM. I want to write a sproc that will give me the "next" identifier, in this case AAAAN.</p>
<p>If I didn't have this "rolling over" issue, of course, I'd just ORDER BY DESC and grab the top result. But I'm at a bit of a loss now -- and it doesn't help at all that SQL is not my strongest language.</p>
<p>If I <em>have</em> to I can move this to my C# calling code, but a sproc would be a better fit.</p>
<p>ETA: I would like to avoid changing the schema (new column <em>or</em> new table); I'd rather just be able to "figure it out". I might even prefer to do it brute force (e.g. start at the lowest value and increment until I find a "hole"), even though that could get expensive. If you have an answer that does not modify the schema, it'd be a better solution for my needs.</p>
http://stackoverflow.com/questions/710566/find-the-last-value-in-a-rolled-over-sequence-with-a-stored-procedure/734174#7341740Answer by Coderer for Find the last value in a "rolled-over" sequence with a stored procedure?Coderer2009-04-09T13:18:25Z2009-04-09T13:18:25Z<p>I think the lowest-impact solution for my needs is to add an identity column. The one thing I can guarantee is that the ordering will be such that entries that should "come first" will be added first -- I'll never add one with identifier BBBB, then go back and add BBBA later. If I didn't have that constraint, obviously it wouldn't work, but as it stands, I can just order by the identity column and get the sort I want.</p>
<p>I'll keep thinking about the other suggestions -- maybe if they "click" in my head, they'll look like a better option.</p>
http://stackoverflow.com/questions/706336/is-the-win32-registry-thread-safe/706350#7063500Answer by Coderer for Is the Win32 Registry 'thread safe'?Coderer2009-04-01T16:29:50Z2009-04-01T16:29:50Z<p>That depends on what you're communicating, and how time-critical the information is. Say, for example, that you have an app doing work and writing status results to a registry key, and another app reading that status and displaying it on-screen. In that case, I wouldn't bother with a mutex, as the reader will always get a value that "makes sense". What you're asking is really a fundamental question of concurrency design, I think.</p>
http://stackoverflow.com/questions/698498/is-there-a-stock-idle-wait-dialog1Is there a "stock" idle / wait dialog?Coderer2009-03-30T18:38:08Z2009-04-01T04:00:32Z
<p>My C# application is running at system startup, and must wait for the local SQL Server instance until it can actually do anything. Right now, I just spin waiting for the server to respond (I used to get a wait handle on the service, but that wasn't reliable), then launch the app's main dialog.</p>
<p>The problem with this, of course, is that the user can't tell anything is happening until the service starts, and because of the hardware we're using that can take up to a minute. So I'm thinking of throwing in a "Loading / Please Wait" indicator of some sort. The thing is, our project is nearing lockdown and a change as big as making a new class would cause a lot of headaches -- modifying an existing file (like Program.cs) is a lot less intrusive than making a new one. Long story short: is there a .NET class that would be well suited to being displayed (asynchronously, I guess) before I start plinking at the SQL Server, then removed when it starts to respond?</p>
http://stackoverflow.com/questions/698366/how-to-avoid-a-database-race-condition-when-manually-incrementing-pk-of-new-row/698537#6985371Answer by Coderer for How to avoid a database race condition when manually incrementing PK of new row.Coderer2009-03-30T18:47:04Z2009-03-30T18:47:04Z<p>Is the main concern concurrent access? I mean, will multiple instances of your app (or, God forbid, other apps outside your control) be performing inserts concurrently?</p>
<p>If not, you can probably manage the inserts through a central, synchronized module in your app, and avoid race conditions entirely.</p>
<p>If so, well... like Joel said, change the database. I know you can't, but the problem is as old as the hills, and it's been solved well -- at the database level. If you want to fix it yourself, you're just going to have to loop (insert, check for collisions, delete) over and over and over again. The fundamental problem is that you can't perform a transaction (I don't mean that in the SQL "TRANSACTION" sense, but in the larger data-theory sense) if you don't have support from the database.</p>
<p>The only further thought I have is that if you at least have control over who has access to the database (e.g., only "authorized" apps, either written or approved by you), you could implement a side-band mutex of sorts, where a "talking stick" is shared by all the apps and ownership of the mutex is required to do an insert. That would be its own hairy ball of wax, though, as you'd have to figure out policy for dead clients, where it's hosted, configuration issues, etc. And of course a "rogue" client could do inserts without the talking stick and hose the whole setup.</p>
http://stackoverflow.com/questions/689587/calling-visual-c-code-from-c/689703#6897031Answer by Coderer for Calling visual C++ code from C#Coderer2009-03-27T13:07:08Z2009-03-27T13:07:08Z<p>The "short short" version is that a "ref class" is a managed class. You can't have member variables of a managed type (.NET Library objects, like StringBuilder or TCPListener) in a class that is not declared "ref" -- that is, unmanaged classes cannot contain managed objects.</p>
http://stackoverflow.com/questions/615662/how-can-i-tell-that-sql-server-is-started-and-ready-to-use0How can I tell that SQL Server is started and ready to use?Coderer2009-03-05T16:57:46Z2009-03-05T17:20:47Z
<p>I have an app that runs on system startup that needs to talk to the local SQL Server 2005 installation. I'm using the ServiceController class to wait for it to enter the "Running" state, and most times this works fine. However, sometimes on a cold boot, my first query fails, saying that it couldn't log on the current user.</p>
<p>It sounds like a race condition, but I figured my WaitForStatus call was supposed to resolve it.</p>
<p>Is there a better way to make sure it's really-truly running? Should I just throw in an extra sleep and assume it's long enough?</p>
http://stackoverflow.com/questions/387830/windows-ups-uninterruptible-power-supply-service-turn-off-ups1Windows UPS (Uninterruptible Power Supply) service - turn off UPS?Coderer2008-12-23T00:10:34Z2009-02-27T21:25:26Z
<p>I'm using the UPS service to monitor the state of my UPS from an application -- the key at HKLM\SYSTEM\CCS\Services\UPS\Status has all the information you can get from the Power control panel. BUT -- I'd like to be able to tell the UPS to shut down from my app as well. I know that the service can tell the UPS to shut down -- for instance, after running a set number of minutes on battery -- and I'm wondering if there's some kind of command I can send to the service to initiate a shutdown manually.</p>
<p>I'm having trouble searching for this information -- people tend to misspell "Uninterruptible" (hrm, Firefox red-lined that but doesn't have an alternative) and "UPS" just gets hits for the shipping service. Maybe I can do something through System.ServiceController, or WMI?</p>
<p>CLARIFICATION: Yes, I am talking about powering down the physical UPS device. I know how to stop the service. I figured it would be a common problem -- I want my UPS to turn off with the PC. I had an idea I'm going to try, based on <a href="http://msdn.microsoft.com/en-us/library/ms789319.aspx" rel="nofollow">this page</a>. You see, APC (and everybody else) has to supply a DLL for the UPS service to call, and since the function calls are well documented, there's no reason I shouldn't be able to P/Invoke them. I'll re-edit this once I know whether or not it worked.</p>
<p>Update: I tried invoking UPSInit, then UPSTurnOff, and nothing happens. I'll tinker with it some more, but the direct call to apcups.dll might be a dead end.</p>
http://stackoverflow.com/questions/561661/take-an-array-of-any-value-type-as-formal-parameter4Take an array of any value type as formal parameterCoderer2009-02-18T15:52:07Z2009-02-23T13:49:12Z
<p>I would like to be able to declare a function as</p>
<pre><code>void foo(<any value type>[] data){}
</code></pre>
<p>in C# 2.0. If I declare it as</p>
<pre><code>void foo(ValueType[] data){}
</code></pre>
<p>it compiles, but then the elements in data[] are treated as though they're derived from <code>object</code>, e.g. I can't say something like</p>
<pre><code>fixed (void* pData = data){}
</code></pre>
<p>I'd like to avoid taking the void* as the parameter -- I just want to be able to accept any value-type array and then do unmanaged things to it.</p>
<p>ETA: Also, this has the same problem:</p>
<pre><code>public static unsafe void foo<T>(T[] data) where T:struct{
fixed(void *p = data){}
}
</code></pre>
<p>in case you were wondering. Fixed fails because it's treated as a managed type -- CS0208, cannot declare a pointer to a managed type. See "mm" below. I think he's right... it probably just can't be done.</p>
http://stackoverflow.com/questions/561227/byte-width-of-a-value-type0Byte width of a value typeCoderer2009-02-18T14:20:29Z2009-02-18T15:48:31Z
<p>I'd like to pass a value type to a function and set it to a repeating bit pattern (FF, AA, etc.) across the entire width of the variable. Right now, I'm passing the value with</p>
<p>void foo(T val) where T : struct</p>
<p>so I can use any value type. The problem is, the compiler won't let me use sizeof(T), because T could be a reference type (except that it <em>can't</em>, thanks to the "where" constraint). I could hard code all the value types and check against them myself, but that obviously seems like overkill. Is there a simpler way to do this?</p>
<p>Just to clarify: if I pass a <code>byteInt64</code>, I want to set it to 0xFFFFFFFF.</p>
<p>I tried <code>Convert.ChangeType(0xFFFFFFFF, typeof(T))</code>, but it throws if <code>val</code> is e.g. a Char. I could solve the problem by a) figuring out how wide the type-parameter is and "building" a big-enough value to stuff in, b) figuring out how to accept any value type (and only value types), such that sizeof() would work, or c) figuring out how to automagically truncate 0xFFFFFFFF down to the correct width for the variable.</p>
http://stackoverflow.com/questions/515884/how-to-convert-c-to-dll-to-hide-the-source-code/516300#5163000Answer by Coderer for How to convert C# to DLL to hide the source code?Coderer2009-02-05T15:14:40Z2009-02-05T15:14:40Z<p>I think <a href="http://stackoverflow.com/questions/272342/free-javascript-obfuscators/272356#272356">my reply</a> to a similar question about JavaScript obfuscation applies here as well: in short, why bother? Your question has already been answered here ("use an obfuscator"), but I thought it wouldn't hurt to find out what your motivations are. Generally, code that you give to people is "in the hands of the enemy" -- if somebody wants to use it/figure out how it works badly enough, they will.</p>
http://stackoverflow.com/questions/504423/powershell-causes-a-to-seek-when-it-starts-how-do-i-stop-this/513586#5135860Answer by Coderer for Powershell causes a: to seek when it starts; how do I stop this?Coderer2009-02-04T22:06:21Z2009-02-04T22:06:21Z<p>Stop using floppy disks?</p>
<p>/ducks</p>
http://stackoverflow.com/questions/451596/checking-for-devices-on-lpt-parallel-port0Checking for devices on LPT/parallel portCoderer2009-01-16T19:19:10Z2009-02-04T22:01:49Z
<p>I'd like to require that a line printer be attached to the parallel port (and turned on!) before running my application. I had found code to check a particular line on the LPT for a particular level that was supposed to indicate that a printer was there and "ready", but I got inconsistent behavior with that, even between different printers of the same model.</p>
<p>Recently, I discovered that if the printer was hooked up but turned off, the write buffer for the port seemed to fill up, eventually causing write calls to block (apparently). This lead me to reason that maybe if I could check how full the write buffer is, I'd have a more robust printer-detection method -- print a "hello" message, wait a few milliseconds, then see if the message had left the port buffer or not. But I'm having trouble finding any ways to do this with kernel/platform SDK calls.</p>
<p>Can anybody help me out? Bonus points if it's straight managed code! Note: I don't want to have to install Windows drivers for this printer, so any use of Shell/Control Panel/WDM won't help me.</p>
<p>EDIT: To clarify, the "bonus points for managed code" meant that while the app is C#, if I have to do it in a C/C++ DLL then p/invoke that, that would be OK.</p>
<p>FOLLOW-UP: No answers? It's starting to look like Windows hates the LPT so much there's just no solution. That's OK -- it's not absolutely <em>critical</em> to make sure the printer is there, though it would have been nice. I'm going to close the question now, with a warning -- if you're trying to do the same thing, and you come across this question... don't expect your life to be very easy.</p>
http://stackoverflow.com/questions/484511/is-there-any-way-for-executing-a-method-multiple-times-but-managing-connections/512053#5120532Answer by Coderer for Is there any way for executing a method multiple times, but managing connections/threads? (.NET)Coderer2009-02-04T16:12:18Z2009-02-04T16:12:18Z<p>Here's what I don't get: you say max 50 connections, but only 8 threads. Each connection by definition "occupies" / runs in a thread. I mean, you're not using DMA or any sort of other magic to take the load off the CPU, so each transfer needs an execution context. If you can launch 50 async requests at once, fine, great, do that -- you should be able to launch them all from the same thread, since calling an async read function takes essentially no time at all. If you e.g. have 8 cores and want to make sure an entire core is dedicated to each transfer (that would probably be dumb, but it's <em>your</em> code, so...), you can only run 8 transfers at once.</p>
<p>My suggestion is to just launch 50 async requests, inside a sync block so that they all start before you allow any of them to complete (simplifies the math). Then, use a count semaphore as suggested by Jeremy or a synchronized Queue as suggested by mbeckish to keep track of the work remaining. At the end of your async-complete callback, launch the next connection (if appropriate). That is, start 50 connections, then when one finishes, use the "completed" event handler to launch the next one, until all the work is done. This shouldn't need any kind of additional libraries or frameworks.</p>
http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device/508552#5085521Answer by Coderer for How to programatically unplug & replug an arbitrary USB device?Coderer2009-02-03T19:30:55Z2009-02-03T19:30:55Z<p>Thought: under Device Manager, you can right-click your computer icon (top of the device tree) and "scan for changes". I'm not 100% sure, but I think if you "eject" a USB device (software "unplug" equivalent), then Scan for Hardware Changes, it will show back up even though it never actually left the port.</p>
<p>If I'm right about that, you might be able to use the Microsoft.Win32.Shell class to emulate opening Control Panel --> Administrative Tools --> Device Manager and running the context-menu item. It's worth a shot, anyway.</p>
http://stackoverflow.com/questions/280199/what-is-the-best-usb-library-to-communicate-with-usb-hid-devices-on-windows/508526#5085262Answer by Coderer for What is the best usb library to communicate with usb HID devices on Windows?Coderer2009-02-03T19:27:28Z2009-02-03T19:27:28Z<p>Look at this code:</p>
<p><a href="http://khason.net/blog/read-and-use-fm-radio-or-any-other-usb-hid-device-from-c" rel="nofollow">http://khason.net/blog/read-and-use-fm-radio-or-any-other-usb-hid-device-from-c</a></p>
<p>It gives you some simple classes to talk to a HID device. What it boils down to is, get the alias for the device (something like \?\HID#Vid_nnnn&Pid_nnn#.......) and use CreateFile to open it. You can get the device's alias under HKML\SYSTEM\CCS\Control\DeviceClasses{4d1e55...}\</p>
<p>The Vid and Pid are the vendor ID and product ID of the device (check Device Manager).</p>
http://stackoverflow.com/questions/375011/utilizing-the-gpu-with-c/507986#5079861Answer by Coderer for Utilizing the GPU with c#Coderer2009-02-03T17:03:46Z2009-02-03T17:03:46Z<p>If your GPUs are all the same brand, you might be able to get GPGPU support from the vendor, either through Nvidia's CUDA or ATI's Stream. AFAIK, they provide DLLs, which you could use through P/Invoke.</p>
http://stackoverflow.com/questions/438029/how-do-i-get-the-friendly-name-of-serial-port-in-mono-and-keep-it-cross-platfor/493459#4934590Answer by Coderer for How Do I get the "friendly" name of serial port in Mono and keep it cross platform Coderer2009-01-29T21:14:10Z2009-01-29T21:14:10Z<p>You need to look into doing WMI. I haven't been able to run this myself, but if you combine this basic framework of how to retrieve a WMI object with <a href="http://msdn.microsoft.com/en-us/library/aa394413(VS.85).aspx" rel="nofollow">this documentation</a> of the <code>Win32_SerialPort</code> class, I think you can work something out.</p>
<p>Basically, you want to get a collection of all the <code>Win32_SerialPort</code>s on the system, then iterate through them. You may want the "Caption", or "Description", or maybe just "Name". My best advice is to just set a breakpoint and check the object's properties in debug mode so you can figure out exactly what gets populated.</p>
http://stackoverflow.com/questions/489173/writing-xml-with-c/489414#4894140Answer by Coderer for Writing XML with C#Coderer2009-01-28T21:15:05Z2009-01-28T21:15:05Z<p>You need to escapify the contents before writing them out, to make sure that they're valid strings. I don't know of a .NET routine to do it automatically, unfortunately -- the question has been asked here before.</p>
http://stackoverflow.com/questions/443106/are-there-free-tools-or-libraries-for-3d-wpf-objects/469518#4695180Answer by Coderer for Are there (free) tools or libraries for 3D WPF objects?Coderer2009-01-22T15:14:29Z2009-01-22T15:14:29Z<p>I should add something else terribly, terribly important that I forgot to mention in my first post -- <em>why</em> are you looking at 3D controls? I looked at the link Thomas posted, and they have a 3D animated "knife switch" to replace a check box.</p>
<p>FOR THE LOVE OF ALL THAT IS PURE AND HOLY, <em>do not</em> foist that on a commercial desktop app! If you want to play with it, if you want to make childrens' software interesting or something, fine, great. But I just want to make sure you're not trying to "add punch" to your accounting package or something...</p>
http://stackoverflow.com/questions/1710475/newbie-sinatra-questionComment by Coderer on newbie sinatra questionCoderer2009-11-24T22:46:45Z2009-11-24T22:46:45ZConsider "accepting" one of their answers, if you like them (click the outline of a check mark next to their post; it should turn green)http://stackoverflow.com/questions/1785274/what-happened-to-the-jquery-contains-traversal-methodComment by Coderer on What happened to the jQuery "contains" traversal method?Coderer2009-11-23T19:38:28Z2009-11-23T19:38:28ZJust goes to show that when you name a method with a common English word (like "contains") it makes things harder when you're searching for information...http://stackoverflow.com/questions/1785274/what-happened-to-the-jquery-contains-traversal-method/1785374#1785374Comment by Coderer on What happened to the jQuery "contains" traversal method?Coderer2009-11-23T19:37:40Z2009-11-23T19:37:40ZI'd submit a ticket to their bugtrack to have deprecated methods marked as "deprecated" in the docs, but I can't be arsed to create an account on their website just to do that. I guess nobody else can, either :(http://stackoverflow.com/questions/971477/jquery-error-a-function-is-not-a-function/971522#971522Comment by Coderer on jquery error: a function is not a function?Coderer2009-11-23T18:45:12Z2009-11-23T18:45:12ZI'm confused because of this: <a href="http://docs.jquery.com/Traversing/contains" rel="nofollow">docs.jquery.com/Traversing/contains</a>
I have been learning jQuery through "jQuery in Action" (too lazy to look up a link; it's a popular book though) and in my Oct. 2008 edition on p.45 they list a "contains" function. Both their example, and the one I linked to above from the jQuery docs, generate the OP's error ("not a function"). Did there used to be a .contains function that maybe got removed? Or did it get added after 1.2.1, the version used in the book's sample code?http://stackoverflow.com/questions/34019/install-the-radrails-plugin-for-aptana-studio-offlineComment by Coderer on Install the Radrails plugin for Aptana Studio offlineCoderer2009-10-26T19:16:09Z2009-10-26T19:16:09ZFWIW, the link in your "Update" is now "Access Denied". Why can't they just make it easy to find offline install files? It's enough to make me want to just ditch Aptana altogether.http://stackoverflow.com/questions/710890/the-referenced-component-system-could-not-be-found-or-any-other-component-for/737797#737797Comment by Coderer on The referenced component 'System' could not be found. (or any other component for that matter)Coderer2009-04-13T13:25:11Z2009-04-13T13:25:11ZNo, you're right -- I must have misread your post. I thought you were having <i>runtime</i> problems. Never mind.http://stackoverflow.com/questions/710890/the-referenced-component-system-could-not-be-found-or-any-other-component-forComment by Coderer on The referenced component 'System' could not be found. (or any other component for that matter)Coderer2009-04-10T14:12:14Z2009-04-10T14:12:14ZIs the project C++ or C#? I'm sure you already know this, but "referenced component 'System' not found" is the error you get when you compile C++ CLR code without CLR support (among other things).http://stackoverflow.com/questions/710566/find-the-last-value-in-a-rolled-over-sequence-with-a-stored-procedure/714973#714973Comment by Coderer on Find the last value in a "rolled-over" sequence with a stored procedure?Coderer2009-04-09T13:15:38Z2009-04-09T13:15:38ZCould you edit to explain what this actually does?http://stackoverflow.com/questions/710566/find-the-last-value-in-a-rolled-over-sequence-with-a-stored-procedure/710705#710705Comment by Coderer on Find the last value in a "rolled-over" sequence with a stored procedure?Coderer2009-04-09T13:09:57Z2009-04-09T13:09:57ZThe sequence doesn't always start at the beginning. Sometimes, it starts at BBBB, while sometimes it starts at YYYY, so there's already "room" at the beginning of the alphabethttp://stackoverflow.com/questions/698498/is-there-a-stock-idle-wait-dialog/702162#702162Comment by Coderer on Is there a "stock" idle / wait dialog?Coderer2009-04-01T13:55:39Z2009-04-01T13:55:39ZThe problem is that our initial dialog uses some SQL databindings, and there's not an easy way to say "turn these off until the 'Server Responding' flag is set by this other thread". At least, I don't <i>think</i> there is.http://stackoverflow.com/questions/698498/is-there-a-stock-idle-wait-dialog/703995#703995Comment by Coderer on Is there a "stock" idle / wait dialog?Coderer2009-04-01T13:53:47Z2009-04-01T13:53:47ZFunny thing, I did almost exactly this last night on my own. I don't think you need 3 threads -- I only used two. As for project management, the thing is that we don't have an Executing phase, we have a Out Of Our Control Forever And Ever phase. And we're <i>almost</i> there.http://stackoverflow.com/questions/698498/is-there-a-stock-idle-wait-dialog/699169#699169Comment by Coderer on Is there a "stock" idle / wait dialog?Coderer2009-03-31T13:55:06Z2009-03-31T13:55:06ZAgain, I'm just trying to avoid creating a new class file for project-management reasons. If I can add one or two lines of code, I'll do it. If I have to add 50 lines of code in a new file, I won't.http://stackoverflow.com/questions/698498/is-there-a-stock-idle-wait-dialog/698647#698647Comment by Coderer on Is there a "stock" idle / wait dialog?Coderer2009-03-31T13:54:17Z2009-03-31T13:54:17ZThis sounds great, except that it would be adding a new file, which was what I was trying to avoid in the first place. The reason I said "stock" is I'd like something you can get by installing a retail VS 2005 disc on a retail Win XP machine.http://stackoverflow.com/questions/696472/given-a-private-key-is-it-possible-to-derive-its-public-key/696547#696547Comment by Coderer on Given a private key, is it possible to derive it's public key?Coderer2009-03-30T14:56:03Z2009-03-30T14:56:03ZI assumed it was a joke -- SO has no sense of humor (I've gotten downvoted for jokes as well)http://stackoverflow.com/questions/689515/controls-handlingComment by Coderer on Controls HandlingCoderer2009-03-27T13:12:51Z2009-03-27T13:12:51ZI'm not <i>sure</i>, but I think he wants to hook into a running .exe and get a Button (he tagged C#, so I'm going to assume WinForms) object that points to the control on one of its forms. I try to be forgiving about bad (second-language) English, but if you can't be clear, at least be verbose.