Porges

813
Reputation
91 views

Registered User

Name Porges
Member for 1 year
Seen 8 hours ago
Website
Location NZ
Age 24
Student living in Wellington, New Zealand. Attending Massey University. For more, see my about page on my website.
8h
comment Haskell execution sequence
This is not true! Check out the manual for a recent version of GHCi: haskell.org/ghc/docs/…
Nov
25
comment C# Conversion of lambda expression
The (_) => ... parameter would be more self-explanatory as state => ....
Nov
18
comment Haskell tail function for empty lists
@Artelius: that should be xss where (_:xss) = xs.
Nov
16
comment Transpose a file in bash
mawk should be even faster
Nov
16
comment regex to strip out [blah: … ] tag from string
You don't actually need to escape the ] in the character class, if you really want to be evil :)
Nov
14
accepted C#/Fixing Operators for Generics
Nov
14
answered C#/Fixing Operators for Generics
Nov
13
comment Pointer equality in Haskell?
@Otto: Those phrases are about the computational equality of functions in general, so they apply to all languages. They aren't Haskell-specific.
Nov
11
revised How does primitive recursion differ from “normal” recursion ?
blarhg
Nov
11
answered How does primitive recursion differ from “normal” recursion ?
Nov
11
comment Closest equivalent to subprocess.communicate in Haskell
You can edit your post, you know... :)
Nov
10
comment Declare variable for just time
Semantically, 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).
Nov
8
accepted ReSharper - Possible Null Assignment when using Microsoft.Contracts
Nov
8
comment Lineary separate two sets
The algorithm is here: en.wikipedia.org/wiki/…
Nov
7
revised ReSharper - Possible Null Assignment when using Microsoft.Contracts
changed {T} to ``1, oops
Nov
7
answered ReSharper - Possible Null Assignment when using Microsoft.Contracts
Nov
7
revised ReSharper - Possible Null Assignment when using Microsoft.Contracts
edited tags
Nov
5
comment Most wanted feature for C# 4.0 ?
Except that for some bizarro reason tuples have been implemented as classes instead of structs :/
Nov
5
comment What’s the strangest corner case you’ve seen in C# or .NET?
This is the 'curiously recurring template pattern' en.wikipedia.org/wiki/…
Nov
5
awarded  Necromancer
Nov
5
awarded  Organizer
Nov
5
comment Regexp recognition of email address hard?
@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(!)
Nov
5
answered How to test if xml file is getting called or not?
Nov
5
comment Can I enforce the order of XML attributes using a schema?
It's not a restriction of XML schema but of XML itself. See st.stoqnov's comment.
Nov
5
comment How can I turn this 12-line method into a 1-line LINQ expression?
This is slightly incorrect; the extensions are meant to be uppercased. Note also that file => Path.GetExtension(file) is nicer as Path.GetExtension.
Nov
5
answered Is there any way to make Code Contracts work with LINQ?
Nov
5
comment .NET primitives and type hierarchies, why was it designed like this ?
One reason that int is often used over uint is that uint is not compliant with the Common Language Specification.
Sep
16
accepted Efficiently get sorted sums of a sorted list
Sep
16
awarded  Yearling
Aug
26
comment How does Haskell know which typeclass instance you mean?
ShowFunctions is in QuickCheck now, I believe.
Jun
17
answered Run a script at unlock?
Jun
16
accepted Is there a Haskell compiler or preprocessor that uses strict evaluation?
Jun
16
answered Is there a Haskell compiler or preprocessor that uses strict evaluation?
Jun
14
comment What type of scope does Haskell use?
"a nullary function taking no arguments" — I'd just point out that these comments don't hold true in the case of unlifted values.
Jun
13
comment Extract filename and extension in bash
It is unsolvable on a lexical basis, you'll need to check the file type. Consider if you had a game called dinosaurs.in.tar and you gzipped it to dinosaurs.in.tar.gz :)
Jun
9
answered Haskell: Show screwed up?
Jun
5
comment Haskell: difference between . (dot) and $ (dollar sign)
I wouldn't call it "syntactic sugar". They are both ordinary operators defined in Haskell.