User Peter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:09:10Z http://stackoverflow.com/feeds/user/86751 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/824730/when-should-i-use-perl-cgi-instead-of-php-or-vice-versa 2 When should I use Perl CGI instead of PHP (or vice versa)? Peter 2009-05-05T12:56:15Z 2009-12-15T07:33:51Z <p>For hobby purposes, I have a shared space on a hosting server that is providing, as many of them are, both PHP and Perl CGI. I have read on several places that CGI scripts are obsolete now, I think mainly for performance issues (like <a href="http://stackoverflow.com/questions/313083/is-php-or-vanilla-perl-cgi-faster">http://stackoverflow.com/questions/313083/is-php-or-vanilla-perl-cgi-faster</a>).</p> <p>But since I just started studying Perl, I wouldn't want to waste time on implementing solutions in PHP that are way easier (or only possible) in Perl.</p> <p>Also there are the boilerplate issues, I'm aware of CPAN (that is the existence, not yet the content), but not familiar with PHP libraries (although I have no doubt they exist). I'm not prepared to write a login-procedure or basic user administration from scratch for the 10^10th time.</p> <p>I don't the luxury at this point to waste a lot of time in research for hobby projects either, so I thought, let's ask the experts for a headstart.</p> http://stackoverflow.com/questions/1887954/free-webstorage-that-is-accessible-via-code 0 Free webstorage that is accessible via code. Peter 2009-12-11T13:07:01Z 2009-12-11T13:30:26Z <p>I have a desktop app for personal use and I would like it to be able to synchronize it's data with the net. </p> <p>Since it's not trancational, I figured a solition migth be to (de)serialize the lot to a plain text format and store that in some file on the web. </p> <p>Now I am looking for free storage in a way that I can access it via code, be it HTTP or FTP, that's all equal to me. Of course I would like it to 'steady', so not some obscure free service that can be stopped at any time without prior notice or services with bad connctions/ lots of downtime. </p> <p>Also it would be nice if the data wasn't readily available for anyone who happens to google the right term, but that's optional since I can encrypt it. </p> <p>I was thinking about google docs, but really anything will do as long as it is</p> <ul> <li>free</li> <li>steady (stable/trustworthy)</li> <li>accessible via code </li> <li>password protected (optional)</li> </ul> <p>It would be very nice when codesnippets would come with the suggested solution! I'm using C#</p> http://stackoverflow.com/questions/729379/why-not-use-exceptions-as-regular-flow-of-control 23 Why not use exceptions as regular flow of control? Peter 2009-04-08T10:25:01Z 2009-12-11T01:26:23Z <p>My question boils down to : “Why not use exception (or error- for that matter) handling for regular program flow? To avoid all standard-answers I could have googled on, I will provide an example you all can attack at will.</p> <p>C# and Java (and too many others) have with plenty of types some of ‘overflow’ behaviour I don’t like at all. (<code>type.MaxValue + type.SmallestValue == type.MinValue</code> for example : <code>int.MaxValue + 1 == int.MinValue</code>). But, seen my vicious nature, I’ll add some insult to this injury and even expand this behaviour to, let’s say an Overridden DateTime type. (I know DateTime is sealed in .NET, but for the sake of this example, I’m using a pseudo language that is exactly like C#, except for the fact that DateTime isn’t sealed :-))</p> <p>The overridden Add method : </p> <pre><code> /// &lt;summary&gt; /// Increments this date with a timespan, but loops when /// the maximum value for datetime is exceeded. /// &lt;/summary&gt; /// &lt;param name="ts"&gt;The timespan to (try to) add&lt;/param&gt; /// &lt;returns&gt;The Date, incremented with the given timespan. /// If DateTime.MaxValue is exceeded, the sum wil 'overflow' and /// continue from DateTime.MinValue. /// &lt;/returns&gt; public DateTime override Add(TimeSpan ts) { try { return base.Add(ts); } catch (ArgumentOutOfRangeException nb) { // calculate how much the MaxValue is exceeded // regular program flow TimeSpan saldo = ts - (base.MaxValue - this); return DateTime.MinValue.Add(saldo) } catch(Exception anyOther) { // 'real' exception handling. } } </code></pre> <p>Of course an if could solve this just as easy, but the fact remains that I just fail to see why you couldn’t use exceptions (logically that is, I can see that when performance is an issue that in certain cases exceptions should be avoided). I think in many cases they are more clear than if-structures and don’t break any contract the method is making.</p> <p>IMHO The “Never use them for regular program flow”-reaction everybody seems to have is not that well underbuild as the strength of that reaction can justify.</p> <p>Or am I mistaken?</p> <p>I've read other posts, dealing with all kind of special cases, but my point is : if you are 1. Clear and 2. Hounour the contract of your method, </p> <p>there's nothing wrong with it. Shoot me.</p> http://stackoverflow.com/questions/1881728/how-do-i-select-the-first-row-per-group-in-an-sql-query/1881759#1881759 1 Answer by Peter for How do I select the first row per group in an SQL Query? Peter 2009-12-10T15:29:14Z 2009-12-10T15:29:14Z <p>Just group on Players.Nick alone, and select the first (min) of the description</p> <pre><code>SELECT Players.Nick, MIN(Reasons.Description), SUM(Marks.Value) AS Sum FROM Marks INNER JOIN Players ON Marks.PlayerID = Players.ID INNER JOIN Reasons ON Marks.ReasonId = Reasons.ID GROUP BY Players.Nick ORDER BY Players.Nick, Sum DESC </code></pre> <p>that is if you always want the first without knowing it</p> http://stackoverflow.com/questions/1881382/issue-in-sql-query/1881421#1881421 0 Answer by Peter for issue in sql Query Peter 2009-12-10T14:41:46Z 2009-12-10T14:41:46Z <p><em>Why exactly</em> are you using a database in the first place?</p> <p>I mean : you are clearly not using it's potential. If you like using comma separated stuff, try a file. </p> http://stackoverflow.com/questions/1881192/sql-server-2000-command-line-utility/1881208#1881208 1 Answer by Peter for SQL Server 2000 command line utility Peter 2009-12-10T14:08:28Z 2009-12-10T14:08:28Z <p><a href="http://msdn.microsoft.com/en-us/library/aa213090%28SQL.80%29.aspx" rel="nofollow">osql</a> and <a href="http://www.idevelopment.info/data/MSSQL/DBA%5Ftips/Database%5FAdministration/DBA%5F1.shtml" rel="nofollow">isql</a> will do the trick</p> http://stackoverflow.com/questions/1880471/capture-stored-procedure-print-output-in-net 5 Capture Stored Procedure print output in .NET Peter 2009-12-10T11:51:40Z 2009-12-10T11:58:55Z <p>Is it possible to capture print output from a TSQL stored procedure in .NET?</p> <p>I have a lot of legacy Procs that use the print as means of errorMessaging. An example, is it possible to access the outprint 'word' from following PROC?</p> <pre><code>-- The PROC CREATE PROC usp_PrintWord AS PRINT 'word' // Some C# Code to would like to pull out 'word' SqlCommand cmd = new SqlCommand("usp_printWord", TheConnection); cmd.CommandType = CommandType.StoredProcedure; // string ProcPrint = ??? </code></pre> http://stackoverflow.com/questions/1874475/design-by-contract-and-class-invariant/1874723#1874723 1 Answer by Peter for Design by contract and class invariant Peter 2009-12-09T15:37:43Z 2009-12-09T15:48:22Z <p>In the inherited class, the invariants should be <strong>at least equally strict</strong>, but they <strong>can be stricter</strong>. If an invariant is omitted in a derived class, the invariants of the base class apply of course. </p> <p>eg : </p> <pre><code>// Class invariant : sum should be &gt; -1000 Account { public int sum; } // Class invariant : sum should be &gt;= 0 AccountForKids : inheritsFrom Account { public int sum; } </code></pre> <p>The account for kids shouldn't go beneath zero, but that of course is bigger than -1000. </p> <p>In General : The contract of a derived class is always hounoured when the class invariants become stricter.</p> http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873448#1873448 3 Answer by Peter for Is there a nice way to split an int into two shorts (.NET)? Peter 2009-12-09T11:57:38Z 2009-12-09T15:25:59Z <p>Why not? Lets reduce the number of bits for the sake of simplicity : let's say we have 8 bits of which the left bit is a minus bit.</p> <pre><code>[1001 0110] // representing -22 </code></pre> <p>You can store it in 2 times 4 bits </p> <pre><code>[1001] [0110] // representing -1 and 6 </code></pre> <p>I don't see why it wouldn't be possible, you twice have 8 bits info</p> <p>EDIT : For the sake of simplicity, I didn't just reduce the bits, but also don't use 2-complementmethod. In my examples, the left bit denotes minus, the rest is to be interpreted as a normal positive binary number</p> http://stackoverflow.com/questions/1868115/calculating-shortest-path-between-2-points-on-a-flat-map-of-the-earth/1868157#1868157 1 Answer by Peter for Calculating shortest path between 2 points on a flat map of the Earth Peter 2009-12-08T16:34:32Z 2009-12-08T16:42:28Z <p>Your question is totally dependend on the projection used. (and a projection of course will be used to form a 3D earth to a flat map.)</p> <p>An easy solution is to use the <a href="http://warnercnr.colostate.edu/class%5Finfo/nr502/lg2/projection%5Fdescriptions/mercator.html" rel="nofollow">Mercator projection</a> : </p> <blockquote> <p>Azimuthality: The Mercator projection's greatest strength is its ability to show the loxodrome between any two points as a straight line. ...</p> <p>This changed with the introduction of maps based on Mercator's projection. For the first time, sea captains had maps showing loxodromes as straight lines. All that a captain had to do was draw a line connecting his starting and ending points on a Mercator chart, measure the bearing of this line, and then sail that bearing until he reached his destination.</p> </blockquote> http://stackoverflow.com/questions/1868116/decorator-design-pattern/1868146#1868146 0 Answer by Peter for Decorator Design Pattern Peter 2009-12-08T16:33:07Z 2009-12-08T16:33:07Z <ol> <li>Yes</li> <li>What else would the decoration be?</li> </ol> http://stackoverflow.com/questions/1867191/probability-of-sha1-collisions/1867252#1867252 5 Answer by Peter for Probability of SHA1 collisions Peter 2009-12-08T14:17:47Z 2009-12-08T14:17:47Z <p><img src="http://bitcache.org/files/images/venti-collision-probability.gif" alt="alt text"></p> <blockquote> <p>Are the 160 bit hash values generated by SHA-1 large enough to ensure the fingerprint of every block is unique? Assuming random hash values with a uniform distribution, a collection of n different data blocks and a hash function that generates b bits, the probability p that there will be one or more collisions is bounded by the number of pairs of blocks multiplied by the probability that a given pair will collide.</p> </blockquote> <p>(source : <a href="http://bitcache.org/faq/hash-collision-probabilities" rel="nofollow">http://bitcache.org/faq/hash-collision-probabilities</a>)</p> http://stackoverflow.com/questions/1866794/naming-classes-how-to-avoid-calling-everything-a-whatevermanager/1866969#1866969 1 Answer by Peter for Naming Classes - How to avoid calling everything a "<WhatEver>Manager"? Peter 2009-12-08T13:26:34Z 2009-12-08T13:26:34Z <p>see this topics : </p> <p><a href="http://stackoverflow.com/questions/1274577/class-naming-chaos">http://stackoverflow.com/questions/1274577/class-naming-chaos</a> <a href="http://stackoverflow.com/questions/38019/whats-the-best-approach-to-naming-classes">http://stackoverflow.com/questions/38019/whats-the-best-approach-to-naming-classes</a></p> http://stackoverflow.com/questions/1865999/which-resources-would-you-recommend-for-learning-object-oriented-programming-c/1866042#1866042 1 Answer by Peter for which resources would you recommend for learning object oriented programming (C#)? Peter 2009-12-08T10:20:49Z 2009-12-08T10:20:49Z <p>Maybe design patterns are the second thing to learn in OO, after you sort of master the basic principles. But in each case you should know them to recognize them and to avoid inventing them again. </p> <p>And this one is especially nice, be it in Java. Even though, there exists many C# variants now, I still think it's important to know the classics, and these are in this book, sort of a popular translation of the <a href="http://en.wikipedia.org/wiki/Design%5FPatterns%5F%28book%29" rel="nofollow">GoF-pattern book</a>.</p> <p><img src="http://ecx.images-amazon.com/images/I/51LSqrgoT1L.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU01%5F.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1865762/is-there-a-performance-difference-between-select-from-tablename-and-select-colu/1865770#1865770 1 Answer by Peter for Is there a performance difference between select * from tablename and select column1, column2 from tablename? Peter 2009-12-08T09:26:45Z 2009-12-08T09:26:45Z <p>In each case you always should <strong><em>test your changes</em></strong>. You could use a profiler to do that.</p> <p>For mysql see : <a href="http://dev.mysql.com/tech-resources/articles/using-new-query-profiler.html" rel="nofollow">http://dev.mysql.com/tech-resources/articles/using-new-query-profiler.html</a></p> http://stackoverflow.com/questions/1862666/why-are-people-continuing-to-use-xml-mapping-files-instead-of-annotations/1862756#1862756 1 Answer by Peter for Why are people continuing to use xml mapping files instead of annotations? Peter 2009-12-07T20:42:12Z 2009-12-07T20:42:12Z <p>I have a new one : <a href="http://www.summerofnhibernate.com/" rel="nofollow">http://www.summerofnhibernate.com/</a></p> <p>Very nice screencast series not yet covering annotations. I have written some apps with it to learn the basics, not for my job but out of curiosity, but never migrated to annotations yet. The series where suggested as still relevant on SO. I still will migrate to annotations if I have some more spare time but for the time being I could be one of the persons asking questions about it.</p> http://stackoverflow.com/questions/1861769/better-performance-wmi-vs-snmp/1861819#1861819 4 Answer by Peter for Better Performance: WMI vs SNMP? Peter 2009-12-07T18:08:05Z 2009-12-07T18:08:05Z <p>Check <a href="http://www.scribd.com/doc/12810955/Network-Management-Paper-SNMP-vs-WMI" rel="nofollow">this paper</a> by Berry Hoekstra:</p> <blockquote> <p>DESCRIPTION</p> <p>A paper I wrote about the differences of SNMP and WMI. I discuss both monitoring standards and conclude if WMI is really necessary in a world where SNMP is king.</p> </blockquote> http://stackoverflow.com/questions/1861787/finding-date-difference/1861806#1861806 0 Answer by Peter for Finding Date Difference Peter 2009-12-07T18:05:48Z 2009-12-07T18:05:48Z <p><a href="http://www.java2s.com/Code/Java/Development-Class/DateDiffcomputethedifferencebetweentwodates.htm" rel="nofollow">http://www.java2s.com/Code/Java/Development-Class/DateDiffcomputethedifferencebetweentwodates.htm</a></p> http://stackoverflow.com/questions/1861760/is-there-a-best-tool-for-exposing-mysql-tables-to-an-end-user/1861783#1861783 1 Answer by Peter for Is there a "best" tool for exposing MySQL tables to an end user? Peter 2009-12-07T18:02:51Z 2009-12-07T18:02:51Z <p><a href="http://www.heidisql.com/" rel="nofollow">HeidiSql</a></p> <p><img src="http://www.heidisql.com/images/screenshots/grideditors.png" alt="alt text"></p> http://stackoverflow.com/questions/1861457/python-vs-java-which-would-you-pick-to-do-concurrent-programming-and-why/1861503#1861503 2 Answer by Peter for Python vs. Java -- Which would you pick to do concurrent programming and why? Peter 2009-12-07T17:27:31Z 2009-12-07T17:44:54Z <p>If not Java/Python I would go for a <strong>functional language</strong> since taking side effects into account is one of the complexities of writing concurrent software. (As far as your question goes : this one happens to be statical typed, but compiler infered most of the time)</p> <p>Personally I would pick F#, since I've seen lots of nice examples of writing concurrent software with ease using it.</p> <p>As an introduction : this man is <a href="http://mschnlnine.vo.llnwd.net/d1/pdc08/WMV-HQ/TL11.wmv" rel="nofollow">equally fun as inspiring</a>, even a must have seen if you are not interested in F# what so ever. </p> http://stackoverflow.com/questions/1860999/list-of-fundamental-data-structures-what-am-i-missing/1861015#1861015 9 Answer by Peter for List of fundamental data structures - what am I missing? Peter 2009-12-07T16:16:00Z 2009-12-07T16:16:00Z <p><a href="http://en.wikipedia.org/wiki/Set%5F%28computer%5Fscience%29" rel="nofollow">Sets</a> </p> <p>As a principle I never say try [anySearhEngine] on it, but you can checkout this list : <a href="http://en.wikipedia.org/wiki/List%5Fof%5Fdata%5Fstructures" rel="nofollow">http://en.wikipedia.org/wiki/List%5Fof%5Fdata%5Fstructures</a></p> http://stackoverflow.com/questions/806911/is-this-factory-method-creation-pattern/1859462#1859462 1 Answer by Peter for Is this Factory Method creation pattern? Peter 2009-12-07T11:36:50Z 2009-12-07T12:59:48Z <p><strong>Your lead is right</strong> (sorry for the formatting, but this answer need some of it in order to be seen between the main line that is stating the lead is a moron): neither by the GOF book nor Head First this a factory method.</p> <p>GoF : </p> <blockquote> <p>“Define an interface for creating an object, but let the subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.”</p> </blockquote> <p>In your example, it's <strong>not a subclass that is deciding</strong>.</p> <p>Have you implemented it incorrectly all these years? No, you just haven't implemented the factory pattern, but what is sometimes referred to as the 'Simple Factory Pattern', which probably has done the job just fine.</p> http://stackoverflow.com/questions/1851443/fast-simple-programmers-editor/1851463#1851463 0 Answer by Peter for Fast, Simple Programmer's Editor Peter 2009-12-05T07:28:45Z 2009-12-05T07:28:45Z <p>Nobody mentioned <a href="http://www.gnu.org/software/emacs/" rel="nofollow">Emacs</a> yet?</p> <p>I use it on the PC i'm on now without trouble (and the <em>beast</em> has 256Megs of RAM..)</p> http://stackoverflow.com/questions/1841739/in-jvm-heap-can-there-be-more-than-one-object-with-the-same-hash-code/1841770#1841770 1 Answer by Peter for In JVM heap can there be more than one object with the same hash code? Peter 2009-12-03T18:06:52Z 2009-12-04T22:22:56Z <p>Yes, hashcode is a standard algorithm that tries to avoid duplicates ('collisions') but doesn't guarantee it.</p> <p>Moreover, it's overrideable, so you could write your own implementation yielding the same hashcode for every object; as to why you would want to do that I have no answer however. :-)</p> http://stackoverflow.com/questions/1847188/are-they-any-commercial-ecom-cms-packages-for-ror/1847200#1847200 0 Answer by Peter for are they any commercial ecom & cms packages for RoR? Peter 2009-12-04T14:15:49Z 2009-12-04T14:21:23Z <p>As far as CMS go : see here </p> <p><a href="http://en.wikipedia.org/wiki/List%5Fof%5Fcontent%5Fmanagement%5Fsystems#Ruby%5Fon%5FRails" rel="nofollow">http://en.wikipedia.org/wiki/List%5Fof%5Fcontent%5Fmanagement%5Fsystems#Ruby%5Fon%5FRails</a></p> <p>but if you also meant 'commercial cms', the quoted ones are MIT licensed</p> http://stackoverflow.com/questions/1846989/php-teaching-supplements/1847054#1847054 3 Answer by Peter for PHP teaching supplements? Peter 2009-12-04T13:48:41Z 2009-12-04T13:48:41Z <p>Projects with goals, requirements, I think this qualifies :</p> <p><a href="http://en.wikiversity.org/wiki/PHP%5Fchallenges" rel="nofollow">http://en.wikiversity.org/wiki/PHP%5Fchallenges</a></p> http://stackoverflow.com/questions/1846556/programming-languages-for-writing-gui-application/1846586#1846586 8 Answer by Peter for Programming Languages for writing GUI application Peter 2009-12-04T12:12:52Z 2009-12-04T12:18:04Z <p>You could reverse your question : what toolkits are there, and which languauges do they support? </p> <p>For Example <strong>GTK</strong> : (from <a href="http://en.wikipedia.org/wiki/GTK%2B" rel="nofollow">wikipedia</a>)</p> <pre><code>C GTK+ C++ gtkmm Ruby ruby-gtk2 Python PyGTK Java java-gnome .NET Gtk# PHP PHP-GTK Perl Gtk2-Perl </code></pre> <p>You can find support for many languages if you explore these <a href="http://en.wikipedia.org/wiki/Widget%5Ftoolkit" rel="nofollow">other widget toolkits</a> : </p> <pre><code>Juce — An extensive cross-platform UI toolkit FLTK — A light, cross platform, non-native widget toolkit FOX toolkit — A fast, open source, cross-platform widget toolkit GTK+ — The GIMP toolkit, a widget toolkit used by GNOME applications IUP_(software) -- IUP cross platform static/dynamic library C/LUA, Lua (MIT) licence JX Application Framework Microsoft Foundation Class - The most commonly used widgeting toolkit for Windows. Motif Object Windows Library &amp; OWLNext Qt — A widget toolkit used by KDE Standard Widget Toolkit — SWT for Java Swing — Java widget toolkit Tk — Toolkit part of the Tcl - project and often used by Perl and Python programmers Ultimate++ Visual Component Library wxWidgets — A free widget toolkit XForms </code></pre> http://stackoverflow.com/questions/744368/which-functional-programming-language-should-i-use 9 Which functional programming language should I use? Peter 2009-04-13T16:05:46Z 2009-12-03T16:20:45Z <p>NOTE : i don't agree btw this is a double question. Please read carefully. I want to know more than just production/studying. Maybe I should lay another accent then and rephrase it? One of my questions is :</p> <ul> <li>for GUI</li> <li>for diff. OS ? Windows?</li> <li>for anything you can come up with: a general positioning of functional languages thus.</li> </ul> <p>I know this is probably a subjective question, still, I'm sure there's a lot that could be said. I'm learning Haskell this moment, and, have to admit, I'm struck by its sheer beauty.</p> <p>Still, Haskell is only one language, and I have no clue how one functional language differs from te next one. I've came across lots of imperative languages (OO or not) in my life, and I think, as much as the next guy, the imperative languages, COBOL and C# are hardly comparable. If there's that much difference in functional languages, is the choosing of one very relevant to me.</p> <p>Of course, which language to use is very dependant of the context, I can imagine that the answer on 'Which functional language to use for production code' (any?) as not the same as 'Which language to use to study the functional language principles', so I very much would like some positioning of the different languages. Like which should I use when I need a GUI? Which one have compilers for windows to? Is Haskell 'the' functional language, and so forth...</p> http://stackoverflow.com/questions/1833264/how-do-i-load-different-images-png-gif-and-jpg-in-the-background-using-wpf/1833391#1833391 0 Answer by Peter for How do I load different images, PNG, GIF and JPG in the background using WPF? Peter 2009-12-02T14:53:17Z 2009-12-02T15:20:06Z <p>You could binary read the start part of the file itself and compare it witht the various file specifications. </p> <p>I got this from just checking some JPG files without reading the specs, and it is only a very rudimentary match pattern, so it's not to be trusted, but just as an example (in real apps you should not read whole the stream of course ): </p> <pre><code>let IsJpg (url:string) = let req = WebRequest.Create(url) let rsp = req.GetResponse() use stream = rsp.GetResponseStream() use reader = new StreamReader(stream) let GetResult = reader.ReadToEnd() GetResult.Contains("JFIF") </code></pre> <p>So the first 2 will yield true, and the third false : </p> <pre><code>IsJpg "http://www.flatpackrevolution.com/wp-content/uploads/2007/10/pow.jpg" IsJpg "http://bedzine.com/blog/wp-content/uploads/2008/04/4-17-stack-drawers-1-1.jpg" IsJpg "http://sstatic.net/so/img/logo.png" </code></pre> http://stackoverflow.com/questions/1833153/is-there-a-substitute-for-pow-in-biginteger-in-f 2 Is there a substitute for Pow in BigInteger in F#? Peter 2009-12-02T14:15:57Z 2009-12-02T14:25:34Z <p>I was using the Pow function of the BigInteger class in F# when my compiler told me : </p> <blockquote> <p>This construct is deprecated. This member has been removed to ensure that this type is binary compatible with the .NET 4.0 type System.Numerics.BigInteger</p> </blockquote> <p>Fair enough I guess, but I didn't found a replacement immediately.</p> <p>Is there one? Should we only use our own Pow functions? And (how) will it be replaced in NET4.0?</p> http://stackoverflow.com/questions/1887954/free-webstorage-that-is-accessible-via-code/1887983#1887983 Comment by Peter on Free webstorage that is accessible via code. Peter 2009-12-11T16:07:32Z 2009-12-11T16:07:32Z Thanks, I just tested it and it works fine. http://stackoverflow.com/questions/1888767/foundations-of-f-example-code-does-not-compile-why Comment by Peter on Foundations of F# example code does not compile, why? Peter 2009-12-11T15:25:24Z 2009-12-11T15:25:24Z I have edited printmessage to print message. That is not the error is it? http://stackoverflow.com/questions/1887954/free-webstorage-that-is-accessible-via-code/1888001#1888001 Comment by Peter on Free webstorage that is accessible via code. Peter 2009-12-11T13:41:41Z 2009-12-11T13:41:41Z If you do, can you publish it? :) ==&gt; lol, I might, alreay voted you up , but I'm afraid I'm going to test the free webdav solution of Pekka first. If I can't make that work, I will try your solution and publish it :-) http://stackoverflow.com/questions/1887954/free-webstorage-that-is-accessible-via-code Comment by Peter on Free webstorage that is accessible via code. Peter 2009-12-11T13:17:57Z 2009-12-11T13:17:57Z It's personal use and text only, I guess I'm ok with their limits. http://stackoverflow.com/questions/1887438/how-to-switch-from-mysql-to-amazon-rds-with-minimal-application-impact Comment by Peter on How to 'switch' from MySQL to Amazon RDS with minimal application impact? Peter 2009-12-11T11:46:02Z 2009-12-11T11:46:02Z Deleted my answer since it appeared to be the wrong doc. http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873448#1873448 Comment by Peter on Is there a nice way to split an int into two shorts (.NET)? Peter 2009-12-11T08:42:48Z 2009-12-11T08:42:48Z @Roman : imho you are mingling things, I know what you mean : but still you can transform the 8 bits to 2 x 4 bits without loss of info. In the first example 00000000 and 10000000 indeed both mean zero, but that has nothing to do with the fact that it can be split up. http://stackoverflow.com/questions/1882280/development-of-visual-studio-ide Comment by Peter on Development of Visual Studio IDE Peter 2009-12-10T16:50:16Z 2009-12-10T16:50:16Z They are using emacs and C. A fact. http://stackoverflow.com/questions/1881382/issue-in-sql-query/1881424#1881424 Comment by Peter on issue in sql Query Peter 2009-12-10T14:46:31Z 2009-12-10T14:46:31Z indeed, hence my 'and what about tabletennis' remark http://stackoverflow.com/questions/1881382/issue-in-sql-query/1881420#1881420 Comment by Peter on issue in sql Query Peter 2009-12-10T14:43:31Z 2009-12-10T14:43:31Z and what about tabletennis? http://stackoverflow.com/questions/1880471/capture-stored-procedure-print-output-in-net/1880507#1880507 Comment by Peter on Capture Stored Procedure print output in .NET Peter 2009-12-10T12:02:53Z 2009-12-10T12:02:53Z Works like a charm! Thanks man http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873448#1873448 Comment by Peter on Is there a nice way to split an int into two shorts (.NET)? Peter 2009-12-09T15:27:55Z 2009-12-09T15:27:55Z @Luke : they won't run into integers represented by 4 bits and 8 bits any time soon, but since you are right I edited my question with the explanation. http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873448#1873448 Comment by Peter on Is there a nice way to split an int into two shorts (.NET)? Peter 2009-12-09T13:32:53Z 2009-12-09T13:32:53Z @Luke : it's clearly not two complement :-) , no it's just pseudocode for illustration http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net/1873443#1873443 Comment by Peter on Is there a nice way to split an int into two shorts (.NET)? Peter 2009-12-09T12:23:40Z 2009-12-09T12:23:40Z @DrJokepu, It's about storing, not about meaning after storing. It's a formal issue, not a semantic one. I my view the requirements are met if you can reconstitute it with the same meaning after splitting http://stackoverflow.com/questions/1868115/calculating-shortest-path-between-2-points-on-a-flat-map-of-the-earth/1868157#1868157 Comment by Peter on Calculating shortest path between 2 points on a flat map of the Earth Peter 2009-12-08T19:08:50Z 2009-12-08T19:08:50Z @High Performance Mark : I was only talking about myself, never said anything about you, sorry if that came over wrongly http://stackoverflow.com/questions/1868115/calculating-shortest-path-between-2-points-on-a-flat-map-of-the-earth/1868157#1868157 Comment by Peter on Calculating shortest path between 2 points on a flat map of the Earth Peter 2009-12-08T16:56:04Z 2009-12-08T16:56:04Z @rhirsh : that is the bleeding obvious, you better read the question : how do you draw it, totally dependent..