User Nic Strong - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T12:22:03Zhttp://stackoverflow.com/feeds/user/2281http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1736788/foreach-generixs/1736791#17367910Answer by Nic Strong for ForEach @ GenerixsNic Strong2009-11-15T06:33:25Z2009-11-15T06:33:25Z<p>Do you mean a map function? See this question <a href="http://stackoverflow.com/questions/702123/linq-map-or-collect">http://stackoverflow.com/questions/702123/linq-map-or-collect</a></p>
http://stackoverflow.com/questions/1672863/how-do-i-get-the-child-process-id-in-parallelforkmanager/1672988#16729885Answer by Nic Strong for How do I get the child process id in Parallel::ForkManager? Nic Strong2009-11-04T10:40:07Z2009-11-04T23:07:14Z<p>Not sure about the Parallel::ForkManager implementation, but if it is anything like standard fork() the 0 is being returned because you are in the child process. Fork will only return a non-zero pid to the parent process.</p>
<p>I forgot to add, given the 'and next' after the start call the code is behaving exactly as expected.</p>
<p>Note to EDIT 2:</p>
<p>Since you dropped the 'and next' from the start call the parent process is also running the download as well. I am guessing 21892 is the pid of the parent process which will run through the loop multiple times</p>
http://stackoverflow.com/questions/1648618/techniques-for-obscuring-sensitive-strings-in-c/1648702#16487021Answer by Nic Strong for techniques for obscuring sensitive strings in C++Nic Strong2009-10-30T09:01:35Z2009-10-30T09:01:35Z<p>Somewhat dependent on what you are trying to protect as joshperry points out.
From experience, I would say that if it is part of some licensing scheme to protect your software then don't bother. They will eventially reverse engineer it. Simply use a simple cipher like ROT-13 to protect it from simple attacks (line running strings over it).
If it is to secure users sensitive data I would be questioning whether protecting that data with a private key stored locally is a wise move. Again it comes down to what you are trying to protect.</p>
<p>EDIT: If you are going to do it then a combination of techniques that Chris points out will be far better than rot13.</p>
http://stackoverflow.com/questions/1359810/best-way-to-generate-options-in-visualstudio-project-files/1359915#13599152Answer by Nic Strong for best way to generate options in VisualStudio Project filesNic Strong2009-08-31T23:47:37Z2009-08-31T23:47:37Z<p>One solution could be to use <a href="http://msdn.microsoft.com/en-us/library/a4xbdz1e%28VS.80%29.aspx" rel="nofollow">Property Sheets</a> (vsprops). You could generate a vsprops file for every option you intend to use (this is done from the property sheet editor in visual studio). Then in your generated project file reference each property sheet that contains the option(s) you intend to use in the InheritedPropertySheets seciton. We do something similar by grouping various options together into related propery sheets. For example we use the following sets of property sheets:</p>
<pre><code> ARMASM.rules
C++ Standards Compliance.vsprops
Debug Program Database.vsprops
Debug.vsprops
Multi-Threaded Debug Libraries.vsprops
Multi-Threaded Release Libraries.vsprops
Optimize for Size.vsprops
Platform Directory.vsprops
Release.vsprops
Static Library.vsprops
Strictest Warnings.vsprops
Win32.vsprops
WinCE.vsprops
</code></pre>
http://stackoverflow.com/questions/1333876/rest-services-with-net-2-0-framework-rest-consumption-in-javascript/1333955#13339551Answer by Nic Strong for REST services with .Net 2.0 framework & REST consumption in javascript..Nic Strong2009-08-26T11:08:56Z2009-08-26T11:08:56Z<p>Apart from rolling your own Http modules there are 3 main toolkits I know of for implementing REST services.</p>
<ul>
<li>WCF - Has the advantage that it comes with the framework and has the underlying framework to support more advanced scenerios. Microsoft also provide the <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24644" rel="nofollow" title="WCF Starter Toolkit">WCF Starter Toolkit</a> which has a lot of extra goodies.</li>
<li>OpenRasta - Available <a href="http://www.ohloh.net/p/openrasta" rel="nofollow">here</a>. A much simpiler option than the WCF route. I haven't use it enough to comment on advanced usage scenerios.</li>
<li>ASP.NET MVC - Although not a REST framework can still be used to implement REST services. Phil Haack has a good blog post <a href="http://haacked.com/archive/2009/08/17/rest-for-mvc.aspx" rel="nofollow">here</a>.</li>
</ul>
http://stackoverflow.com/questions/1225266/dump-the-container-configuration-in-structuremap0Dump the container configuration in StructureMapNic Strong2009-08-04T00:28:00Z2009-08-04T00:33:48Z
<p>I have a ever growing project using StructureMap as the IOC container. I am trying to reduce the amount of code in the StructureMap registries by using the auto-registration with Scan(). As I make changes is there an easy way to dump the current container to the console so i can see if the changes have done what I expected?</p>
http://stackoverflow.com/questions/156880/controlling-the-wcf-xmlserializer0Controlling the WCF XmlSerializerNic Strong2008-10-01T09:40:39Z2009-07-25T18:47:45Z
<p>I have some REST web services implemented in WCF. I wish to make these services return "Bad Request" when the xml contains invalid elements.</p>
<p>The xml serialization is being handled by XmlSerializer. By default XmlSerializer ignores unknown elements. I know it is possible to hook XmlSerializer.UnknownElement and throw an exception from this handler, but because this is in WCF I have no control over serialization. Any ideas how I might implement this behavior.</p>
http://stackoverflow.com/questions/1006214/why-the-below-piece-of-code-is-not-crashing-though-i-have-deleted-the-object/1006243#10062432Answer by Nic Strong for Why the below piece of code is not crashing , though i have deleted the object ?Nic Strong2009-06-17T10:31:03Z2009-06-17T10:31:03Z<p>Even if the method call was using the this pointer it would not be guaranteed to crash. The pointer p when deleted is not being zeroed so is still pointing to the same address in memory. Depending on the implementation of new/delete and the heap manager this memory might not even be resused so the use of p may still continue to work even though the memory has been released.</p>
http://stackoverflow.com/questions/847279/code-reuse-in-exception-handling/847382#8473821Answer by Nic Strong for Code reuse in exception handlingNic Strong2009-05-11T09:37:47Z2009-05-11T09:37:47Z<p><a href="http://stackoverflow.com/users/93447/jem">Jem</a> answer is a little more simpler than this solution. But it is possible to substitute the use of a preprocessor macro with the use of templates. Something like this (more refinements you could made):</p>
<pre><code>template <class T, void (T::*FUNC)()>
class CatchWrapper
{
public:
static void WrapCall(T* instance)
{
try
{
(instance->*FUNC)();
}
catch (std::bad_alloc&)
{
// Do Something 1
}
catch (std::exception& e)
{
// Do Something 2
}
catch (...)
{
// Do Something 3
}
}
};
class Foo
{
public:
void SomeCall()
{
std::cout << "Do Something" << std::endl;
}
};
int main(int argc, char* argv[])
{
Foo i;
CatchWrapper<Foo, &Foo::SomeCall>::WrapCall(&i);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/847229/c-code-reuse-classes-and-libraries/847273#8472730Answer by Nic Strong for C++ : Code reuse, classes and librariesNic Strong2009-05-11T08:58:09Z2009-05-11T08:58:09Z<p>By adding Class1 to your project as long as the compiler can find the include files for Class1, Class2 and Class3 it will compile, it will however fail to link.
The standard way of reusing Class1 (and its dependencies across projects is to use libraries). In Visual Studio the easiest way to do this is to include the library project in your solution and place a dependency on it. This way you will avoid having to manually set the inputs in the linker section of the project.</p>
http://stackoverflow.com/questions/847092/partial-builds-versus-full-builds-in-visual-c/847169#8471692Answer by Nic Strong for Partial builds versus full builds in Visual C++Nic Strong2009-05-11T08:14:36Z2009-05-11T08:14:36Z<p>I would definitely recommend it. I have seen on a number of occasions with a large Visual C++ solution the dependency checker fail to pick up some dependency on changed code. When this change is to a header file that effects the size of an object very strange things can start to happen.
I am sure the dependency checker has got better in VS 2008, but I still wouldn't trust it for a release build.</p>
http://stackoverflow.com/questions/847096/null-vs-value-not-set/847153#8471530Answer by Nic Strong for Null vs Value Not SetNic Strong2009-05-11T08:08:01Z2009-05-11T08:08:01Z<p>I have come across this exact problem before. You could work around this by introducing a some default value on construction of the DTO, but is is not ideal. I have blogged in more detail <a href="http://www.codepoets.co.nz/2009/03/03/handling-null-strings-using-xmlserializerdeserialize/" rel="nofollow">here</a>, it might help someone understand the issue further.</p>
http://stackoverflow.com/questions/844225/is-there-a-webserver-that-can-be-built-for-windows-mobile-6-that-dynamically-gene/844365#8443652Answer by Nic Strong for Is there a webserver that can be built for Windows Mobile 6 that dynamically generates pages?Nic Strong2009-05-09T23:53:29Z2009-05-09T23:53:29Z<p>Windows Mobile has a built in basic web server (HTTPD) that I think can support ASP and has support for ISAPI filters (see <a href="http://msdn.microsoft.com/en-us/library/aa926719.aspx" rel="nofollow">here</a>). If ASP ain't your thing you could probably get some light weight scripting languages to run under CE, still a daunting task and you will still need to write the wiki software.</p>
<p>Why not use one of the many free hosted wikis? (see a comparison <a href="http://www.wikimatrix.org/" rel="nofollow">here</a>)</p>
http://stackoverflow.com/questions/842465/streamreader-read-ahead-one-line-but-dont-consume/842554#8425542Answer by Nic Strong for streamreader read ahead one line but don't consume?Nic Strong2009-05-09T02:43:54Z2009-05-09T05:53:10Z<p>The problem is the underlying stream may not even be seekable. If you take a look at the stream reader implementation it uses a buffer so it can implement TextReader.Peek() even if the stream is not seekable.</p>
<p>You could write a simple adapter that reads the next line and buffers it internally, something like this:</p>
<pre><code> public class PeekableStreamReaderAdapter
{
private StreamReader Underlying;
private Queue<string> BufferedLines;
public PeekableStreamReaderAdapter(StreamReader underlying)
{
Underlying = underlying;
BufferedLines = new Queue<string>();
}
public string PeekLine()
{
string line = Underlying.ReadLine();
if (line == null)
return null;
BufferedLines.Enqueue(line);
return line;
}
public string ReadLine()
{
if (BufferedLines.Count > 0)
return BufferedLines.Dequeue();
return Underlying.ReadLine();
}
}
</code></pre>
http://stackoverflow.com/questions/69296/xml-serialization-and-empty-collections1XML Serialization and empty collections.Nic Strong2008-09-16T03:59:47Z2009-05-01T11:26:14Z
<p>I have a a property defined as:</p>
<pre><code>[XmlArray("delete", IsNullable = true)]
[XmlArrayItem("contact", typeof(ContactEvent)),
XmlArrayItem("sms", typeof(SmsEvent))]
public List<Event> Delete { get; set; }
</code></pre>
<p>If the List<> Delete has no items</p>
<pre><code><delete />
</code></pre>
<p>is emitted. If the List<> Delete is set to null</p>
<pre><code><delete xsi:nil="true" />
</code></pre>
<p>is emitted. Is there away using attributes to get the delete element not to be emitted if the collection has no items?</p>
<p><a href="http://stackoverflow.com/questions/69296/xml-serialization-and-empty-collections#69407">Greg</a> - Perfect thanks, I didn't even read the IsNullable documentation just assumed it was signalling it as not required.</p>
<p><a href="http://stackoverflow.com/questions/69296/xml-serialization-and-empty-collections#69518">Rob Cooper</a> - I was trying to avoid ISerializable, but Gregs suggestion works. I did run into the problem you outlined in (1), I broke a bunch of code by just returning null if the collection was zero length. To get around this I created a EventsBuilder class (the class I am serializing is called Events) that managed all the lifetime/creation of the underlying objects of the Events class that spits our Events classes for serialization.</p>
http://stackoverflow.com/questions/456839/what-conventions-idioms-patterns-are-you-using-configuring-ioc-containers-using-t5What conventions/idioms/patterns are you using configuring IOC Containers using the new Fluent InterfacesNic Strong2009-01-19T08:01:39Z2009-04-30T20:53:24Z
<p>I am in the middle of moving over a large body of code to Castle Trunk which includes the new fluent interface for configuring the container. Since the project has a huge windsorConfig xml file that is beyond maintainable, I thought I would start to take advantage of this new feature. I know other containers (e.g. StructureMap 2.0) also contain fluent interfaces for container configuration, so this question isn't based around Windsor.</p>
<p>My question is what conventions/idioms/patterns are you using for container configuration using the new fluent style interfaces?</p>
<p>My first thought was to create a static method somewhere (e.g. ContainerConfig.Config) that would load all the relevant types that the app uses into the container. My worry is eventually this monolithic function would end up being almost as unmaintainable as the xml config file (less the angle bracket tax).</p>
<p>My second thought was to break it down so each dependent assembly, by convention exports its default configuration. I can see this been useful for hierarchies used internally by the assembly. But for types used externally should there configuration even be defined internally?</p>
<p>The more I thought about it the more questions I seemed to raise. What are your thoughts on it?</p>
http://stackoverflow.com/questions/744553/suppressing-os-messages-in-windows-mobile-6/785374#7853740Answer by Nic Strong for Suppressing OS Messages in Windows Mobile 6Nic Strong2009-04-24T10:50:35Z2009-04-24T10:50:35Z<p>If your project has the budget consider looking at <a href="http://www.spbsoftwarehouse.com/products/kioskengine/" rel="nofollow">Spb Kiosk Engine</a></p>
http://stackoverflow.com/questions/748254/programming-activesync-on-windows-mobile/785359#7853590Answer by Nic Strong for Programming ActiveSync on Windows MobileNic Strong2009-04-24T10:44:26Z2009-04-24T10:44:26Z<p>Also consider looking at <a href="http://msdn.microsoft.com/en-us/sync/default.aspx" rel="nofollow">Microsoft SyncFramework</a>. Sync is a far harder problem than people realise and building a solution that caters to all the edge cases can be very difficult. IIRC they even have examples on syncing from Outlook to a Pocket PC.</p>
<p>If you do decide to go the RAPI route OpenNETCF have a nice RAPI C# library see <a href="http://www.opennetcf.com/FreeSoftware/DesktopCommunication/tabid/90/Default.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/672426/networking-with-c-c-in-a-windows-enviroment/672575#6725750Answer by Nic Strong for Networking with C/C++ in a Windows enviromentNic Strong2009-03-23T08:44:01Z2009-03-23T08:44:01Z<p>If you are looking to use this as a learning experience I would also look at <a href="http://www.cs.wustl.edu/~schmidt/ACE.html" rel="nofollow">ACE</a>. A C++ cross platform framework that implements a lot of the patterns discussed in <a href="http://www.amazon.com/Pattern-Oriented-Software-Architecture-Concurrent-Networked/dp/B001C4QJ94/ref=sr%5F1%5F1?ie=UTF8&s=books&qid=1237797542&sr=1-1" rel="nofollow">Patterns for Concurrent Network and Networked Objects</a>. The author has also written on ACE as well (see <a href="http://rads.stackoverflow.com/amzn/click/0201604647" rel="nofollow">here</a>).</p>
http://stackoverflow.com/questions/649263/injecting-non-primative-types-without-wrapping-them-in-an-inteface-in-structurema0Injecting non-primative types without wrapping them in an inteface in StructureMapNic Strong2009-03-16T04:22:24Z2009-03-16T08:17:46Z
<p>I have a simple SM Registry where I am configuring all my instances of IDynamicValue. I have some contructor arguments that are non-primative types (in my case a DateTime and a Predicate Of T). Is there a way I can inject these without having to wrap them in a class with an interface (so they can be auto-wired). The following code snippet shows what I would like to accomplish:</p>
<pre><code>ForRequestedType<IDynamicValue>().AddInstances(x =>
{
x.OfConcreteType<DateTimeGenerator>().WithName("DateTime")
.WithCtorArg("keyName").EqualTo("DateTime")
.WithCtorArg("startDate").EqualTo(DateTime.Now.AddMonths(-1))
.WithCtorArg("minuteIntervalDelta").EqualTo(60);
});
</code></pre>
<p>That example runs but fails with the exception:</p>
<p>StructureMap Exception Code: 202
No Default Instance defined for PluginFamily System.DateTime</p>
<p>Thanks,
Nic</p>
<p><strong>EDIT:</strong></p>
<p>Freddy Rios solution worked perfect for what I needed. I am still curious if there is a method of doing this if I was auto-wiring some contructor arguments (hence couldn't use ConstructedBy()) </p>
http://stackoverflow.com/questions/423162/deploying-content-file-from-dependent-assemblies-with-clickonce1Deploying Content file from dependent assemblies with ClickOnceNic Strong2009-01-08T03:32:35Z2009-01-11T10:14:45Z
<p>I have a simple WinForms app that I am deploying internally using ClickOnce. The main application has a dependent assembly, that assembly has some xml template files marked as "Content" and "Copy Always" in the build properties, however they do not show up in the list of Application Files if I go into the Project Properties->Publish->Application Files dialog.</p>
<p>Anyone know how I can deploy these Xml files that are part of a dependent assembly.</p>
<p>Thanks,
Nic</p>
<p>@whatknott - Thanks, that worked great. In the end I added the xml file using a Add Existing File and selected 'Add as Link', which accomplished the same thing.</p>
http://stackoverflow.com/questions/156113/linqtosql-and-abstract-base-classes1LinqToSql and abstract base classesNic Strong2008-10-01T03:23:07Z2008-10-01T05:51:59Z
<p>I have some linq entities that inherit something like this:</p>
<pre><code>public abstract class EntityBase { public int Identifier { get; } }
public interface IDeviceEntity { int DeviceId { get; set; } }
public abstract class DeviceEntityBase : EntityBase, IDeviceEntity
{
public abstract int DeviceId { get; set; }
}
public partial class ActualLinqGeneratedEntity : DeviceEntityBase
{
}
</code></pre>
<p>In a generic method I am querying DeviceEnityBase derived entities with:</p>
<pre><code>return unitOfWork.GetRepository<TEntity>().FindOne(x => x.DeviceId == evt.DeviceId);
</code></pre>
<p>where TEntity has a contraint that is it a DeviceEntityBase. This query is always failing with an InvalidOperationException with the message "Class member DeviceEntityBase.DeviceId is unmapped". Even if I add some mapping info in the abstract base class with</p>
<pre><code>[Column(Storage = "_DeviceId", DbType = "Int", Name = "DeviceId", IsDbGenerated = false, UpdateCheck = UpdateCheck.Never)]
</code></pre>
http://stackoverflow.com/questions/51948/do-you-know-of-a-good-program-for-editing-translating-resource-rc-files/53454#534540Answer by Nic Strong for Do you know of a good program for editing/translating resource (.rc) files?Nic Strong2008-09-10T05:12:27Z2008-09-10T05:12:27Z<p>In the end we have ended up building our own external tools to manage this. Our devs work in the english string table and every automated build sends our strings that have been added/changed and deleted to translation manager. He can also run a report at anytime from an old build to determine what is required for translation.</p>
http://stackoverflow.com/questions/49211/how-can-i-use-a-key-blob-generated-from-win32-cryptoapi-in-my-net-application/49232#492321Answer by Nic Strong for How can I use a key blob generated from Win32 CryptoAPI in my .NET application?Nic Strong2008-09-08T06:24:31Z2008-09-08T10:17:18Z<p>Ok, forget the last answer I can't read :) You are working with 3Des keys not RSA keys.</p>
<p>I worked on a bunch of code to share keys between .NET, CryptoAPI and openssl. Found a lot of good example code here for doing the key conversions: </p>
<p><a href="http://www.jensign.com/JavaScience/cryptoutils/index.html" rel="nofollow">http://www.jensign.com/JavaScience/cryptoutils/index.html</a></p>
<p>There is some 3des stuff in some of those examples, but it was related to openssl -> .NET iirc.</p>
<p>I also just looked back over the RSA key code and one thing I notice I am doing is using Array.Reverse() on all the key parts of the RSA key (D,DP,DQ,InverseQ,Modulus,P,Q) i guess to convert endian. I remember that being non-obvious when first tackling the problem.</p>
<p>Hope some of that helps. Good luck.</p>
http://stackoverflow.com/questions/49138/storing-md5-hash-in-sql-server1Storing MD5 Hash in SQL ServerNic Strong2008-09-08T03:54:15Z2008-09-08T04:56:17Z
<p>In Sql Server would a varbinary(16) be the most efficient way of storing an MD5 hash? Won't be doing anything with it except returning it in a linq query.</p>
http://stackoverflow.com/questions/41009/irapistream-com-interface-in-net/45101#451011Answer by Nic Strong for IRAPIStream COM Interface in .NETNic Strong2008-09-05T02:05:50Z2008-09-05T02:05:50Z<p>I have found that generally the most performant and stable way to push/pull large amounts of data of a device over activesync is to use a socket.
Early on we used CeRapiInvoke and a stream to pull data down of the device but ditched this early on in favour of using tcp/ip over a socket.</p>
http://stackoverflow.com/questions/21489/grouping-runs-of-data5Grouping runs of dataNic Strong2008-08-22T00:13:06Z2008-08-22T04:49:18Z
<p>SQL Experts,</p>
<p>Is there an efficient way to group runs of data together using SQL? Or is it going to be more efficient to process the data in code. For example if I have the following data:</p>
<pre><code>ID|Name
01|Harry Johns
02|Adam Taylor
03|John Smith
04|John Smith
05|Bill Manning
06|John Smith
</code></pre>
<p>I need to display this:</p>
<pre><code>Harry Johns
Adam Taylor
John Smith (2)
Bill Manning
John Smith
</code></pre>
<p>@Matt: Sorry I had trouble formatting the data using an embedded html table it worked in the preview but not in the final display.</p>
http://stackoverflow.com/questions/4306/what-is-the-best-way-to-create-a-sparse-array-in-c/21450#214502Answer by Nic Strong for What is the best way to create a sparse array in C++ Nic Strong2008-08-21T23:45:29Z2008-08-21T23:45:29Z<p>Boost has a templated implementation of BLAS called uBLAS that contains a sparse matrix.</p>
<p><a href="http://www.boost.org/doc/libs/1_36_0/libs/numeric/ublas/doc/index.htm" rel="nofollow"><a href="http://www.boost.org/doc/libs/1_36_0/libs/numeric/ublas/doc/index.htm" rel="nofollow">http://www.boost.org/doc/libs/1_36_0/libs/numeric/ublas/doc/index.htm</a></a></p>
http://stackoverflow.com/questions/11491/string-to-lower-upper-in-c/21395#213958Answer by Nic Strong for String To Lower/Upper in C++Nic Strong2008-08-21T23:05:23Z2008-08-21T23:05:23Z<pre><code>> std::string data = “Abc”;
> std::transform(data.begin(), data.end(), data.begin(), ::toupper);
</code></pre>
<p>This will work, but this will use the standard "C" locale. You can use facets if you need to get a tolower for another locale. The above code using facets would be:</p>
<pre><code>locale loc("");
const ctype<char>& ct = use_factet<ctype<char> >(loc);
transform(str.begin(), str.end(), std::bind1st(std::mem_fun(&ctype<char>::tolower), &ct));
</code></pre>
http://stackoverflow.com/questions/19519/do-you-use-virtualized-desktops-for-legacy-seldom-used-applications/19856#198560Answer by Nic Strong for Do you use virtualized desktops for legacy/seldom used applications?Nic Strong2008-08-21T13:25:55Z2008-08-21T13:25:55Z<p>Since my last machine upgrade I have been running virtualised OS's for a number of tasks. For example I use a different set of Visual Studio plugins for managed and c++ unmanaged development. Some things I found:</p>
<ol>
<li>Run your vmware setup on a machine with plenty of resources. I'll repeat...plenty of resources! A fast quad and 8GB of memory is what my current machine is running and it runs sweet (warning you need a 64bit OS for the 8GB!).</li>
<li>I wouldn't worry about app performance if your current physical hardware is old (2+ years). With a decent machine I find the virtualized apps run faster than on the legacy hardware!</li>
<li>When upgrading to a new workstation, p2v your old workstation. No need to worry about synergy or a KVM in the transition period any more!</li>
</ol>
http://stackoverflow.com/questions/1672863/how-do-i-get-the-child-process-id-in-parallelforkmanagerComment by Nic Strong on How do I get the child process id in Parallel::ForkManager? Nic Strong2009-11-04T11:10:10Z2009-11-04T11:10:10ZScrub that last comment, the $pm->finish should exit the child process.
But since you dropped the 'and next' from the start call the parent process is also running the download as well. I am guessing 21892 is the pid of the parent process which will run through the loop multiple times.http://stackoverflow.com/questions/1672863/how-do-i-get-the-child-process-id-in-parallelforkmanagerComment by Nic Strong on How do I get the child process id in Parallel::ForkManager? Nic Strong2009-11-04T11:03:17Z2009-11-04T11:03:17ZJust a guess but perhaps Parallel:ForkManager is reusing the process since the download is complete?http://stackoverflow.com/questions/1648424/segmentation-fault-when-catching-exceptions-in-a-libpthread-linked-app-linux-cComment by Nic Strong on Segmentation fault when catching exceptions in a libpthread linked app ( linux, C++ )Nic Strong2009-10-30T08:09:58Z2009-10-30T08:09:58ZBeen a while since I worked with pthreads what is the declaration of pthread_err?http://stackoverflow.com/questions/1391426/are-member-functions-guaranteed-to-be-ready-before-the-creation-of-any-object/1391430#1391430Comment by Nic Strong on Are member functions guaranteed to be ready before the creation of any object?Nic Strong2009-09-08T01:18:33Z2009-09-08T01:18:33Z+1, but I would also add that if print() was virtual you would get even more severely undefined behaviour!http://stackoverflow.com/questions/1333876/rest-services-with-net-2-0-framework-rest-consumption-in-javascript/1333955#1333955Comment by Nic Strong on REST services with .Net 2.0 framework & REST consumption in javascript..Nic Strong2009-08-26T11:27:59Z2009-08-26T11:27:59ZSorry, should have read it more carefully. I guess that only leaves OpenRasta from the list of toolkits I listed.http://stackoverflow.com/questions/1225266/dump-the-container-configuration-in-structuremapComment by Nic Strong on Dump the container configuration in StructureMapNic Strong2009-08-04T01:15:44Z2009-08-04T01:15:44ZExactly what I needed. Don't know how I missed that one.http://stackoverflow.com/questions/842465/streamreader-read-ahead-one-line-but-dont-consume/842554#842554Comment by Nic Strong on streamreader read ahead one line but don't consume?Nic Strong2009-05-09T05:54:50Z2009-05-09T05:54:50ZThanks added the initializer. Never even compiled the code. Maybe something like LookAheadReadLine() might be more appropriate.http://stackoverflow.com/questions/69296/xml-serialization-and-empty-collectionsComment by Nic Strong on XML Serialization and empty collections.Nic Strong2009-05-02T01:59:27Z2009-05-02T01:59:27ZI blogged in more detail on this at <a href="http://www.codepoets.co.nz/2009/03/03/handling-null-strings-using-xmlserializerdeserialize/" rel="nofollow">codepoets.co.nz/2009/03/…</a>
Will try @theahuramazda suggestion and update.