Nathan Sanders

2,683
reputation
192 views

Registered User

name Nathan Sanders
member for 1 year
seen 8 hours ago
website
location Indiana University
age 27

Grad student in computational linguistics.

  • Likes: Python, Haskell, Lisp
  • Dislikes: C++
  • Blood type: ?
1d
accepted Returning an element from a list
1d
revised Returning an element from a list
Added link to official algorithm description
1d
answered Returning an element from a list
1d
comment Haskell question: constraining data types to use show
If you're writing an interpreter with different semantics from Haskell (where 0=="" is a type error) the Right Thing is to create a type for values in your language instead of directly reusing Haskell's: data IObj = IInt Int | IStr String |.... Now change Exp to data Exp = Const IObj | Eq IObj IObj. Otherwise you'll find it difficult to write an equals function that can inspect two different types.
2d
revised Haskell question: constraining data types to use show
Improved title and fixed bug in question's code (unbound type variable `a')
2d
answered Haskell question: constraining data types to use show
Dec
2
comment In Which Cases Is Better To Use Clojure?
I find that Stoned Bear Common Lisp is a better implementation, generally less violent and more relaxed than ABCL.
Nov
24
accepted Is this a better (more functional way) to write the following fsharp code?
Nov
22
accepted Extracting pure content / text from HTML Pages by excluding navigation and chrome content
Nov
19
accepted Scheme - how do I modify an individual element in a list?
Nov
19
answered Scheme - how do I modify an individual element in a list?
Nov
16
awarded  Fanatic
Nov
13
accepted “for each” or “every” keywords in Scheme
Nov
13
answered “for each” or “every” keywords in Scheme
Nov
9
answered Extracting pure content / text from HTML Pages by excluding navigation and chrome content
Nov
6
comment how to convert a list to num in scheme?
length and power are already defined in Scheme, although expt is the name of the latter.
Nov
6
revised how to convert a list to num in scheme?
Fixed code formatting
Nov
5
comment Inheritence to extend a data structure in Haskell
I thought that was an academic toy for advanced Haskellers, not a tool to ease the transition for C++ programmers. (The giveaway is "OOHaskell lends itself as a sandbox for typed OO language design.")
Nov
5
answered Inheritence to extend a data structure in Haskell
Oct
30
comment Is this a better (more functional way) to write the following fsharp code?
Yes, garbage is often the cause of performance problems in my functional programs. You can either be clever or use low-level destructive functions. For the first approach, take a look at Purely Functional Data Structures: eecs.usma.edu/webs/people/…. For the second approach, I can imagine an Array.concat_destructive which pre-allocates a fixed amount of memory and fills it with its arguments. Or you might get the compiler to do the dirty work for you--see chapter 25 of Real World Haskell (book.realworldhaskell.org/read/…)
Oct
29
answered Is this a better (more functional way) to write the following fsharp code?
Oct
26
revised Multiple Exits From F# Function
Fixed hilarious typo
Oct
25
accepted Multiple Exits From F# Function
Oct
24
revised Haskell & Oracle
Fixed grammar
Oct
23
accepted Is there any benefit to porting the Haskell Edison API and Core to F#?
Oct
23
comment Is learning LISP useful at all these days?
Can you give some examples for Common Lisp? The only people I know are the ones working with Kevin Knight at USC/Information Sciences Institute.
Oct
23
revised How do you make a binary search tree in Clojure?
Fixed grammar and a really confusing typo (cant -> can)
Oct
23
revised Is there any benefit to porting the Haskell Edison API and Core to F#?
Checked facts with PFDS and added translation of lazy notation to F#
Oct
23
answered How do you make a binary search tree in Clojure?
Oct
22
comment Multiple Exits From F# Function
Strange. When you use a discriminated union like an enum, it requires the full namespace. In your situation (you don't pattern match on the types), I would just declare a set of integer constants.
Oct
22
comment What is the best Scheme implementation for (sys-admin) shell scripts?
I would, but I refuse to acknowledge that R6RS exists. :P
Oct
22
answered Multiple Exits From F# Function
Oct
21
comment What is the best Scheme implementation for (sys-admin) shell scripts?
This is always the case with Scheme. :)
Oct
21
answered What is the best Scheme implementation for (sys-admin) shell scripts?
Oct
21
answered Is there any benefit to porting the Haskell Edison API and Core to F#?
Oct
21
answered Rewriting C# code in F#
Oct
20
answered Issue with Haskell’s “do”
Oct
16
comment Scheme How To Return Multiple Values?
Did you know you can post an answer to your own question? (If you like getting points on Stack Overflow. :)
Oct
15
answered need help understanding this erlang code
Oct
10
comment do any one use Dr scheme programming? how to sort using list?
Actually, sort is not built in to R5RS Scheme. (schemers.org/Documents/Standards/…). Bubble sort is also a bad choice for Scheme; it is very hard to write compared to insertion sort, for example.
Oct
8
accepted Does anyone use the Scheme programming language for a living?
Oct
6
answered Does anyone use the Scheme programming language for a living?
Oct
3
comment Tail-recursion optimization in oz
I only know Oz from reading Peter Van Roy's Concepts, Techniques, and Models of Computer Programming, but it does in fact has incomplete values--they are used extensively in concurrent programming, because reading an incomplete value cause the current thread to block. So Pascal's guess is probably how it works. (Here is the book link: info.ucl.ac.be/~pvr/book.html He used to have a draft version online, but has removed it. :( )
Oct
2
revised Learning Scheme Macros. Help me write a define-syntax-rule
Added Eli's information on define-syntax-rule
Oct
2
comment Learning Scheme Macros. Help me write a define-syntax-rule
It's probably new since I last used PLT. Thanks for the terminology; I don't use keywords so I didn't know what they're called.
Oct
1
answered Learning Scheme Macros. Help me write a define-syntax-rule
Sep
23
comment Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system?
Also, F# has a pretty advanced type-system. :) After all, it integrates OO and functional types.
Sep
22
answered Haskell composition (.) vs F#’s pipe forward operator (|>)
Sep
20
accepted How to structure Haskell code for IO?
Sep
20
answered How to structure Haskell code for IO?