User Jules - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T00:48:49Zhttp://stackoverflow.com/feeds/user/40078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1654156/what-is-the-advantages-an-interpreted-language-has-over-a-compiled-language/1654267#16542670Answer by Jules for What is the advantages an interpreted language has over a compiled language?Jules2009-10-31T12:41:40Z2009-10-31T12:41:40Z<p>The advantages wikipedia talks about are advantages for <strong>the language implementor</strong>, not the <strong>language user</strong>. For the language user the most important disadvantage is slower execution speed of interpreted code. An advantage is that code can be executed immediately: you don't have to wait for compilation to finish. This is not really an advantage if you have a quick & incremental compiler (e.g. Lisp compilers, F# interactive). Compiling and then executing is faster than interpreting for code that runs more than a few milliseconds. If your code takes less time than that it feels instant either way.</p>
<p>It's perfectly possible to have dynamic typing, a REPL, dynamic scoping, eval and automatic memory management in a compiled language. For example C# has dynamic typing & automatic memory management, F# & OCaml have a REPL, automatic memory management and Lisp has all of the above.</p>
http://stackoverflow.com/questions/1351878/generic-classes-with-methods-that-work-only-for-some-type-parameters0Generic classes with methods that work only for some type parametersJules2009-08-29T16:55:51Z2009-08-29T20:15:11Z
<p>Say that you're writing a library to display things on the screen, so you create an <code>IDisplayable</code> interface. This interface has one method to create a control from the object: <code>displayable.GetControl()</code>.</p>
<p>You want to create your own list type that can be displayed: <code>MyList<T></code>. Now this list can only be displayed if <code>T</code> is an <code>IDisplayable</code>, so you could ask in the MyList class that T should implement IDisplayable. But you also want to use this list type in some places when T is not IDisplayable (and as a result this list will not be displayable). So is it possible to say that MyList implements IDisplayable if T implements IDisplayable? I would also be happy if <code>MyList<T></code> always implements IDisplayable but throws an exception at runtime if you try to call <code>GetControl()</code> if T is not IDisplayable, but I'd like to know if there's a statically type-safe way to do it. Can this be done? Or am I looking at the wrong solution?</p>
<p>Edit:</p>
<p>I agree with the suggestions so far that MyList may have too many responsibilities. My original idea was to create a <code>MyDisplayableList<T> : MyList<T> (where T : IDisplayable)</code>.</p>
<p>The problem with this approach is that I have a lot of methods that take a MyList and return a MyList (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 even though it is a MyList...is there a type safe way to handle this problem in C#?</p>
http://stackoverflow.com/questions/937157/how-do-i-create-an-f-list-containing-objects-with-a-common-superclass2How do I create an F# list containing objects with a common superclass?Jules2009-06-01T22:38:51Z2009-08-09T12:27:31Z
<p>I have two functions, horizontal and vertical, for laying out controls. They work like this:</p>
<pre><code>let verticalList = vertical [new TextBlock(Text = "one");
new TextBlock(Text = "two");
new TextBlock(Text = "three")]
</code></pre>
<p>Now verticalList is a control that displays the three textblocks vertically:</p>
<pre><code>one
two
three
</code></pre>
<p>Here are the definitions:</p>
<pre><code>let horizontal controls =
let wrap = new WrapPanel() in
List.iter (wrap.Children.Add >> ignore) controls ;
wrap
let vertical controls =
let stack = new StackPanel() in
List.iter (stack.Children.Add >> ignore) controls ;
stack
</code></pre>
<p>A problem occurs when I combine different types:</p>
<pre><code>let foo = vertical [new TextBlock(Text = "Title"); vertical items]
</code></pre>
<p>This complains that the elements of the list are not of the same type. That is true, but they have a common supertype (UIElement).</p>
<p>I know I can use :> UIElement to upcast both items in the list, but this is an ugly solution. Can F# infer the common supertype. If not, why not?</p>
<p>It would be great if the nice looking</p>
<pre><code>vertical [X; Y; Z]
</code></pre>
<p>doesn't have to become</p>
<pre><code>vertical [(X :> UIElement); (Y :> UIElement); (Z :> UIElement)]
</code></pre>
http://stackoverflow.com/questions/1161031/how-to-create-an-interface-with-additional-methods-in-f0How to create an interface with additional methods in F#Jules2009-07-21T18:52:22Z2009-07-21T19:11:52Z
<p>I'm trying to create an interface that requires additional methods on top of IEvent, like this:</p>
<pre><code>type Varying<'t> =
abstract member Get : unit -> 't
abstract member Set : 't -> unit
abstract member AddHandler : Handler<'t> -> unit
abstract member RemoveHandler : Handler<'t> -> unit
member v.Add(f) = v.AddHandler(new Handler<_>(fun _ x -> f x))
interface IEvent<'t> with
member c.AddHandler(h) = c.AddHandler(h)
member c.RemoveHandler(h) = c.RemoveHandler(h)
member c.Add(f) = c.Add(f)
</code></pre>
<p>I added the <code>Get</code> & <code>Set</code> methods. The problem is that the F# compiler wants me to implement the abstract members:</p>
<blockquote>
<p>No implementation was given for 'abstract member Varying.AddHandler : Handler<'t> -> unit'</p>
</blockquote>
<p>But the point of this type is that the member is abstract. What am I doing wrong?</p>
http://stackoverflow.com/questions/1138161/is-there-a-builder-for-f-events0Is there a builder for F# events?Jules2009-07-16T14:48:33Z2009-07-16T17:35:56Z
<p>Events work much like sequences in F#. You can use sequence expressions with sequences. Is there a similar builder for events? I couldn't find it.</p>
<p>If it doesn't exist, then why not? (is it imposssible or not suitable?) If the answer is that it's just not implemented yet then I'm going to give it a try.</p>
<p>Jules</p>
http://stackoverflow.com/questions/1134647/why-does-f-infer-this-type1Why does F# infer this type?Jules2009-07-15T23:28:35Z2009-07-16T03:08:06Z
<p>This is my code:</p>
<pre><code>type Cell<'t>(initial : 't) =
let mutable v = initial
let callbacks = new List<'t -> unit>()
member x.register c = callbacks.Add(c)
member x.get () = v
member x.set v' =
if v' <> v
then v <- v'
for callback in callbacks do callback v'
member x.map f =
let c = new Cell<_>(f v)
x.register(fun v' -> c.set (f v')) ; c
</code></pre>
<p>My problem is with the <code>map</code> member. F# infers the type</p>
<pre><code>map : ('t -> 't) -> Cell<'t>
</code></pre>
<p>I think it should infer this more general type (just like Seq's map):</p>
<pre><code>map : ('t -> 'a) -> Cell<'a>
</code></pre>
<p>And in fact if I declare the type like that, Visual Studio tells me that the type 'a has been constrained to 't because of the expression <code>(f v')</code> in <code>c.set (f v')</code>. Is the problem that the new Cell is forced to have type Cell<'t> because we're in the class definition?</p>
<p>I'm pretty sure that's the problem because if I define map as a separate function then F# does infer the type I want:</p>
<pre><code>let map f (c : Cell<_>) =
let c' = new Cell<_>(f (c.get ()))
c.register(fun v' -> c'.set (f v')) ; c'
</code></pre>
<p>Namely</p>
<pre><code>map : ('a -> 'b) -> Cell<'a> -> Cell<'b>
</code></pre>
<p>I would like to use a member, but this less general type makes my Cell type useless... How do I solve this problem?</p>
<p>Thanks!
Jules</p>
http://stackoverflow.com/questions/1089606/clojure-macro-problem/1089666#10896662Answer by Jules for Clojure macro problemJules2009-07-06T23:27:11Z2009-07-06T23:27:11Z<p>Here's a fixed version:</p>
<pre><code>(defmacro prototype [structure obj]
`(apply struct ~structure (map ~obj (keys ~obj))))
</code></pre>
<p>Why does this need to be a macro? A function works too:</p>
<pre><code>(defn prototype [structure obj]
(apply struct structure (map obj (keys obj))))
</code></pre>
<p>Why do you want to copy the structure? Structures are immutable so copying them is not useful. This function does the same thing as the one above:</p>
<pre><code>(defn prototype [structure obj] obj)
</code></pre>
<p>If you want to create a new structure with additional keys&values, use <code>assoc</code>.</p>
http://stackoverflow.com/questions/931762/can-every-recursion-be-converted-into-iteration/931825#9318251Answer by Jules for Can every recursion be converted into iteration?Jules2009-05-31T10:43:56Z2009-05-31T10:43:56Z<p>Here is an iterative algorithm:</p>
<pre><code>def howmany(x,y)
a = {}
for n in (0..x+y)
for m in (0..n)
a[[m,n-m]] = if m==0 or n-m==0 then 1 else a[[m-1,n-m]] + a[[m,n-m-1]] end
end
end
return a[[x,y]]
end
</code></pre>
http://stackoverflow.com/questions/399932/can-i-improve-this-regex-check-for-valid-domain-names/399953#399953-1Answer by Jules for Can I improve this regex check for valid domain names?Jules2008-12-30T10:38:54Z2009-05-27T17:37:46Z<p>You can build up the regex as a string and then do Regexp.new(string).</p>
http://stackoverflow.com/questions/868997/max-square-size-for-unknown-number-inside-rectangle/874332#8743320Answer by Jules for Max square size for unknown number inside rectangleJules2009-05-17T10:33:50Z2009-05-17T11:11:25Z<p>I assume that the squares can't be rotated. I'm pretty sure that the problem is very hard if you are allowed to rotate them.</p>
<p>So we fill the rectangle by squares by starting in the left-top corner. Then we put squares to the right of that square until we reach the right side of the rectangle, then we do the same with the next row until we arrive at the bottom. This is just like writing text on paper.</p>
<p>Observe that there will never be a situation where there's space left on the right side and on the bottom. If there's space in both directions then we can still increase the size of the squares.</p>
<p>Suppose we already know that 10 squares should be placed on the first row, and that this fits the width perfectly. Then the side length is <code>width/10</code>. So we can place <code>m = height/sidelength</code> squares in the first column. This formula could say that we can place 2.33 squares in the first column. It's not possible to place 0.33 of a square, we can only place 2 squares. The real formula is <code>m = floor(height/sidelength)</code>.</p>
<p>A not very fast (but A LOT faster than trying every combination) algorithm is to try to first place 1 square on the first row/column, then see if we can place enough squares in the rectangle. If it doesn't work we try 2 squares on the first row/column, etc. until we can fit the number of tiles you want.</p>
<p>I think there exists an O(1) algorithm if you are allowed to do arithmetic in O(1), but I haven't figured it out so far.</p>
<p>Here's a Ruby version of this algorithm. This algorithm is O(sqrt(# of tiles)) if the rectangle isn't very thin.</p>
<pre><code>def squareside(height, width, tiles)
n = 0
while true
n += 1
# case 1: the squares fill the height of the rectangle perfectly with n squares
side = height/n
m = (width/side).floor # the number of squares that fill the width
# we're done if we can place enough squares this way
return side if n*m >= tiles
# case 2: the squares fill the width of the rectangle perfectly with n squares
side = width/n
m = (height/side).floor
return side if n*m >= tiles
end
end
</code></pre>
<p>You can also use binary search for this algorithm. In that case it's O(log(# of tiles)).</p>
http://stackoverflow.com/questions/768095/sorting-a-linked-list/768272#76827211Answer by Jules for Sorting a linked listJules2009-04-20T13:33:02Z2009-05-14T11:06:48Z<h2>Functional Quicksort and Mergesort</h2>
<p>Here's a linked list with quicksort and mergesort methods written in a functional style:</p>
<pre><code>class List
{
public int item;
public List rest;
public List(int item, List rest)
{
this.item = item;
this.rest = rest;
}
// helper methods for quicksort
public static List Append(List xs, List ys)
{
if (xs == null) return ys;
else return new List(xs.item, Append(xs.rest, ys));
}
public static List Filter(Func<int,bool> p, List xs)
{
if (xs == null) return null;
else if (p(xs.item)) return new List(xs.item, Filter(p, xs.rest));
else return Filter(p, xs.rest);
}
public static List QSort(List xs)
{
if (xs == null) return null;
else
{
int pivot = xs.item;
List less = QSort(Filter(x => x <= pivot, xs.rest));
List more = QSort(Filter(x => x > pivot, xs.rest));
return Append(less, new List(pivot, more));
}
}
// Helper methods for mergesort
public static int Length(List xs)
{
if (xs == null) return 0;
else return 1 + Length(xs.rest);
}
public static List Take(int n, List xs)
{
if (n == 0) return null;
else return new List(xs.item, Take(n - 1, xs.rest));
}
public static List Drop(int n, List xs)
{
if (n == 0) return xs;
else return Drop(n - 1, xs.rest);
}
public static List Merge(List xs, List ys)
{
if (xs == null) return ys;
else if (ys == null) return xs;
else if (xs.item <= ys.item) return new List(xs.item, Merge(xs.rest, ys));
else return new List(ys.item, Merge(xs, ys.rest));
}
public static List MSort(List xs)
{
if (Length(xs) <= 1) return xs;
else
{
int len = Length(xs) / 2;
List left = MSort(Take(len, xs));
List right = MSort(Drop(len, xs));
return Merge(left, right);
}
}
public static string Show(List xs)
{
if(xs == null) return "";
else return xs.item.ToString() + " " + Show(xs.rest);
}
}
</code></pre>
<h2>Functional heapsort using a Pairing Heap</h2>
<p>Bonus: heapsort (using functional pairing heap).</p>
<pre><code>class List
{
// ...
public static Heap List2Heap(List xs)
{
if (xs == null) return null;
else return Heap.Merge(new Heap(null, xs.item, null), List2Heap(xs.rest));
}
public static List HSort(List xs)
{
return Heap.Heap2List(List2Heap(xs));
}
}
class Heap
{
Heap left;
int min;
Heap right;
public Heap(Heap left, int min, Heap right)
{
this.left = left;
this.min = min;
this.right = right;
}
public static Heap Merge(Heap a, Heap b)
{
if (a == null) return b;
if (b == null) return a;
Heap smaller = a.min <= b.min ? a : b;
Heap larger = a.min <= b.min ? b : a;
return new Heap(smaller.left, smaller.min, Merge(smaller.right, larger));
}
public static Heap DeleteMin(Heap a)
{
return Merge(a.left, a.right);
}
public static List Heap2List(Heap a)
{
if (a == null) return null;
else return new List(a.min, Heap2List(DeleteMin(a)));
}
}
</code></pre>
<p>For actual use you want to rewrite the helper methods without using recursion, and maybe use a mutable list like the built-in one.</p>
<p>How to use:</p>
<pre><code>List xs = new List(4, new List(2, new List(3, new List(1, null))));
Console.WriteLine(List.Show(List.QSort(xs)));
Console.WriteLine(List.Show(List.MSort(xs)));
Console.WriteLine(List.Show(List.HSort(xs)));
</code></pre>
<h2>Imperative In-place Quicksort for linked lists</h2>
<p>An in-place version was requested. Here's a very quick implementation. I wrote this code top to bottom without looking for opportunities to make the code better, i.e. every line is the first line that came to mind. It's extremely ugly because I used null as the empty list :) The indentation is inconsistent, etc.</p>
<p>Additionally I tested this code on only one example:</p>
<pre><code> MList ys = new MList(4, new MList(2, new MList(3, new MList(1, null))));
MList.QSortInPlace(ref ys);
Console.WriteLine(MList.Show(ys));
</code></pre>
<p>Magically it worked the first time! I'm pretty sure that this code contains bugs though. Don't hold me accountable.</p>
<pre><code>class MList
{
public int item;
public MList rest;
public MList(int item, MList rest)
{
this.item = item;
this.rest = rest;
}
public static void QSortInPlace(ref MList xs)
{
if (xs == null) return;
int pivot = xs.item;
MList pivotNode = xs;
xs = xs.rest;
pivotNode.rest = null;
// partition the list into two parts
MList smaller = null; // items smaller than pivot
MList larger = null; // items larger than pivot
while (xs != null)
{
var rest = xs.rest;
if (xs.item < pivot) {
xs.rest = smaller;
smaller = xs;
} else {
xs.rest = larger;
larger = xs;
}
xs = rest;
}
// sort the smaller and larger lists
QSortInPlace(ref smaller);
QSortInPlace(ref larger);
// append smaller + [pivot] + larger
AppendInPlace(ref pivotNode, larger);
AppendInPlace(ref smaller, pivotNode);
xs = smaller;
}
public static void AppendInPlace(ref MList xs, MList ys)
{
if(xs == null){
xs = ys;
return;
}
// find the last node in xs
MList last = xs;
while (last.rest != null)
{
last = last.rest;
}
last.rest = ys;
}
public static string Show(MList xs)
{
if (xs == null) return "";
else return xs.item.ToString() + " " + Show(xs.rest);
}
}
</code></pre>
http://stackoverflow.com/questions/842026/principles-best-practices-and-design-patterns-for-functional-programming/842038#8420383Answer by Jules for Principles, Best Practices and Design Patterns for functional programming Jules2009-05-08T22:10:38Z2009-05-08T22:10:38Z<p>Don't follow principles, follow your nose. Keep functions short. Look for ways to reduce the amount of complexity in code, which often but not necessarily means the most concise code. Learn how to use the builtin higher order functions.</p>
<p>Refactor and reduce the code size of a function right after you've written it. This saves time because tomorrow you won't already have the problem & solution in your mind.</p>
http://stackoverflow.com/questions/816808/are-there-any-ajaxprototype-or-jquery-plugin-sample-for-stackoverflow-like-voti/816815#8168152Answer by Jules for Are there any Ajax(Prototype or JQuery Plugin) sample for stackoverflow-like voting?Jules2009-05-03T11:21:34Z2009-05-03T11:51:31Z<p>You create a page for voting like yoursite.com/vote?postid=1234&direction=up that saves the vote in the database. Then you create buttons or links for voting and perform an Ajax request when the user clicks the link:</p>
<p>jquery:</p>
<pre><code>$.post("vote", { postid: the_id, direction: "up" })
</code></pre>
http://stackoverflow.com/questions/748363/is-this-a-design-pattern/748385#7483851Answer by Jules for Is this a design pattern?Jules2009-04-14T16:31:46Z2009-04-14T16:31:46Z<p>You can remove this repetition (or prevent it for future code) by using lambda expressions. Lambda expressions are exactly for this situation.</p>
http://stackoverflow.com/questions/500424/should-i-heed-derek-sivers-warnings-about-migrating-from-php-to-rails/500470#5004709Answer by Jules for Should I heed Derek Sivers' warnings about migrating from PHP to Rails?Jules2009-02-01T09:14:08Z2009-02-01T09:20:55Z<p>I have experience with PHP & Ruby + Ruby on Rails (earned money using both, but not a lot).</p>
<p>The Ruby library is much better. PHP's library is a collection of functions in a global namespace with inconsistent names and argument order. <code>strpos</code> vs <code>str_repeat</code>. <code>strpos</code>'s first argument is the big string and the second argument is the string to find. <code>explode</code>'s first argument is the string to split by and the second argument is the big string. This was a big problem for me. I had to look up a lot of things when using PHP, but not when using Ruby. I can remember things because they're consistent. The names of the methods make argument order clear. Another: PHP's <code>strlen($str)</code> vs <code>count($arr)</code> while in Ruby it's just <code>anything.length</code>.</p>
<p>Ruby the language is better than PHP. It has closures, good OO, nice syntax (this is subjective, but you need a lot less punctuation in Ruby, and that's what I get wrong most often).</p>
<p>That's my experience. Try both and see what works for you.</p>
http://stackoverflow.com/questions/500026/what-is-a-good-mathematically-inclined-book-for-a-lisp-beginner/500448#5004484Answer by Jules for What is a good mathematically inclined book for a Lisp beginner?Jules2009-02-01T08:48:37Z2009-02-01T08:48:37Z<p>Structure and Interpretation of Computer Programs uses mathematical examples. It's not really a book for learning a particular version of Lisp, but you'll learn the concepts.</p>
http://stackoverflow.com/questions/493973/uses-for-dynamic-languages/494009#4940091Answer by Jules for Uses for Dynamic LanguagesJules2009-01-29T23:59:50Z2009-01-29T23:59:50Z<p>In dynamic languages you can use values in ways that you know are correct. In a statically typed language you can only use values in ways the compiler knows are correct. You need all of the things you mentioned to regain flexibility that's taken away by the type system (I'm not bashing static type systems, the flexibility is often taken away for good reasons). This is a lot of complexity that you don't have to deal with in a dynamic language if you want to use values in ways the language designer didn't anticipate (for example, putting values of different types in a hash table).</p>
<p>So it's not that you can't do these things in a statically typed language (if you have runtime reflection), it's just more complicated.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/489041#4890410Answer by Jules for How do you advance beyond being an 'advanced' programmer?Jules2009-01-28T19:48:47Z2009-01-28T19:48:47Z<p>Read <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">SICP</a>. It's an introduction to programming. I can assure you that most things you'll learn in this book are new to you if you haven't read it already (writing a compiler for Scheme for example).</p>
http://stackoverflow.com/questions/349198/which-are-your-favorite-programming-language-gadgets/481912#4819121Answer by Jules for Which are your favorite programming language gadgets?Jules2009-01-27T00:19:10Z2009-01-27T00:19:10Z<p>From most important to least:</p>
<ul>
<li>Lisp-style macros</li>
<li>Some way to define generic operations (via OO dispach for example)</li>
<li>Lambda's</li>
<li>Pattern matching</li>
<li>Tail calls</li>
<li>Coroutines</li>
</ul>
http://stackoverflow.com/questions/480405/finding-the-next-in-round-robin-scheduling-by-bit-twiddling/480505#4805051Answer by Jules for Finding the next in round-robin scheduling by bit twiddlingJules2009-01-26T16:57:51Z2009-01-26T17:27:51Z<p>Subracting 1 is the essential idea here. It's used to cascade borrows through the bits to find the next task.</p>
<pre><code>bits_before_current = ~(current-1) & ~current
bits_after_current = current-1
todo = (mask & bits_before_current)
if todo==0: todo = (mask & bits_after_current) // second part is if we have to wrap around
next = last_bit_of_todo = todo & -todo
</code></pre>
<p>This will use a loop internally though...</p>
http://stackoverflow.com/questions/478546/basic-ocaml-oop-question/478565#4785651Answer by Jules for Basic OCaml OOP questionJules2009-01-26T00:03:43Z2009-01-26T00:03:43Z<p>Declare the type:</p>
<pre><code>class myClass (foo:myClass2) =
</code></pre>
http://stackoverflow.com/questions/476348/that-a-ha-moment-for-understanding-oo-design-in-c/478532#4785320Answer by Jules for That A-Ha Moment for Understanding OO Design in C#Jules2009-01-25T23:40:31Z2009-01-25T23:40:31Z<p>The thing that made OO click for me is learning about Prototype based OO like in <a href="http://www.iolanguage.com/" rel="nofollow">Io</a> and <a href="http://en.wikipedia.org/wiki/Self_(programming_language)" rel="nofollow">Self</a>. C#'s OO is a very different beast: not elegant and simple, but hairy and complex. Simple doesn't mean less powerful, on the contrary! I suggest learning a simple and elegant system first. Then you can see the OO in C# if you squint.</p>
<p>Another A-Ha moment was understanding how a type system can prevent calling the wrong methods on the wrong objects at compile time. C#'s type system doesn't do this in all cases because of casts. I got this A-Ha moment when reading the <a href="http://www.google.com/search?q=site%3Awww.jot.fm+theory+of+classification" rel="nofollow">articles</a> on <a href="http://www.jot.fm/issues/issue_2002_05/column5/index.html" rel="nofollow">type theory</a> from the Journal of Object Technology.</p>
http://stackoverflow.com/questions/475033/detecting-programming-language-from-a-snippet/475041#47504118Answer by Jules for Detecting programming language from a snippetJules2009-01-23T23:21:41Z2009-01-24T00:35:04Z<p>I think that the method used in spam filters would work very well. You split the snippet into words. Then you compare the occurences of these words with known snippets, and compute the probability that this snippet is written in language X for every language you're interested in.</p>
<p><a href="http://en.wikipedia.org/wiki/Bayesian_spam_filtering" rel="nofollow">http://en.wikipedia.org/wiki/Bayesian_spam_filtering</a></p>
<p>If you have the basic mechanism then it's very easy to add new languages: just train the detector with a few snippets in the new language (you could feed it an open source project). This way it learns that "System" is likely to appear in C# snippets and "puts" in Ruby snippets.</p>
<p>I've actually used this method to add language detection to code snippets for forum software. It worked 100% of the time, except in ambiguous cases:</p>
<pre><code>print "Hello"
</code></pre>
<p>Let me find the code.</p>
<p>I couldn't find the code so I made a new one. It's a bit simplistic but it works for my tests. Currently if you feed it much more Python code than Ruby code it's likely to say that this code:</p>
<pre><code>def foo
puts "hi"
end
</code></pre>
<p>is Python code (although it really is Ruby). This is because Python has a <code>def</code> keyword too. So if it has seen 1000x <code>def</code> in Python and 100x <code>def</code> in Ruby then it may still say Python even though <code>puts</code> and <code>end</code> is Ruby-specific. You could fix this by keeping track of the words seen per language and dividing by that somewhere (or by feeding it equal amounts of code in each language).</p>
<p>I hope it helps you:</p>
<pre><code>class Classifier
def initialize
@data = {}
@totals = Hash.new(1.0)
end
def words(code)
code.split(/[^a-z]/).reject{|w| w.empty?}
end
def train(code,lang)
@data[lang] ||= Hash.new(1)
for word in words(code)
@data[lang][word] += 1
@totals[word] += 1
end
end
def prob(words,lang)
# We really want to multiply here but I use logs
# to avoid floating point underflow
# (adding logs is equivalent to multiplication)
words.inject(0.0){|c,w| c + Math.log(@data[lang][w]/@totals[w])}
end
def classify(code)
ws = words(code)
@data.keys.sort_by{|lang| prob(ws,lang)}.last
end
end
# Example usage
c = Classifier.new
# Train from files
c.train(open("code.rb").read, :ruby)
c.train(open("code.py").read, :python)
c.train(open("code.cs").read, :csharp)
# Test it on another file
c.classify(open("code2.py").read) # => :python (hopefully)
</code></pre>
http://stackoverflow.com/questions/456034/how-to-find-intersecting-periods-in-a-huge-list-of-periods/456039#4560398Answer by Jules for How to find intersecting periods in a huge list of periods?Jules2009-01-18T22:30:28Z2009-01-18T22:30:28Z<p>Interval trees will do:</p>
<p><a href="http://en.wikipedia.org/wiki/Interval_tree" rel="nofollow">http://en.wikipedia.org/wiki/Interval_tree</a></p>
http://stackoverflow.com/questions/437312/trying-to-learn-object-reorientation-and-generic-functions-in-lisp/437364#4373641Answer by Jules for Trying to learn: Object Reorientation, and generic functions in LISP!Jules2009-01-12T23:00:09Z2009-01-12T23:00:09Z<p>Can you give an example of an architecture? CLOS is pretty much a superset of the Java object system, so I'm not sure which architectures you have in mind...</p>
http://stackoverflow.com/questions/317767/would-it-be-reasonable-to-self-study-the-dragon-book/431994#4319941Answer by Jules for Would it be reasonable to self-study the dragon book?Jules2009-01-10T23:56:03Z2009-01-10T23:56:03Z<p>I've read a couple of times that people preferred Modern Compiler Implementation in {ML,C,Java}, because it's more modern and focuses less on parsing.</p>
<p><a href="http://www.cs.princeton.edu/~appel/modern/" rel="nofollow">http://www.cs.princeton.edu/~appel/modern/</a></p>
http://stackoverflow.com/questions/430182/is-c-strongly-typed/430236#4302364Answer by Jules for Is C strongly typed?Jules2009-01-10T00:16:36Z2009-01-10T00:16:36Z<p>The literature isn't clear about this. I think that strongly typed isn't yes/no, there are varying degrees of strong typing. </p>
<p>A programming language has a specification of how it executes programs. Sometimes it's not clear how to execute with certain programs. For example, programs that try to subtract a string from a number. Or programs that divide by zero. There are several ways to deal with these conditions. Some languages have rules for dealing with these errors (for example they throw an exception). Other languages just don't have rules to deal with these situations. Those languages generally have type systems to prevent compiling programs that lead to unspecified behavior. And there also exist languages that have unspecified behavior and don't have a type system to prevent these errors at compile time (if you write a program that hits unspecified behavior it might launch the missiles).</p>
<p>So:</p>
<p>Languages that specify what happens at runtime in every case (like adding a number to a string) are called dynamically typed.
Languages that prevent executing programs with errors at compile time are statically typed.
Languages that don't specify what happens and also don't have a type system to prevent errors are called weakly typed.</p>
<p>So is Java statically typed? Yes, because its type system disallows subtracting a string from a number. No, because it allows you to divide by zero. You could prevent division by zero at compile time with a type system. For example by creating a number type that can't be zero (e.g. NonZeroInt), and only allow to divide by numbers that have this type.</p>
<p>So is C strongly typed or weakly typed? C is strongly typed because the type system disallows some type errors. But it's weakly typed in other cases when it's undefined what happens (and the type system doesn't protect you).</p>
http://stackoverflow.com/questions/413535/nsnumber-storing-float-please-no-scientific-notation/413628#413628-3Answer by Jules for NSNumber storing float. Please NO scientific notation!!Jules2009-01-05T16:13:50Z2009-01-06T08:07:26Z<p>Note that I don't any any experience with objective-c, but are you seriously storing a phone number in a float? You should consider using an integer or string. Perhaps:</p>
<pre><code>NSNumber *inputToNumber = [NSNumber numberWithInt:[textField.text intValue]];
</code></pre>
http://stackoverflow.com/questions/325046/should-i-choose-to-learn-java-or-net/409580#4095801Answer by Jules for Should I choose to learn Java or .NET?Jules2009-01-03T18:55:13Z2009-01-03T18:55:13Z<p>C# seems to be evolving more quickly than Java. I don't know if this is good or bad. If you know C# then you can pick up Java pretty quickly and vice-versa. The libraries take a longer time to learn than the languages.</p>
http://stackoverflow.com/questions/406710/has-anyone-willingly-gone-back-to-php/406794#4067943Answer by Jules for Has anyone willingly gone back to php?Jules2009-01-02T13:33:48Z2009-01-02T13:33:48Z<p>I used to program in PHP. But PHP as a language has serious flaws, and the library is a mess, so I moved on. I use Ruby on Rails for web programming now, and sometimes Django. These tools are a lot better, so I never looked back.</p>
<p>The only advantage PHP had for me a few years ago was that many webhosts supported it, but there are enough Rails hosts now.</p>
http://stackoverflow.com/questions/406710/has-anyone-willingly-gone-back-to-php/406794#406794Comment by Jules on Has anyone willingly gone back to php?Jules2009-09-01T16:25:52Z2009-09-01T16:25:52ZYou 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.http://stackoverflow.com/questions/1351878/generic-classes-with-methods-that-work-only-for-some-type-parameters/1351897#1351897Comment by Jules on Generic classes with methods that work only for some type parametersJules2009-08-29T23:30:28Z2009-08-29T23:30:28ZYes but I'm writing a different select. The Linq syntax allows this.http://stackoverflow.com/questions/1351878/generic-classes-with-methods-that-work-only-for-some-type-parameters/1351897#1351897Comment by Jules on Generic classes with methods that work only for some type parametersJules2009-08-29T20:54:37Z2009-08-29T20:54:37ZThanks. I don't see how that would solve the problem however. For example if I did <code>aMyList.Select((a) => a.ToDisplayable())</code> then I'd have a <code>MyList<IDisplayable></code> but I wouldn't be able to call GetControl() on it because it's not a MyDisplayableList.http://stackoverflow.com/questions/1351878/generic-classes-with-methods-that-work-only-for-some-type-parameters/1351897#1351897Comment by Jules on Generic classes with methods that work only for some type parametersJules2009-08-29T20:20:09Z2009-08-29T20:20:09ZAh 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#?http://stackoverflow.com/questions/1351878/generic-classes-with-methods-that-work-only-for-some-type-parameters/1351891#1351891Comment by Jules on Generic classes with methods that work only for some type parametersJules2009-08-29T20:17:23Z2009-08-29T20:17:23ZThank you, that is what I'm going to use. But I'd prefer a statically type-safe approach if it's available...http://stackoverflow.com/questions/1154565/number-of-combinations-in-configurator/1182200#1182200Comment by Jules on Number of combinations in configuratorJules2009-07-26T09:49:59Z2009-07-26T09:49:59ZIs it possible to do better than exponential time? Maybe this is equivalent to counting the number of solutions to 2-SAT?http://stackoverflow.com/questions/1097411/learning-f-printing-prime-numbers/1097596#1097596Comment by Jules on Learning F# - printing prime numbersJules2009-07-21T21:00:12Z2009-07-21T21:00:12ZThe idea comes from this awesome paper: <a href="http://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf" rel="nofollow">cs.hmc.edu/~oneill/papers/…</a>http://stackoverflow.com/questions/1097411/learning-f-printing-prime-numbers/1097596#1097596Comment by Jules on Learning F# - printing prime numbersJules2009-07-21T20:59:00Z2009-07-21T20:59:00ZLet me explain the difference. The Sieve of Eratosthenes only marks off multiples of the current prime number (<code>p</code> 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.http://stackoverflow.com/questions/1097411/learning-f-printing-prime-numbers/1097596#1097596Comment by Jules on Learning F# - printing prime numbersJules2009-07-21T20:52:47Z2009-07-21T20:52:47ZKeep in mind that that's not a real sieve. That algorithm is very slow (bad asymptotic complexity compared to the real sieve).http://stackoverflow.com/questions/1138161/is-there-a-builder-for-f-events/1139113#1139113Comment by Jules on Is there a builder for F# events?Jules2009-07-19T19:58:07Z2009-07-19T19:58:07ZAnd for these Cells I could define a builder. Here is what I have so far: <a href="http://fsharpcells.codeplex.com/" rel="nofollow">fsharpcells.codeplex.com</a>. I'd love to hear any comments.http://stackoverflow.com/questions/1138161/is-there-a-builder-for-f-events/1139113#1139113Comment by Jules on Is there a builder for F# events?Jules2009-07-19T19:55:43Z2009-07-19T19:55:43ZThanks, 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 <code>event { let! a = eventA in a+2}</code> would do the same as <code>map (fun a -> a+1) eventA</code>. But what would <code>event { let! a = eventA in let! b = eventB in return a+b}</code> mean?
I did find however that if you cache the last event that arrived you get time varying values as in Cells or FRP.http://stackoverflow.com/questions/1134647/why-does-f-infer-this-type/1134697#1134697Comment by Jules on Why does F# infer this type?Jules2009-07-16T12:49:15Z2009-07-16T12:49:15ZThanks! That signature is strange: if you remove <code>: unit</code> or if you remove <code>v' : 't</code> then F# infers the restricted type again! And if you don't specify the signature F# infers the same type... Thanks again!http://stackoverflow.com/questions/1105669/does-using-a-lot-of-tail-recursion-in-erlang-slow-it-down/1105688#1105688Comment by Jules on Does using a lot of tail-recursion in Erlang slow it down?Jules2009-07-10T18:00:50Z2009-07-10T18:00:50ZNearly all compilers don't optimize the power function. I'm pretty sure Erlang doesn't, so don't depend on it!http://stackoverflow.com/questions/1105669/does-using-a-lot-of-tail-recursion-in-erlang-slow-it-down/1105688#1105688Comment by Jules on Does using a lot of tail-recursion in Erlang slow it down?Jules2009-07-09T21:52:29Z2009-07-09T21:52:29ZYour first function is not tail recursive, so this will not but turned into iteration in Erlang.http://stackoverflow.com/questions/1017621/functional-programming-in-python/1017663#1017663Comment by Jules on Functional programming in PythonJules2009-06-19T12:27:16Z2009-06-19T12:27:16ZYou can do tail call optimization in Python just fine. Guido doesn't/didn't understand that.