Jules

1,124
Reputation
193 views

Registered User

Name Jules
Member for 1 year
Seen Nov 23 at 21:29
Website
Location NL
Age
2d
awarded  Yearling
Oct
31
answered What is the advantages an interpreted language has over a compiled language?
Sep
1
comment Has anyone willingly gone back to php?
You can, both are tools to create websites. You can also compare Cakephp/Symfony/Zend to Ruby on Rails, but that wasn't a comparison I could make at the time (these PHP frameworks didn't exist). I did try Cakephp, but didn't like it. Because PHP is less powerful than Ruby they had to insert ugliness into the framework.
Aug
29
comment Generic classes with methods that work only for some type parameters
Yes but I'm writing a different select. The Linq syntax allows this.
Aug
29
comment Generic classes with methods that work only for some type parameters
Thanks. I don't see how that would solve the problem however. For example if I did aMyList.Select((a) => a.ToDisplayable()) then I'd have a MyList<IDisplayable> but I wouldn't be able to call GetControl() on it because it's not a MyDisplayableList.
Aug
29
comment Generic classes with methods that work only for some type parameters
Ah yes thank you that was my first idea, but I didn't tell you enough. The problem with this approach is that I have a lot of methods that take a MyList<T> and return a MyList<T> (for example methods like Select in Linq). So if I use select on an MyDisplayableList I get back a MyList and them I'm unable to display it...is there a type safe way to handle this problem in C#?
Aug
29
comment Generic classes with methods that work only for some type parameters
Thank you, that is what I'm going to use. But I'd prefer a statically type-safe approach if it's available...
Aug
29
revised Generic classes with methods that work only for some type parameters
added 604 characters in body
Aug
29
asked Generic classes with methods that work only for some type parameters
Jul
26
comment Number of combinations in configurator
Is it possible to do better than exponential time? Maybe this is equivalent to counting the number of solutions to 2-SAT?
Jul
21
comment Learning F# - printing prime numbers
The idea comes from this awesome paper: cs.hmc.edu/~oneill/papers/…
Jul
21
comment Learning F# - printing prime numbers
Let me explain the difference. The Sieve of Eratosthenes only marks off multiples of the current prime number (p in your code). So this is # of multiples of the current prime number steps. Your code however performs a divisibility test for all remaining numbers, not just the multiples. As the numbers get large there are far more non-multiples than multiples, so your algorithm does a lot of extra work compared to the real sieve.
Jul
21
comment Learning F# - printing prime numbers
Keep in mind that that's not a real sieve. That algorithm is very slow (bad asymptotic complexity compared to the real sieve).
Jul
21
asked How to create an interface with additional methods in F#
Jul
19
comment Is there a builder for F# events?
And for these Cells I could define a builder. Here is what I have so far: fsharpcells.codeplex.com. I'd love to hear any comments.
Jul
19
comment Is there a builder for F# events?
Thanks, that looks good. I didn't think of providing functionality inside the Async builder, that's smart! Also thanks for the link, Tomas' website if filled with excellent material. Can you define a Bind and Return specifically for Events? I thought about if for a bit but didn't find a satisfactory answer. For example event { let! a = eventA in a+2} would do the same as map (fun a -> a+1) eventA. But what would event { let! a = eventA in let! b = eventB in return a+b} mean? I did find however that if you cache the last event that arrived you get time varying values as in Cells or FRP.
Jul
16
asked Is there a builder for F# events?
Jul
16
comment Why does F# infer this type?
Thanks! That signature is strange: if you remove : unit or if you remove v' : 't then F# infers the restricted type again! And if you don't specify the signature F# infers the same type... Thanks again!
Jul
15
asked Why does F# infer this type?
Jul
10
comment Does using a lot of tail-recursion in Erlang slow it down?
Nearly all compilers don't optimize the power function. I'm pretty sure Erlang doesn't, so don't depend on it!
Jul
9
comment Does using a lot of tail-recursion in Erlang slow it down?
Your first function is not tail recursive, so this will not but turned into iteration in Erlang.
Jul
6
answered Clojure macro problem
Jun
26
awarded  
Jun
19
comment Functional programming in Python
You can do tail call optimization in Python just fine. Guido doesn't/didn't understand that.
Jun
2
comment How do I create an F# list containing objects with a common superclass?
BTW, requiring explicit type annotations is fine of course. I'm happy that you are improving F#. What I've seen so far is great!
Jun
2
comment How do I create an F# list containing objects with a common superclass?
A good principle with type inference is "require the least, provide the most". If you see a function A -> B then you try to find the most general type A and the most specific type B. If you have a list [A,B,C] then you should infer the most specific type (e.g. most derived common superclass of A,B and C). You can handle interfaces by giving the list all interface types implemented by A, B and C. So if A, B and C have common superclass X and implement interfaces I and J then the type is list<X and implements I and implements J>. Is such a type possible in the current type system?
Jun
1
comment How do I create an F# list containing objects with a common superclass?
Thanks, that's a better solution! It's great that upcast will become unnecessary. Will the F# compiler be able to infer the type, or do I still need to say animals : list<Animal>?
Jun
1
awarded  Student
Jun
1
asked How do I create an F# list containing objects with a common superclass?
May
31
answered Can every recursion be converted into iteration?