User Porges - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:44:34Zhttp://stackoverflow.com/feeds/user/10311http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1733503/c-fixing-operators-for-generics/1733518#17335185Answer by Porges for C#/Fixing Operators for GenericsPorges2009-11-14T06:44:34Z2009-11-14T06:44:34Z<p>Not possible without reflecting upon the type. There is some code that does this available as <a href="http://www.yoda.arachsys.com/csharp/miscutil/usage/genericoperators.html" rel="nofollow">part of MiscUtil</a>.</p>
http://stackoverflow.com/questions/1712237/how-does-primitive-recursion-differ-from-normal-recursion/1712681#17126813Answer by Porges for How does primitive recursion differ from "normal" recursion ?Porges2009-11-11T02:45:15Z2009-11-11T02:57:07Z<p>A simplified answer is that primitive recursive functions are those which are defined in terms of other primitive recursive functions, and recursion on the structure of natural numbers. Natural numbers are conceptually like this:</p>
<pre><code>data Nat
= Zero
| Succ Nat -- Succ is short for 'successor of', i.e. n+1
</code></pre>
<p>This means you can recurse on them like this:</p>
<pre><code>f Zero = ...
f (Succ n) = ...
</code></pre>
<p>We can write your example as:</p>
<pre><code>power2 Zero = Succ Zero -- (Succ 0) == 1
power2 (Succ n) = 2 * power2 n -- this is allowed because (*) is primitive recursive as well
</code></pre>
<p>Composition of primitive recursive functions is also primitive recursive.</p>
<p>Another example is Fibonacci numbers:</p>
<pre><code>fib Zero = Zero
fib (Succ Zero) = (Succ Zero)
fib (Succ n@(Succ n' )) = fib n + fib n' -- addition is primitive recursive
</code></pre>
http://stackoverflow.com/questions/929859/resharper-possible-null-assignment-when-using-microsoft-contracts/1693080#16930801Answer by Porges for ReSharper - Possible Null Assignment when using Microsoft.ContractsPorges2009-11-07T13:47:56Z2009-11-07T14:13:14Z<p>Here's the solution for the current (i.e. .NET 4.0) version of Code Contracts:</p>
<p>Inside <code>...\ExternalAnnotations\mscorlib\Contracts.xml</code>, add the following:</p>
<pre><code><assembly name="mscorlib">
<member name="M:System.Diagnostics.Contracts.Contract.Requires(System.Boolean)">
<attribute ctor="M:JetBrains.Annotations.AssertionMethodAttribute.#ctor"/>
<parameter name="condition">
<attribute ctor="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
<argument>0</argument>
</attribute>
</parameter>
</member>
<member name="M:System.Diagnostics.Contracts.Contract.Requires``1(System.Boolean)">
<attribute ctor="M:JetBrains.Annotations.AssertionMethodAttribute.#ctor"/>
<parameter name="condition">
<attribute ctor="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
<argument>0</argument>
</attribute>
</parameter>
</member>
<member name="M:System.Diagnostics.Contracts.Contract.Requires(System.Boolean,System.String)">
<attribute ctor="M:JetBrains.Annotations.AssertionMethodAttribute.#ctor"/>
<parameter name="condition">
<attribute ctor="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
<argument>0</argument>
</attribute>
</parameter>
</member>
<member name="M:System.Diagnostics.Contracts.Contract.Requires``1(System.Boolean,System.String)">
<attribute ctor="M:JetBrains.Annotations.AssertionMethodAttribute.#ctor"/>
<parameter name="condition">
<attribute ctor="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
<argument>0</argument>
</attribute>
</parameter>
</member>
<member name="M:System.Diagnostics.Contracts.Contract.Invariant(System.Boolean)">
<attribute ctor="M:JetBrains.Annotations.AssertionMethodAttribute.#ctor"/>
<parameter name="condition">
<attribute ctor="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
<argument>0</argument>
</attribute>
</parameter>
</member>
<member name="M:System.Diagnostics.Contracts.Contract.Invariant(System.Boolean,System.String)">
<attribute ctor="M:JetBrains.Annotations.AssertionMethodAttribute.#ctor"/>
<parameter name="condition">
<attribute ctor="M:JetBrains.Annotations.AssertionConditionAttribute.#ctor(JetBrains.Annotations.AssertionConditionType)">
<argument>0</argument>
</attribute>
</parameter>
</member>
</assembly>
</code></pre>
http://stackoverflow.com/questions/1680630/how-to-test-if-xml-file-is-getting-called-or-not/1682361#16823610Answer by Porges for How to test if xml file is getting called or not?Porges2009-11-05T17:51:56Z2009-11-05T17:51:56Z<p>Surely you can just look at the output and see if the content from <code>A.xml</code> is actually there or not?</p>
http://stackoverflow.com/questions/1473766/is-there-any-way-to-make-code-contracts-work-with-linq/1680328#16803280Answer by Porges for Is there any way to make Code Contracts work with LINQ?Porges2009-11-05T12:43:57Z2009-11-05T12:43:57Z<p>Have you tried the latest version of Code Contracts? There was one released in October, and I can't reproduce this with it.</p>
<p>Alternatively, Code Contracts has its own <code>ForAll</code> method defined on the static <code>Contracts</code> class, which might work better with its logic than the LINQ extension <code>All</code> method.</p>
http://stackoverflow.com/questions/928703/run-a-script-at-unlock/1010025#10100251Answer by Porges for Run a script at unlock?Porges2009-06-17T23:28:57Z2009-06-17T23:28:57Z<p>Reading from <a href="http://trac.gajim.org/wiki/KDesktopLock" rel="nofollow">this page</a>, it seems like <code>krunner_lock</code> will stay running as long as the screen is locked, so you should be able to place the commands after the line that runs it and they will run once the screen unlocks.</p>
<p>e.g.</p>
<pre><code>#!/bin/bash
...
# do stuff
...
real_krunner_lock # exits once screen unlocks...
...
# undo stuff
</code></pre>
http://stackoverflow.com/questions/996052/is-there-a-haskell-compiler-or-preprocessor-that-uses-strict-evaluation/999298#9992986Answer by Porges for Is there a Haskell compiler or preprocessor that uses strict evaluation?Porges2009-06-16T02:02:46Z2009-06-16T02:02:46Z<p>If you have a Haskell compiler that uses strict evaluation, it doesn't compile Haskell. Laziness is part of the Haskell spec!</p>
<p>However, there are alternatives.</p>
<ul>
<li><p><a href="http://www.haskell.org/haskellwiki/DDC" rel="nofollow">DDC</a> is an attempt to create an explicitly lazy variant of Haskell which supports things like destructive update whilst retaining all the rest of Haskell's goodness. There is one problem: the compiler is currently only in the α-stage, although it seems to be at least usable.</p></li>
<li><p><a href="http://caml.inria.fr/pub/ml-archives/caml-list/2003/03/676a351b6908f32eeaa9be84070fb825.fr.html" rel="nofollow">Create a preprocessor, as others have done.</a></p></li>
<li><p>Learn to use Haskell “the right way”. If you can simplify your test case down to something which is publicly-displayable, you could post it on the <a href="http://haskell.org/mailman/listinfo/haskell-cafe" rel="nofollow">Haskell-Café mailing list</a>, where people are very helpful with these sorts of questions concerning the effects of non-strictness.</p></li>
</ul>
http://stackoverflow.com/questions/968198/haskell-show-screwed-up/968241#9682416Answer by Porges for Haskell: Show screwed up?Porges2009-06-09T05:09:43Z2009-06-09T05:09:43Z<p>Sounds like you're trying to simulate a ToString method, although some of your terminology is
a little confusing.</p>
<p>You can simulate it like this:</p>
<pre><code>{-# LANGUAGE UndecidableInstances, OverlappingInstances,
FlexibleInstances, TypeSynonymInstances #-}
class ToString a where
toString :: a -> String
instance ToString String where
toString = id
instance Show a => ToString a where
toString = show
</code></pre>
<p>However, as shown by the LANGUAGE pragmas, this is not very desirable. To really get a feel for what you're trying to do it would be easier if we had more context...</p>
http://stackoverflow.com/questions/653911/swapping-left-and-right-mouse-button-in-net/653951#6539511Answer by Porges for Swapping left and right mouse button in .NETPorges2009-03-17T12:09:00Z2009-03-17T12:09:00Z<p>Something like this:</p>
<pre><code>using Microsoft.Win32;
var key = Registry.CurrentUser.CreateSubKey("Control Panel\\Mouse\\");
var newValue = key.GetValue("SwapMouseButtons");
if (newValue == null) newValue = "1";
else newValue = Int32.Parse(newValue) == 1 ? "0" : "1";
key.SetValue("SwapMouseButtons", newValue, RegistryValueKind.String);
</code></pre>
http://stackoverflow.com/questions/652521/haskell-recursion-with-array-arguments/653251#6532513Answer by Porges for Haskell: recursion with array argumentsPorges2009-03-17T07:00:59Z2009-03-17T10:38:47Z<p>I copied your goal notes:</p>
<pre><code>-- assume n is 10 for this question
n=10
-- create a list of all natural numbers from 1 to n (variable is 'allNumbers' is code)
allNumbers = [1..n]
-- create another list of all natural numbers from 1 to n (variable is 'allFactors' is code)
allFactors = [2..n] -- i suspect you really wanted this rather than [1..n]
-- take the first element in 'allFactors' and
-- multiply the rest of the numbers of 'allFactors' by this number.
-- (this generates an array of numbers)
-- continue from 1 to n until 'allFactors' is empty
factorProducts = [ x*y | x <- allFactors, y <- allFactors]
-- remove all these numbers from 'allNumbers'
whatYouWanted = allNumbers \\ factorProducts
</code></pre>
<p>At the moment you seem to still be thinking in a fairly imperative mindset. Try thinking more about what you want, not how to get it :)</p>
http://stackoverflow.com/questions/649274/why-dont-haskell-list-comprehensions-cause-an-error-when-pattern-match-fails/653180#6531809Answer by Porges for Why don't Haskell list comprehensions cause an error when pattern match fails?Porges2009-03-17T06:27:24Z2009-03-17T06:27:24Z<p>While implemenatations of Haskell might not do it directly like this internally, it is helpful to think about it this way :)</p>
<pre><code>[x | Just x <- myList]
</code></pre>
<p>... becomes:</p>
<pre><code>do
Just x <- myList
return x
</code></pre>
<p>... which is:</p>
<pre><code>myList >>= \(Just x) -> return x
</code></pre>
<p>As to your question:</p>
<blockquote>
<p>What I don't understand is, how does Haskell know to call the "fail" function?</p>
</blockquote>
<p>In do-notation, if a pattern binding fails (i.e. the <code>Just x</code>), then the fail method is called. For the above example, it would look something like this:</p>
<pre><code>myList >>= \temp -> case temp of
(Just x) -> return x
_ -> fail "..."
</code></pre>
<p>So, every time you have a pattern-match in a monadic context that may fail, Haskell inserts a call to <code>fail</code>. Try it out with IO:</p>
<pre><code>main = do
(1,x) <- return (0,2)
print x -- x would be 2, but the pattern match fails
</code></pre>
http://stackoverflow.com/questions/651347/where-are-the-clever-uses-of-strict-evaluation/653162#6531623Answer by Porges for Where are the clever uses of strict evaluation?Porges2009-03-17T06:14:23Z2009-03-17T06:14:23Z<p>No; there are some things you can do* with lazy evaluation (AKA normal-order reduction, or left-outermost reduction) that you can't do with strict evaluation, but not the other way around.</p>
<p>The reason for this is that lazy evaluation is in some way the ‘most general’ way to evaluate, which is known as:</p>
<blockquote>
<p><strong>The Computational Adequacy Theorem</strong>:
If <em>some</em> order of evaluation terminates and produces a particular result, then lazy evaluation will also terminate and produce the same result.</p>
</blockquote>
<p>* (please note that we are <em>not</em> talking about Turing-equivalence here)</p>
http://stackoverflow.com/questions/16770/haskells-algebraic-data-types/648959#6489593Answer by Porges for Haskell's algebraic data typesPorges2009-03-16T01:28:07Z2009-03-16T01:28:07Z<p>A simple reason why they are called algebraic; there are both sum (logical disjunction) and product (logical conjunction) types. A sum type is a discriminated union, e.g:</p>
<pre><code>data Bool = False | True
</code></pre>
<p>A product type is a type with multiple parameters:</p>
<pre><code>data Pair a b = Pair a b
</code></pre>
<p>In O'Caml "product" is made more explicit:</p>
<pre><code>type 'a 'b pair = Pair of 'a * 'b
</code></pre>
http://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses/647647#6476477Answer by Porges for What would be a globally accepted regular expression to match e-mail addressesPorges2009-03-15T11:18:38Z2009-03-15T11:25:01Z<p>It is impossible to do so in a pure regex. Regexen cannot match nested parentheses, which the full RFC spec requires. (The latest RFC on this matter is RFC5322, only released a few months ago.)</p>
<p>Full validation of email addresses requires something along the lines of a CFG, and there are a few more things to be wary of; for example, email addresses can contain <code>'\0'</code>, the null character... so you can't use any of C's normal string functions on them.</p>
<p>I actually feel a bit weird answering a question with a link to something I've written, but as it so happens, I have one I prepared earlier: a short and (as far as I can tell) fully-compliant validator, in Haskell; you can <a href="http://hackage.haskell.org/packages/archive/email-validate/0.2/doc/html/src/Text-Email-Validate.html" rel="nofollow">see the source code here</a>. I imagine the code could be easily ported to any similar parsing library (perhaps C++’s Boost.Spirit), or just as easily hooked into from another language (Haskell has <a href="http://www.haskell.org/haskellwiki/Calling%5FHaskell%5Ffrom%5FC" rel="nofollow">a very simple way for C to use Haskell code</a>, and <em>everything</em> can use C bindings...)</p>
<p>There are also extensive test cases in the source code (I didn't export them from the module), which are due to <a href="http://www.dominicsayers.com/isemail/" rel="nofollow">Dominic Sayers</a>, who has his own version of an RFC-compliant parser in PHP. (Several of the tests fail, but they are more strict than RFC5322 specifies, so I'm fine with that at the moment.)</p>
http://stackoverflow.com/questions/612439/sort-uniq-xargs-grep-where-lines-contain-spaces/626612#6266120Answer by Porges for sort | uniq | xargs grep ... where lines contain spacesPorges2009-03-09T15:10:47Z2009-03-09T15:10:47Z<p>This is a good candidate for awk:</p>
<pre><code>BEGIN { FS="," }
{ split($5,A," "); date[A[0]] = date[A[0]] " " NR }
END { for (i in date) print i ":" date[i] }
</code></pre>
<ol>
<li>Set field seperator to ',' (CSV).</li>
<li>Split fifth field on the space, stick result in A.</li>
<li>Concatenate the line number to the list of what we have already stored for that date.</li>
<li>Print out the line numbers for each date.</li>
</ol>
http://stackoverflow.com/questions/576213/efficient-string-implementation-in-haskell/626470#6264709Answer by Porges for Efficient String Implementation in HaskellPorges2009-03-09T14:31:59Z2009-03-09T14:31:59Z<p>Apart from String/ByteString there is now the <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/text" rel="nofollow">Text</a> library which combines the best of both worlds—it works with Unicode while being ByteString-based internally, so you get fast, correct strings.</p>
http://stackoverflow.com/questions/578063/what-is-haskells-stream-fusion/626456#6264564Answer by Porges for What is Haskell's Stream FusionPorges2009-03-09T14:28:23Z2009-03-09T14:28:23Z<p>As far as I am aware, and contrary to what Norman said, stream fusion is <em>not</em> currently implemented in GHC's base (ie. you cannot just use Prelude functions). For more information see <a href="http://hackage.haskell.org/trac/ghc/ticket/915" rel="nofollow">GHC ticket 915</a>.</p>
<p>To use stream fusion you need to install the stream-fusion library, import Data.List.Stream (you can also import Control.Monad.Stream) and only use functions from that module rather than the Prelude functions. This means importing the Prelude hiding all the default list functions, and not using [x..y] constructs or list comprehension.</p>
http://stackoverflow.com/questions/517219/ruby-see-if-a-port-is-open/518445#5184450Answer by Porges for Ruby - See if a port is openPorges2009-02-05T23:20:05Z2009-02-05T23:20:05Z<p>Just for completeness, the Bash would be something like this:</p>
<pre><code>$ netcat $HOST $PORT -w 1 -q 0 </dev/null && do_something
</code></pre>
<p><code>-w 1</code> specifies a timeout of 1 second, and <code>-q 0</code> says that, when connected, close the connection as soon as <code>stdin</code> gives <code>EOF</code> (which <code>/dev/null</code> will do straight away).</p>
<p>Bash also has its own built-in TCP/UDP services, but they are a compile-time option and I don't have a Bash compiled with them :P</p>
http://stackoverflow.com/questions/511683/bash-get-list-of-commands-starting-with-a-given-string/518336#5183361Answer by Porges for bash: get list of commands starting with a given stringPorges2009-02-05T22:48:23Z2009-02-05T22:48:23Z<p>A fun way to do this is to hit <code>M-*</code> (Meta is usually left Alt).</p>
<p>As an example, type this:</p>
<pre><code>$ lo
</code></pre>
<p>Then hit <code>M-*</code>:</p>
<pre><code>$ loadkeys loadunimap local locale localedef locale-gen locate
lockfile-create lockfile-remove lockfile-touch logd logger login
logname logout logprof logrotate logsave look lorder losetup
</code></pre>
<p>You can read more about this in <code>man 3 readline</code>; it's a feature of the <code>readline</code> library.</p>
http://stackoverflow.com/questions/826/efficiently-get-sorted-sums-of-a-sorted-list/97294#972942Answer by Porges for Efficiently get sorted sums of a sorted listPorges2008-09-18T21:41:13Z2008-09-18T23:17:46Z<p>If you write out the sums like this:</p>
<pre><code>1 4 5 6 8 9
---------------
2 5 6 7 9 10
8 9 10 12 13
10 11 13 14
12 14 15
16 17
18
</code></pre>
<p>You'll notice that since M[i,j] <= M[i,j+1] and M[i,j] <= M[i+1,j], then you only need to examine the top left "corners" and choose the lowest one.</p>
<p>e.g.</p>
<ul>
<li>only 1 top left corner, pick 2</li>
<li>only 1, pick 5</li>
<li>6 or 8, pick 6</li>
<li>7 or 8, pick 7</li>
<li>9 or 8, pick 8</li>
<li>9 or 9, pick both :)</li>
<li>10 or 10 or 10, pick all</li>
<li>12 or 11, pick 11</li>
<li>12 or 12, pick both</li>
<li>13 or 13, pick both</li>
<li>14 or 14, pick both</li>
<li>15 or 16, pick 15</li>
<li>only 1, pick 16</li>
<li>only 1, pick 17</li>
<li>only 1, pick 18</li>
</ul>
<p>Of course, when you have <em>lots</em> of top left corners then this solution devolves.</p>
<p>I'm pretty sure this problem is Ω(n²), because you have to calculate the sums for each M[i,j] -- unless someone has a better algorithm for the summation :)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/92470#924700Answer by Porges for What is your solution to the FizzBuzz problem?Porges2008-09-18T13:21:29Z2008-09-18T13:31:55Z<p>Here's one I did a while ago in Haskell (generalized & should run very quick -- no arithmetic is performed after the initial setup):</p>
<pre><code>gizzabuzz pairs combiner = zipWith ($) (cycle funcs) [1..]
where
funcs = map (\n -> display $ mapMaybe (filterOut n) sortedPairs) [1..foldr1 lcm $ map fst $ sortedPairs]
display [] = show
display xs = foldr1 combiner . sequence (map const xs)
sortedPairs = sortBy (compare `on` fst) pairs
filterOut n (x,y)
| n `mod` x == 0 = Just y
| otherwise = Nothing
fizzbuzz = gizzabuzz [(3,"Fizz"),(5,"Buzz")] (++)
</code></pre>
http://stackoverflow.com/questions/78717/foreach-values-macro-in-gcc-cpp/78793#787931Answer by Porges for "foreach values" macro in gcc & cppPorges2008-09-17T01:01:11Z2008-09-17T01:01:11Z<p>Have you thought of using the <a href="http://www.boost.org/" rel="nofollow">Boost libraries</a>? They have a <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/foreach.html" rel="nofollow"><code>foreach</code> macro implemented</a> which is probably more robust than anything you'll write... and there is also <a href="http://www.boost.org/doc/libs/1_36_0/libs/iterator/doc/transform_iterator.html" rel="nofollow"><code>transform_iterator</code></a> which would seem to be able to be used to do the second-extraction part of what you want.</p>
<p>Unfortunately I can't tell you exactly <em>how</em> to use it because I don't know enough C++ :) <a href="http://www.google.com/search?q=boost+foreach+transform_iterator" rel="nofollow">This Google search</a> turns up some promising answers: <a href="http://groups.google.com/group/comp.lang.c++.moderated/msg/26b344960588d3ac" rel="nofollow">comp.lang.c++.moderated</a>, <a href="https://network-geographics.com/weblog/2008/06/boost_transform_iterator_use_cas.html" rel="nofollow">Boost transform_iterator use case</a>.</p>
http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68449#684499Answer by Porges for What is your single most favorite command-line trick using Bash?Porges2008-09-16T01:11:15Z2008-09-16T01:19:10Z<p>Here's a couple of configuration tweaks:</p>
<p><code>~/.inputrc</code>:</p>
<pre><code>"\C-[[A": history-search-backward
"\C-[[B": history-search-forward
</code></pre>
<p>This works the same as <code>^R</code> but using the arrow keys instead. This means I can type (e.g.) <code>cd /media/</code> then hit up-arrow to go to the last thing I <code>cd</code>'d to inside the <code>/media/</code> folder.</p>
<p>(I use Gnome Terminal, you may need to change the escape codes for other terminal emulators.)</p>
<p>Bash completion is also incredibly useful, but it's a far more subtle addition. In <code>~/.bashrc</code>:</p>
<pre><code>if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
</code></pre>
<p>This will enable per-program tab-completion (e.g. attempting tab completion when the command line starts with <code>evince</code> will only show files that evince can open, and it will also tab-complete command line options).</p>
<p>Works nicely with this also in <code>~/.inputrc</code>:</p>
<pre><code>set completion-ignore-case on
set show-all-if-ambiguous on
set show-all-if-unmodified on
</code></pre>
http://stackoverflow.com/questions/67964/what-is-the-best-free-way-to-clean-up-word-html/68050#680502Answer by Porges for What is the best free way to clean up Word HTML?Porges2008-09-15T23:53:06Z2008-09-15T23:53:06Z<p>Rather than cleaning up Word's HTML you could generate HTML directly from the Word document using Abiword. (<a href="http://wvware.sourceforge.net/" rel="nofollow">wv</a> is now deprecated in favour of Abiword; it's basically been absorbed.)</p>
<p>An example:</p>
<pre><code> AbiWord --to=html file.doc --exp-props="html4: yes"
</code></pre>
<p>See more <a href="http://www.abisource.com/help/en-US/howto/howtoexporthtml.html" rel="nofollow">in the documentation</a>.</p>
http://stackoverflow.com/questions/5003/do-people-actually-get-anything-done-using-a-laptop-on-a-plane/67874#678740Answer by Porges for Do people actually get anything done using a laptop on a plane?Porges2008-09-15T23:14:53Z2008-09-15T23:14:53Z<p>If you've got nothing else to take your mind off the tedium, it's a good time to do things you wouldn't otherwise do (for lack of interest); for example, I spent an hour fixing my music tags :)</p>
http://stackoverflow.com/questions/67492/what-is-the-simplest-way-to-initialize-an-array-of-n-numbers-following-a-simple-p/67695#676955Answer by Porges for What is the simplest way to initialize an Array of N numbers following a simple pattern?Porges2008-09-15T22:41:35Z2008-09-15T22:41:35Z<p>Using Linq:</p>
<pre><code>int[] numbers =
Enumerable.Range(9,10000)
.Where(x => x % 3 == 0)
.Take(20)
.ToArray();
</code></pre>
<p>Also easily parallelizeable using PLinq if you need:</p>
<pre><code>int[] numbers =
Enumerable.Range(9,10000)
.AsParallel() //added this line
.Where(x => x % 3 == 0)
.Take(20)
.ToArray();
</code></pre>
http://stackoverflow.com/questions/1810178/haskell-execution-sequence/1810214#1810214Comment by Porges on Haskell execution sequencePorges2009-11-28T11:11:48Z2009-11-28T11:11:48ZThis is not true! Check out the manual for a recent version of GHCi: <a href="http://www.haskell.org/ghc/docs/latest/html/users_guide/ghci-debugger.html" rel="nofollow">haskell.org/ghc/docs/…</a>http://stackoverflow.com/questions/1794920/c-conversion-of-lambda-expression/1794934#1794934Comment by Porges on C# Conversion of lambda expressionPorges2009-11-25T06:54:06Z2009-11-25T06:54:06ZThe <code>(_) => ...</code> parameter would be more self-explanatory as <code>state => ...</code>.http://stackoverflow.com/questions/1759503/haskell-tail-function-for-empty-lists/1759545#1759545Comment by Porges on Haskell tail function for empty listsPorges2009-11-18T23:13:16Z2009-11-18T23:13:16Z@Artelius: that should be <code>xss where (_:xss) = xs</code>.http://stackoverflow.com/questions/1729824/transpose-a-file-in-bash/1729980#1729980Comment by Porges on Transpose a file in bashPorges2009-11-16T20:48:17Z2009-11-16T20:48:17Z<code>mawk</code> should be even fasterhttp://stackoverflow.com/questions/1744461/regex-to-strip-out-blah-tag-from-string/1744495#1744495Comment by Porges on regex to strip out [blah: ... ] tag from stringPorges2009-11-16T20:43:08Z2009-11-16T20:43:08ZYou don't actually need to escape the <code>]</code> in the character class, if you really want to be evil :)http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell/1717719#1717719Comment by Porges on Pointer equality in Haskell?Porges2009-11-13T03:43:14Z2009-11-13T03:43:14Z@Otto: Those phrases are about the computational equality of functions in general, so they apply to all languages. They aren't Haskell-specific.http://stackoverflow.com/questions/1712347/closest-equivalent-to-subprocess-communicate-in-haskell/1712436#1712436Comment by Porges on Closest equivalent to subprocess.communicate in HaskellPorges2009-11-11T02:29:31Z2009-11-11T02:29:31ZYou can edit your post, you know... :)http://stackoverflow.com/questions/1706801/declare-variable-for-just-time/1706809#1706809Comment by Porges on Declare variable for just timePorges2009-11-10T10:03:36Z2009-11-10T10:03:36ZSemantically, TimeSpan doesn't make much sense. Since .NET doesn't have a dedicated Time class, I'd just use an integer representing the number of minutes since midnight (assuming you only need minute-level precision).http://stackoverflow.com/questions/1695135/lineary-separate-two-sets/1695262#1695262Comment by Porges on Lineary separate two setsPorges2009-11-08T04:49:40Z2009-11-08T04:49:40ZThe algorithm is here: <a href="http://en.wikipedia.org/wiki/Linear_least_squares#Computation" rel="nofollow">en.wikipedia.org/wiki/…</a>http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/138628#138628Comment by Porges on Most wanted feature for C# 4.0 ?Porges2009-11-05T19:51:46Z2009-11-05T19:51:46ZExcept that for some bizarro reason tuples have been implemented as classes instead of structs :/http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/1332344#1332344Comment by Porges on What's the strangest corner case you've seen in C# or .NET?Porges2009-11-05T19:30:16Z2009-11-05T19:30:16ZThis is the 'curiously recurring template pattern' <a href="http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern" rel="nofollow">en.wikipedia.org/wiki/…</a>http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156469#156469Comment by Porges on Regexp recognition of email address hard?Porges2009-11-05T18:31:09Z2009-11-05T18:31:09Z@Simon, this is correct. You need to preprocess the string to remove comments before you can even apply this regex, and RFC822 is incredibly obsolete; it's from 1982(!)http://stackoverflow.com/questions/1682131/can-i-enforce-the-order-of-xml-attributes-using-a-schema/1682176#1682176Comment by Porges on Can I enforce the order of XML attributes using a schema?Porges2009-11-05T17:45:13Z2009-11-05T17:45:13ZIt's not a restriction of XML schema but of XML itself. See st.stoqnov's comment.http://stackoverflow.com/questions/1680323/how-can-i-turn-this-12-line-method-into-a-1-line-linq-expression/1680353#1680353Comment by Porges on How can I turn this 12-line method into a 1-line LINQ expression?Porges2009-11-05T17:36:39Z2009-11-05T17:36:39ZThis is slightly incorrect; the extensions are meant to be uppercased. Note also that <code>file => Path.GetExtension(file)</code> is nicer as <code>Path.GetExtension</code>.http://stackoverflow.com/questions/1678068/net-primitives-and-type-hierarchies-why-was-it-designed-like-this/1678187#1678187Comment by Porges on .NET primitives and type hierarchies, why was it designed like this ?Porges2009-11-05T06:23:19Z2009-11-05T06:23:19ZOne reason that int is often used over uint is that uint is not compliant with the Common Language Specification.