User Luca Martinetti - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:43:46Z http://stackoverflow.com/feeds/user/43617 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/505891/f-how-to-abstract-console-readline-as-string-seq 2 F# how to abstract Console.ReadLine() as string seq Luca Martinetti 2009-02-03T03:04:28Z 2009-11-24T01:59:38Z <p>Hi,</p> <p>I want to write a function to abstract Console.ReadLine() into a string seq</p> <p>the seq should break when line = null</p> <pre><code>ConsoleLines(): unit -&gt; string seq </code></pre> <p>To be used like this:</p> <pre><code>for line in ConsoleLines() do DoSomething line </code></pre> <p>How do you write this function?</p> <p>Thanks</p> http://stackoverflow.com/questions/1700827/how-to-run-this-query-in-mongodb 0 How to run this query in mongodb? Luca Martinetti 2009-11-09T12:55:09Z 2009-11-10T14:22:54Z <p>My doc has an array field <strong>Keys</strong></p> <p><strong>Keys1</strong> and <strong>Keys2</strong> are two arrays</p> <p>I want all the docs where <strong>Keys</strong> contains any value in <strong>Keys1</strong> <strong><em>AND</em></strong> any value in <strong>Keys2</strong></p> <p>Any advice?</p> <p>Thanks</p> http://stackoverflow.com/questions/833180/handy-f-snippets/845343#845343 0 Answer by Luca Martinetti for Handy F# snippets Luca Martinetti 2009-05-10T13:35:57Z 2009-09-25T08:02:42Z <p><strong>A handy cache function</strong> that keeps up to <code>max</code> <code>(key,reader(key))</code> in a dictionary and use a <code>SortedList</code> to track the MRU keys</p> <pre><code>let Cache (reader: 'key -&gt; 'value) max = let cache = new Dictionary&lt;'key,LinkedListNode&lt;'key * 'value&gt;&gt;() let keys = new LinkedList&lt;'key * 'value&gt;() fun (key : 'key) -&gt; ( let found, value = cache.TryGetValue key match found with |true -&gt; keys.Remove value keys.AddFirst value |&gt; ignore (snd value.Value) |false -&gt; let newValue = key,reader key let node = keys.AddFirst newValue cache.[key] &lt;- node if (keys.Count &gt; max) then let lastNode = keys.Last cache.Remove (fst lastNode.Value) |&gt; ignore keys.RemoveLast() |&gt; ignore (snd newValue)) </code></pre> http://stackoverflow.com/questions/467911/hadoop-on-windows-server 3 Hadoop on windows server Luca Martinetti 2009-01-22T02:58:02Z 2009-09-16T01:57:26Z <p>Hello,</p> <p>I'm thinking about using hadoop to process large text files on my existing windows 2003 servers (about 10 quad core machines with 16gb of RAM)</p> <p>The questions are:</p> <ol> <li><p>Is there any good tutorial on how to configure an hadoop cluster on windows?</p></li> <li><p>What are the requirements? java + cygwin + sshd ? Anything else?</p></li> <li><p>HDFS, does it play nice on windows?</p></li> <li><p>I'd like to use hadoop in streaming mode. Any advice, tool or trick to develop my own mapper / reducers in c#?</p></li> <li><p>What do you use for submitting and monitoring the jobs?</p></li> </ol> <p>Thanks</p> http://stackoverflow.com/questions/631365/populate-dropdownlist-from-xmldatasource 0 Populate DropDownList from XmlDataSource Luca Martinetti 2009-03-10T17:16:40Z 2009-08-07T02:58:30Z <p>Hello,</p> <p>I'd like to populate my DropDownList using a simple xml file:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;Databases&gt; &lt;Database&gt;foo&lt;/Database&gt; &lt;Database&gt;bar&lt;/Database&gt; &lt;Database&gt;baz&lt;/Database&gt; &lt;/Databases&gt; </code></pre> <p>My XPath is </p> <pre><code>/Databases/Database </code></pre> <p>My drop down list is rendered as:</p> <pre><code>&lt;select name="databaseDropDownList" id="databaseDropDownList"&gt; &lt;option selected="selected" value="System.Web.UI.WebControls.XmlDataSourceNodeDescriptor"&gt;System.Web.UI.WebControls.XmlDataSourceNodeDescriptor&lt;/option&gt; &lt;option value="System.Web.UI.WebControls.XmlDataSourceNodeDescriptor"&gt;System.Web.UI.WebControls.XmlDataSourceNodeDescriptor&lt;/option&gt; &lt;option value="System.Web.UI.WebControls.XmlDataSourceNodeDescriptor"&gt;System.Web.UI.WebControls.XmlDataSourceNodeDescriptor&lt;/option&gt; &lt;/select&gt; </code></pre> <p>How should I extract the text?</p> <p>Thanks</p> http://stackoverflow.com/questions/1165282/what-exactly-gcheapplanphase-does 1 What exactly gc_heap::plan_phase does? Luca Martinetti 2009-07-22T13:33:55Z 2009-07-22T20:21:44Z <p>Hello,</p> <p>I'm trying to debug a .net windows service that is spending lot of his time in GC. </p> <p>Using windbg during collections I discovered that most of the time is spent in:</p> <pre><code>00000000`0279e8e0 00000642`7f5368a3 mscorwks!WKS::gc_heap::plan_phase+0x50c 00000000`0279ea90 00000642`7f94ef4e mscorwks!WKS::gc_heap::gc1+0x73 00000000`0279eae0 00000642`7f51c259 mscorwks!WKS::gc_heap::garbage_collect+0x29e 00000000`0279eb40 00000642`7f4eb56e mscorwks!WKS::GCHeap::GarbageCollectGeneration+0x199 00000000`0279ebd0 00000642`7f4ea49d mscorwks!WKS::gc_heap::try_allocate_more_space+0x38e 00000000`0279eca0 00000642`7f4e9cef mscorwks!WKS::GCHeap::Alloc+0x6d 00000000`0279ecd0 00000642`7f9b35da mscorwks!FastAllocateObject+0xaf </code></pre> <p>The pattern of Gen0,Gen1,Gen2 collections is reasonable (100,10,1)</p> <p>Please note that the application runs on x64 and has a really large heap:</p> <pre><code>Gen0 10M Gen1 26K Gen2 4,371M Large 3,500M </code></pre> <p>Note: I know about the great Tess Ferrandez blog.</p> http://stackoverflow.com/questions/1134542/is-gclatencymode-lowlatency-a-good-choice 1 Is GCLatencyMode.LowLatency a good choice? Luca Martinetti 2009-07-15T22:50:27Z 2009-07-18T00:34:16Z <p>I have a C# windows service acting as a server, the service holds some large (>8Gb) data structures in memory and exposes search methods to clients via remoting.</p> <p>The avg search operation is executed in &lt;200ms and the service handles up to 20 request/sec. </p> <p>I'm noticing some serious performance degradation (>6000ms) on a regular basis for few seconds </p> <p>My best guess is that the server threads are stopped by a gen2 garbage collection from time to time.</p> <p>I'm considering switching from server gc to workstation gc and wrap my search method in this to prevent GC during requests.</p> <pre><code> static protected void DoLowLatencyAction(Action action) { GCLatencyMode oldMode = GCSettings.LatencyMode; try { GCSettings.LatencyMode = GCLatencyMode.LowLatency; // perform time-sensitive actions here action(); } finally { GCSettings.LatencyMode = oldMode; } } </code></pre> <p>Is this a good idea?</p> <p>Under what conditions the GC will be performed anyway inside the low latency block?</p> <p>Note: I'm running on a x64 server with 8 cores</p> <p>Thanks</p> http://stackoverflow.com/questions/1039017/can-i-tell-windows-not-to-swap-out-a-particular-processes-memory 2 Can I tell Windows not to swap out a particular processes’ memory? Luca Martinetti 2009-06-24T15:15:38Z 2009-07-05T21:12:38Z <p>Is there a way to tell Windows that it shouldn't swap out a particular processes' memory to disk?</p> <p>Its a .Net windows service with fairly large memory usage. I got lot of physical RAM but the OS seems to move part of the process memory to the pagefile anyway.</p> http://stackoverflow.com/questions/1064274/get-current-asp-net-trust-level-programmatically 0 Get current ASP.NET Trust Level programmatically Luca Martinetti 2009-06-30T15:18:44Z 2009-06-30T15:22:26Z <p>Is there an API to get the current ASP.NET Trust Level?</p> http://stackoverflow.com/questions/526930/f-naming-convention 1 F# naming convention Luca Martinetti 2009-02-09T01:59:38Z 2009-06-11T23:58:03Z <p>Hi,</p> <ul> <li>Is there an "official" naming / casing convention for F#?</li> </ul> <p>I'm always in doubt of using C# style or not: </p> <pre><code>Class.MyFunctionName or Module.my_function_name </code></pre> <p>In F# you're meant to mix BCL classes and F# library ones: they have different casing and the code looks very ugly.</p> <p>Thanks</p> http://stackoverflow.com/questions/970497/does-thread-sleep-affect-threadstate/970515#970515 2 Answer by Luca Martinetti for Does Thread.Sleep affect ThreadState? Luca Martinetti 2009-06-09T14:51:15Z 2009-06-09T14:51:15Z <p>From <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadstate.aspx" rel="nofollow">MSDN</a></p> <blockquote> <p><strong>WaitSleepJoin</strong> The thread is blocked. This could be the result of calling Thread.Sleep or Thread.Join, of requesting a lock — for example, by calling Monitor.Enter or Monitor.Wait — or of waiting on a thread synchronization object such as ManualResetEvent.</p> </blockquote> <p>Short answer is: Yes!</p> http://stackoverflow.com/questions/807355/erlang-vs-the-real-outside-world-how-to-comunicate 4 Erlang vs The Real/Outside world, how to comunicate? Luca Martinetti 2009-04-30T14:57:49Z 2009-06-07T16:55:24Z <p>Hello,</p> <p>I'm learning erlang and I'm very fascinated by the mnesia db. I want to build some real world application in C# / F# using erlang as backend.</p> <p>I'm searching for a good solution to communicate with erlang nodes from the outside world.</p> <p>What I found so far:</p> <p><strong>(A) <a href="http://jungerl.cvs.sourceforge.net/jungerl/jungerl/lib/otp.net/" rel="nofollow">OTP.net</a></strong>, an opensource .net library implementing the 'native' erlang comunication protocol</p> <p>Problems here:</p> <ul> <li>The library is not very mature</li> <li>I don't like the object model ported from Java (too many almost exact replicas of BCL classes)</li> <li>I don't like the threading model use for connections.</li> <li>Many open TCP ports are required</li> <li>Lack of security</li> </ul> <p><strong>(B) Use ports / sockets</strong> in erlang and implement a custom protocol.</p> <p>Problems here:</p> <ul> <li>I don't have any experience</li> <li>Hard to mantain / expand for future versions</li> </ul> <p>Do you have any advice, experience in this topic?</p> <p>Should I work on the OTP.net library to make it fit my needs or try to implement a new protocol from scratch?</p> <p>What about a JSON or REST solution? Is there any erlang library that would do the trick?</p> <p>Thanks.</p> http://stackoverflow.com/questions/505190/net-deflatestream-4gb-limit 5 .net DeflateStream 4Gb Limit Luca Martinetti 2009-02-02T22:19:47Z 2009-06-02T12:36:12Z <p>From msdn:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx</a></p> <p>This class cannot be used to compress files larger than 4 GB.</p> <p>Do you know any other implementations for .net without the 4 gb limit?</p> <p>Thanks</p> <p>NOTE: I really need to decompress a file in GZ format with content larger than 4gb. Do you know any code that can do that? Thanks</p> http://stackoverflow.com/questions/787755/how-to-add-a-node-to-an-mnesia-cluster 5 How to add a node to an mnesia cluster? Luca Martinetti 2009-04-24T22:09:11Z 2009-05-18T01:51:25Z <p>Hello,</p> <p>I'm an erlang and mnesia newbie..</p> <p>How do I add a new disc_only_copies node to an mnesia database that already has a schema?</p> <p>Thanks</p> http://stackoverflow.com/questions/721537/streaming-xml-serialization-in-net 0 streaming XML serialization in .net Luca Martinetti 2009-04-06T13:51:41Z 2009-05-13T19:15:12Z <p>Hello,</p> <p>I'm trying to serialize a very large <code>IEnumerable&lt;MyObject&gt;</code> using an <code>XmlSerializer</code> without keeping all the objects in memory.</p> <p>The <code>IEnumerable&lt;MyObject&gt;</code> is actually lazy..</p> <ol> <li><p>I'm looking for a streaming solution that will:</p></li> <li><p>Take an object from the <code>IEnumerable&lt;MyObject&gt;</code> Serialize it to the underlying stream using the standard serialization (<em>I don't want to handcraft the XML here!</em>)</p></li> <li>Discard the in memory data and move to the next</li> </ol> <p>I'm trying with this code:</p> <pre><code>using (var writer = new StreamWriter(filePath)) { var xmlSerializer = new XmlSerializer(typeof(MyObject)); foreach (var myObject in myObjectsIEnumerable) { xmlSerializer.Serialize(writer, myObject); } } </code></pre> <p>but I'm getting multiple XML headers and I cannot specify a root tag <code>&lt;MyObjects&gt;</code> so my XML is invalid.</p> <p>Any idea?</p> <p>Thanks</p> http://stackoverflow.com/questions/826317/orderby-thenby-in-f 3 OrderBy ThenBy in F# Luca Martinetti 2009-05-05T18:38:11Z 2009-05-05T19:14:07Z <p>Hello,</p> <p>Is there any function in F# similar to LINQ fluent syntax for sorting by multiple expressions:</p> <pre><code>myList.OrderBy(fun x-&gt;x.Something).ThenBy(fun x-&gt;x.SomethingElse) </code></pre> <p>I'd love something like:</p> <pre><code>myList |&gt; Seq.sort_by(fun x-&gt;x.Something) |&gt; Seq.then_by(fun x-&gt;x.SomethingElse) </code></pre> <p>Thx</p> http://stackoverflow.com/questions/805429/learning-scala-or-haskell/807224#807224 5 Answer by Luca Martinetti for Learning Scala or Haskell Luca Martinetti 2009-04-30T14:33:54Z 2009-04-30T14:33:54Z <p>What about F#? Really pragmatic language with all the cool functional and OO features targeting the CLR</p> http://stackoverflow.com/questions/785834/soap-web-services-in-erlang 4 SOAP web services in erlang Luca Martinetti 2009-04-24T13:24:40Z 2009-04-24T17:34:23Z <p>Hello,</p> <p>Is there any good erlang library for creating / accessing SOAP web services?</p> <p>Maybe also handling plain XML is quite difficult.</p> <p>Is Json a good alternative? Any lib for that?</p> <p>My goal is interop with existing .Net web services.</p> <p>Thanks</p> http://stackoverflow.com/questions/785826/handling-net-utf-8-strings-in-erlang 0 Handling .Net UTF-8 strings in Erlang Luca Martinetti 2009-04-24T13:21:32Z 2009-04-24T17:30:57Z <p>Hello,</p> <p>I'm playing a bit with erlang and the distributed db Mnesia. </p> <p>One of the first problem I'm facing is the incompatibilty beetween the 'int list' strings of erlang and .Net UTF-8 strings. </p> <p>Is there any good conversion library?</p> <p>Thanks</p> http://stackoverflow.com/questions/234734/games-that-teach-programming-fundamentals/641010#641010 3 Answer by Luca Martinetti for Games that teach Programming Fundamentals Luca Martinetti 2009-03-13T00:22:42Z 2009-03-13T00:22:42Z <p><a href="http://www.robozzle.com/" rel="nofollow">robozzle</a> an amazing social / programming puzzle in silverlight</p> http://stackoverflow.com/questions/640902/faster-way-to-do-a-listt-contains/640927#640927 1 Answer by Luca Martinetti for Faster way to do a List<T>.Contains() Luca Martinetti 2009-03-12T23:47:06Z 2009-03-12T23:47:06Z <p>If the elements are unique within each list you should consider using an <a href="http://msdn.microsoft.com/en-us/library/bb359438.aspx" rel="nofollow">HashSet</a></p> <blockquote> <p>The HashSet(T) class provides high performance set operations. A set is a collection that contains no duplicate elements, and whose elements are in no particular order.</p> </blockquote> http://stackoverflow.com/questions/516774/ziplib-error-while-decompressing-gzip 0 #ZipLib error while decompressing GZip Luca Martinetti 2009-02-05T16:52:44Z 2009-03-06T15:55:27Z <p>Hello,</p> <p>I'm getting this error while trying to decompress some GZ files with #ZipLib 0.85.5</p> <p>Those file are not corrupted, I'm able to decompress it correctly using 7-Zip.</p> <p>ICSharpCode.SharpZipLib.SharpZipBaseException Unexpected EOF</p> <p>Any idea? Thanks</p> http://stackoverflow.com/questions/602619/net-system-missingmethodexception-3-5-sp1-versioning-hell 3 .Net System.MissingMethodException - 3.5 SP1 versioning hell Luca Martinetti 2009-03-02T14:55:46Z 2009-03-02T15:17:21Z <p>Hello,</p> <p>After deploying an ASP.net webservice to my production server i got this exception:</p> <blockquote> <p><strong>System.MissingMethodException</strong></p> <p>Method not found: 'Boolean System.Threading.WaitHandle.WaitOne(Int32)'</p> </blockquote> <p>The MSDN <a href="http://msdn.microsoft.com/en-us/library/cc189907.aspx" rel="nofollow">documentation</a> states:</p> <blockquote> <p>Version Information .NET Framework Supported in: <strong>3.5 SP1</strong>, 3.0 SP2, 2.0 SP2</p> </blockquote> <p>so the reason of this error is that my server was not updated to the latest service pack.</p> <p>The question is:</p> <p>Why does the code start? IMO if the target framework version is different the app should not start at all.</p> <p>How can I assure that my code can run on the target machine framework version before JIT?</p> <p>This is crazy. I think microsoft should take versioning issues more seriously.</p> http://stackoverflow.com/questions/575406/what-is-the-c-equivalent-of-the-stl-set/575419#575419 7 Answer by Luca Martinetti for What is the C# equivalent of the stl set? Luca Martinetti 2009-02-22T18:37:53Z 2009-02-23T22:29:11Z <p>You could use an <a href="http://msdn.microsoft.com/en-us/library/bb359438.aspx" rel="nofollow">HashSet</a></p> <blockquote> <p>The <code>HashSet&lt;T&gt;</code> class provides high performance set operations. A set is a collection that contains <strong>no duplicate elements</strong>, and whose elements are in no particular order.</p> </blockquote> <p>The capacity of a <code>HashSet&lt;T&gt;</code> object is the number of elements that the object can hold. A <code>HashSet&lt;T&gt;</code> object's capacity automatically increases as elements are added to the object.</p> http://stackoverflow.com/questions/542312/asp-net-access-to-the-temp-directory-is-denied 0 ASP.NET Access to the temp directory is denied. Luca Martinetti 2009-02-12T17:02:22Z 2009-02-12T17:17:46Z <p>I'm experiencing this problem today on many different servers. </p> <p><strong>System.UnauthorizedAccessException: Access to the temp directory is denied.</strong></p> <p>The servers were not touched recently. The only thing that comes in my mind is a windows update breaking something.. Any idea? </p> <p>This happens when trying to access a webservice from an asp.net page</p> <pre><code>System.UnauthorizedAccessException: Access to the temp directory is denied. Identity 'NT AUTHORITY\NETWORK SERVICE' under which XmlSerializer is running does not have sufficient permission to access the temp directory. CodeDom will use the user account the process is using to do the compilation, so if the user doesnt have access to system temp directory, you will not be able to compile. Use Path.GetTempPath() API to find out the temp directory location. at System.Xml.Serialization.Compiler.Compile(Assembly parent, String ns, XmlSerializerCompilerParameters xmlParameters, Evidence evidence) at System.Xml.Serialization.TempAssembly.GenerateAssembly(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, Evidence evidence, XmlSerializerCompilerParameters parameters, Assembly assembly, Hashtable assemblies) at System.Xml.Serialization.TempAssembly..ctor(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, String location, Evidence evidence) at System.Xml.Serialization.XmlSerializer.FromMappings(XmlMapping[] mappings, Evidence evidence) at System.Web.Services.Protocols.XmlReturn.GetInitializers(LogicalMethodInfo[] methodInfos) at System.Web.Services.Protocols.HttpServerType..ctor(Type type) at System.Web.Services.Protocols.HttpServerProtocol.Initialize() at System.Web.Services.Protocols.ServerProtocol.SetContext(Type type, HttpContext context, HttpRequest request, HttpResponse response) at System.Web.Services.Protocols.ServerProtocolFactory.Create(Type type, HttpContext context, HttpRequest request, HttpResponse response, Boolean&amp; abortProcessing) </code></pre> http://stackoverflow.com/questions/532722/is-endinvoke-optional-sort-of-optional-or-definitely-not-optional/532730#532730 8 Answer by Luca Martinetti for Is EndInvoke() optional, sort-of optional, or definitely not optional? Luca Martinetti 2009-02-10T15:13:28Z 2009-02-10T15:13:28Z <p>EndInvoke is not optional.</p> <p>More info <a href="http://www.interact-sw.co.uk/iangblog/2005/05/16/endinvokerequired" rel="nofollow">here</a></p> http://stackoverflow.com/questions/484511/is-there-any-way-for-executing-a-method-multiple-times-but-managing-connections/523060#523060 1 Answer by Luca Martinetti for Is there any way for executing a method multiple times, but managing connections/threads? (.NET) Luca Martinetti 2009-02-07T03:22:08Z 2009-02-07T03:22:08Z <p>You should take a look at F# asynchronous workflows. </p> <p><strong>You really don't want your code to be parallel but asynchronous</strong></p> <blockquote> <p>asynchronous refers to programs that perform some long running operations that don't necessary block a calling thread, for example accessing the network, calling web services or performing any other I/O operation in general</p> </blockquote> <p>This is a very interesting <a href="http://tomasp.net/blog/csharp-async.aspx" rel="nofollow">article</a> on this concept explained using C# iterators.</p> <p>This is a <a href="http://books.google.com/books?id=NcrMkjVxahMC&amp;pg=PA388&amp;lpg=PA388&amp;dq=asynchronous+workflows+crawler&amp;source=web&amp;ots=pkq-NDgmgE&amp;sig=Iq5cdwqOXv_STKm2jXQkGxiyxdk&amp;hl=en&amp;ei=dvmMSeP5O5XW0gWL2M2nCw&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;ct=result#PPA385,M1" rel="nofollow">great book</a> about F# and asynchronous programming. </p> <p>The learning curve is very bad (a lot of odd stuff: F# syntax, the Async&lt;'a> type , monads, etc.) but is a VERY powerful approach and can be used in real life with great C# interop.</p> <p>The main idea here is continuation: while your're wating for some I/O operations let your threads do something else!</p> http://stackoverflow.com/questions/321545/db4o-development-tools-and-resources/509667#509667 2 Answer by Luca Martinetti for db4o development tools and resources? Luca Martinetti 2009-02-04T00:51:27Z 2009-02-04T00:51:27Z <p>It seems like the object manager is now free:</p> <p><a href="http://developer.db4o.com/blogs/product_news/archive/2009/01/25/object-manager-enterprise-now-free-to-all-developers.aspx" rel="nofollow">Object Manager Enterprise Now Free To All Developers</a></p> <p>I want to give it a try!</p> http://stackoverflow.com/questions/505891/f-how-to-abstract-console-readline-as-string-seq/507544#507544 0 Answer by Luca Martinetti for F# how to abstract Console.ReadLine() as string seq Luca Martinetti 2009-02-03T15:28:27Z 2009-02-03T15:28:27Z <p>That's my final solution:</p> <pre><code>type System.Console with static member Lines = Seq.SequenceExpressionHelpers.generate (fun () -&gt; Console.ReadLine) (fun x -&gt; match x() with |null -&gt; None |x -&gt; Some x) ignore </code></pre> http://stackoverflow.com/questions/354686/programming-related-songs/455394#455394 0 Answer by Luca Martinetti for Programming Related Songs Luca Martinetti 2009-01-18T16:21:27Z 2009-01-18T16:21:27Z <p>try last.fm with your own best artist as seed and forget about it and focus on coding!</p> http://stackoverflow.com/questions/1165282/what-exactly-gcheapplanphase-does/1168010#1168010 Comment by Luca Martinetti on What exactly gc_heap::plan_phase does? Luca Martinetti 2009-07-22T20:33:51Z 2009-07-22T20:33:51Z Thanks for the good answer. About 5 sec. Should I consider the idea that my heap is fragmented? How do the GC decide to do a full gen2 collection instead of just gen0. All the data are loaded at process startup and don't change at all during the execution http://stackoverflow.com/questions/1134542/is-gclatencymode-lowlatency-a-good-choice/1134768#1134768 Comment by Luca Martinetti on Is GCLatencyMode.LowLatency a good choice? Luca Martinetti 2009-07-16T00:53:24Z 2009-07-16T00:53:24Z +1 for the link http://stackoverflow.com/questions/1134542/is-gclatencymode-lowlatency-a-good-choice Comment by Luca Martinetti on Is GCLatencyMode.LowLatency a good choice? Luca Martinetti 2009-07-15T22:59:04Z 2009-07-15T22:59:04Z Yep. I used performace counters and logging and it is GC time. http://stackoverflow.com/questions/833180/handy-f-snippets/851449#851449 Comment by Luca Martinetti on Handy F# snippets Luca Martinetti 2009-05-12T11:03:16Z 2009-05-12T11:03:16Z +1 for 'the man himself' http://stackoverflow.com/questions/833180/handy-f-snippets/845343#845343 Comment by Luca Martinetti on Handy F# snippets Luca Martinetti 2009-05-11T10:59:20Z 2009-05-11T10:59:20Z Sorry, I meant MRU (Most Recently Used). Imagine reader as a slow lookup function that access a remote database or a web service or even a very heavy computation. http://stackoverflow.com/questions/817641/i-have-a-single-file-and-need-to-serialize-multiple-objects-randomly-how-can-iin Comment by Luca Martinetti on I have a Single File And need to serialize multiple objects randomly.how can Iin c# ?? Luca Martinetti 2009-05-03T18:12:10Z 2009-05-03T18:12:10Z What do you mean with randomly? http://stackoverflow.com/questions/807385/what-do-i-need-to-do-for-this-line-of-code-c/807423#807423 Comment by Luca Martinetti on What do I need to do for this line of code? (C#) Luca Martinetti 2009-04-30T15:17:04Z 2009-04-30T15:17:04Z Don't like this. A new object on every check? http://stackoverflow.com/questions/807355/erlang-vs-the-real-outside-world-how-to-comunicate/807394#807394 Comment by Luca Martinetti on Erlang vs The Real/Outside world, how to comunicate? Luca Martinetti 2009-04-30T15:14:57Z 2009-04-30T15:14:57Z Thanks for the Pycon info! http://stackoverflow.com/questions/785826/handling-net-utf-8-strings-in-erlang/785835#785835 Comment by Luca Martinetti on Handling .Net UTF-8 strings in Erlang Luca Martinetti 2009-04-24T13:31:35Z 2009-04-24T13:31:35Z Do you have any example? http://stackoverflow.com/questions/467911/hadoop-on-windows-server/779842#779842 Comment by Luca Martinetti on Hadoop on windows server Luca Martinetti 2009-04-24T13:17:32Z 2009-04-24T13:17:32Z Thanks for your answer. Unfortunatelly I cannot reimage the servers, maybe I'll just use some linux EC2 instances.Porting to Mono is a bit tricky could work. Luca http://stackoverflow.com/questions/721537/streaming-xml-serialization-in-net/721591#721591 Comment by Luca Martinetti on streaming XML serialization in .net Luca Martinetti 2009-04-06T14:14:24Z 2009-04-06T14:14:24Z The problem here is that I don't want to keep all the objects or the whole XML doc / string in memory. I really want to serialize one object at a time and append to a FileStream the XML. http://stackoverflow.com/questions/631365/populate-dropdownlist-from-xmldatasource/631566#631566 Comment by Luca Martinetti on Populate DropDownList from XmlDataSource Luca Martinetti 2009-03-12T23:43:03Z 2009-03-12T23:43:03Z thx but I want to &quot;Populate DropDownList from XmlDataSource&quot; http://stackoverflow.com/questions/602619/net-system-missingmethodexception-3-5-sp1-versioning-hell/602643#602643 Comment by Luca Martinetti on .Net System.MissingMethodException - 3.5 SP1 versioning hell Luca Martinetti 2009-03-02T15:15:41Z 2009-03-02T15:15:41Z Thanks for your feedback. What a pity anyway! http://stackoverflow.com/questions/544430/how-to-psyche-yourself-to-just-program-the-damn-thing/544464#544464 Comment by Luca Martinetti on How to psyche yourself to just program the damn thing Luca Martinetti 2009-02-15T16:51:41Z 2009-02-15T16:51:41Z +1 for noise canceling headphones. I'm addicted ;) http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/316233#316233 Comment by Luca Martinetti on What is the best comment in source code you have ever encountered? Luca Martinetti 2009-02-10T21:11:01Z 2009-02-10T21:11:01Z lmao lmao lmao