[Haskell-cafe] functional languages and the financial industry

2007-11-29 Thread Galchin Vasili
Hello, I have a job search agent/bot filtering for Haskell in particular ... it is interesting that a number are in the financial realm ... Check out ORIXnot to mention Jane Street ... Kind regards, Vasya ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] Re: Haskell packaging on Windows cygwin ( POSIX on Windows ; ^)

2007-11-29 Thread Galchin Vasili
thank you everybody. my bad... a misspelling on my part ;^) Vasya On Nov 29, 2007 7:45 AM, Duncan Coutts [EMAIL PROTECTED] wrote: On Thu, 2007-11-29 at 00:21 -0600, Galchin Vasili wrote: The message I actually receive is: runhaskell Setup.lhs build . ./Haq.hs:6:7

[Haskell-cafe] doing builds using cygwin on Windows ....help

2007-11-29 Thread Galchin Vasili
Hello, I have suceeded in doing a build on top of cygwin. However, after editing some of the cygwin bashrc files, teh darcs path and haddock path still don't show up when I do a echo $PATH. I am now reading http://cygwin.com/cygwin-ug-net/setup-env.html. The PATH environment variable is

[Haskell-cafe] Re: Haskell packaging on Windows cygwin ( POSIX on Windows ; ^)

2007-11-28 Thread Galchin Vasili
29, 2007 12:08 AM, Galchin Vasili [EMAIL PROTECTED] wrote: Hello, I trying to get a library to build ... I am following the instructions in http://en.wikibooks.org/wiki/Haskell/Packaging. Under the Build your project section in this web page, when I try to do an actual build

[Haskell-cafe] Haskell packaging on Windows cygwin ( POSIX on Windows ; ^)

2007-11-28 Thread Galchin Vasili
Hello, I trying to get a library to build ... I am following the instructions in http://en.wikibooks.org/wiki/Haskell/Packaging. Under the Build your project section in this web page, when I try to do an actual build (runhaskell Setup.lhs build), the imported module System.Environment

[Haskell-cafe] the ability to talk to POSIX device drivers

2007-11-27 Thread Galchin Vasili
Hello, I saw somewhere that in one of the Haskell libraries there is support to open, read, write, ioctl, etc. to POSIX drivers, but I don't see in the Haskell Report. ?? Kind regards, Vasili ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

[Haskell-cafe] building a Haskell package on cygwin

2007-11-27 Thread Galchin Vasili
Hello, What is involved in building a package on cygwin? Kind regards, Vasya ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] been scouring through the Haskell prelude to no avail ...

2007-11-24 Thread Galchin Vasili
Hello, Is there any predefined datatype that can be used to represent a two byte value? Kind regards, Vasili ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Unix (Posix) low-level device driver functionality?

2007-11-23 Thread Galchin Vasili
Hello, I am seriously trying to push the mainstream computer industry. I am a kernel developer for POSIX OS's (e.g. Linux) and Windows. I would at the very least be able to write test/correctness software in Haskell where I am able to open Unix/Windows drivers and test storage firmware. The

[Haskell-cafe] very elementary import problem .. help

2007-11-23 Thread Galchin Vasili
Hello, import System.Posix --import Network import System.Process --import Directory import STM I am loading the above script in ghci. However, System.Posix, System.Processand STM cannot be found. Network and Directory are found. I assume when ghc is installed on Windows that the Windows

[Haskell-cafe] question about ghci on windows ...

2007-11-21 Thread Galchin Vasili
Hello, I am reading through http://www.haskell.org/ghc/docs/latest/html/users_guide/index.html in particular the description of the boot libraries. I don't see how I can display function signatures from compiled code (i.e. .hi). ??? Kind regards, Vasya

Re: [Haskell-cafe] question about ghci on windows ...

2007-11-21 Thread Galchin Vasili
: openBinaryFile: does not exist (No such file or directory). ?? Thanks, Vasya On Nov 21, 2007 6:08 PM, Ian Lynagh [EMAIL PROTECTED] wrote: On Wed, Nov 21, 2007 at 05:46:35PM -0600, Galchin Vasili wrote: I am reading through http://www.haskell.org/ghc/docs/latest/html/users_guide/index.html

[Haskell-cafe] Using GHC as a library?

2007-11-21 Thread Galchin Vasili
Hello, I am reading 1) http://hackage.haskell.org/trac/ghc/wiki/Commentary/Compiler/API 2) http://haskell.org/haskellwiki/GHC/As_a_library Conceptually by allowing importation of GHC itself into a problem is this some kind of reification? Kind regards, vasya

Re: [Haskell-cafe] question about ghci on windows ...

2007-11-21 Thread Galchin Vasili
aha . ;^) thnaks, vaya On Nov 21, 2007 7:03 PM, Ian Lynagh [EMAIL PROTECTED] wrote: On Wed, Nov 21, 2007 at 06:57:55PM -0600, Galchin Vasili wrote: I am trying to dump out all function signatures exported from System.Directory. I just tried inside ghci: :! ghc --show-iface

[Haskell-cafe] Erik Meijer's talk at Google?

2007-11-15 Thread Galchin Vasili
Hello, Last week (?) Erik Meijer gave a talk at Google. Has a video been uploaded somewhere? Kind regards, Vasya ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] the interact function and Hugs/ghci on Windows ...

2007-11-15 Thread Galchin Vasili
Hello, I have a Haskell script that contains several functions that are implemented in terms on interact. When I do a function application, Hugs/ghci is waiting for input from stdin. How do one denote EOF from stdin, so that the function evaluation can continue and do the IO () action , ie..

[Haskell-cafe] Haskell library documentation question

2007-11-13 Thread Galchin Vasili
Hello, Is there anyway to get a .pdf version of http://www.haskell.org/ghc/docs/latest/html/libraries/? Kind regards, Vasili ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] how does ghci and hugs handle redirecting of stdin/stdout?

2007-11-13 Thread Galchin Vasili
Thanks, Vasya ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Why are OCaml and Haskell being used at these companies?

2007-11-12 Thread Galchin Vasili
Hello, Using http://www.indeed.com with the search phrase Haskell functional, I found several Haskell positions inclusing Quantitative Functional Programmer (Analyst -

[Haskell-cafe] O'Reilly Real World Haskell book

2007-11-10 Thread Galchin Vasili
Hello, What is the proposed table of contents for Real World Haskell? Regards, Vasili ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] XMonad architecture paper?

2007-11-07 Thread Galchin Vasili
Hello, I was watching Simon Peyton-Jones' video on A Taste of Haskell Part 1. .. Is there any paper discussing the architecture? I am not afraid to read code but sometimes a paper overview is good ... Regards, Vasya ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] XMonad architecture paper?

2007-11-07 Thread Galchin Vasili
Kind thanks, Don. Vasya On Nov 7, 2007 9:40 PM, Don Stewart [EMAIL PROTECTED] wrote: vigalchin: Hello, I was watching Simon Peyton-Jones' video on A Taste of Haskell Part 1. .. Is there any paper discussing the architecture? I am not afraid to read code but

[Haskell-cafe] Hugs running on cygwin

2007-10-30 Thread Galchin Vasili
Hello, When I was downloading and installing the cygwin tool set on my laptop, I noticed that Hugs doesn't appear to be in the toolset. What would it take to get Hugs running on top of cygwin? I guess the Hugs Makefile would have to be modified to correctly link in any of the cygwin Unix

Re: [Haskell-cafe] Tim Sweeney and multi-cores .... and Haskell

2007-10-29 Thread Galchin Vasili
this would bring into mind Simon Peyton Jone's and Simon Marlow's STM research . Regards, Bill On 10/28/07, Sebastian Sylvan [EMAIL PROTECTED] wrote: On 28/10/2007, Galchin Vasili [EMAIL PROTECTED] wrote: http://www.americanscientist.org/content/AMSCI/AMSCI/ArticleAltFormat/2007102151724_866

[Haskell-cafe] Tim Sweeney and multi-cores .... and Haskell

2007-10-27 Thread Galchin Vasili
http://www.americanscientist.org/content/AMSCI/AMSCI/ArticleAltFormat/2007102151724_866.pdf ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] OS Abstraction module??

2007-10-22 Thread Galchin Vasili
Hello, In the Haskell libraries, is there an OS abstraction module, that would hide the POSIX API and Win-32 API? If not, this would be nice so that Haskell programs could be written in an OS independent manner! Kind regards, Bill Halchin ___

Re: [Haskell-cafe] OS Abstraction module??

2007-10-22 Thread Galchin Vasili
Hi Neil, I am really talking about a module or perhaps a Haskell class that provides notion for multiple threads of execution, semaphores, .. that hides POSIX vs Win32 APIs .. i.e. the underlying OS APIs would be totally hidden. The reason I bring this up is that OS abstraction layers are

Re: [Haskell-cafe] OS Abstraction module??

2007-10-22 Thread Galchin Vasili
class). Let me come up with a list of hypothetical functions to iluustrate my point. Thanks, Bill On 10/22/07, Tim Chevalier [EMAIL PROTECTED] wrote: On 10/22/07, Galchin Vasili [EMAIL PROTECTED] wrote: Hi Neil, I am really talking about a module or perhaps a Haskell class

Re: [Haskell-cafe] OS Abstraction module??

2007-10-22 Thread Galchin Vasili
Hi Neil, You misunderstand me. I am really tired of imperative langauges like C/C++ .. I work in industry (for a long time) and have programmed in ANSI C for more than 10 years. Please see my interleaves below. Regards, Bill On 10/22/07, Neil Mitchell [EMAIL PROTECTED] wrote: Hi Bill

Re: [Haskell-cafe] OS Abstraction module??

2007-10-22 Thread Galchin Vasili
PS so far there are only a hand full of FPL shops .. like http://www.galois.com, http://www.skydesk.com, http://www.janestcapital.com/ . On 10/22/07, Galchin Vasili [EMAIL PROTECTED] wrote: Hi Neil, You misunderstand me. I am really tired of imperative langauges like C/C++ .. I work

Re: [Haskell-cafe] OS Abstraction module??

2007-10-22 Thread Galchin Vasili
yep FFI On 10/22/07, Neil Mitchell [EMAIL PROTECTED] wrote: Hi Bill, I am really talking about a module or perhaps a Haskell class that provides notion for multiple threads of execution, semaphores, .. that hides POSIX vs Win32 APIs .. i.e. the underlying OS APIs would

Re: [Haskell-cafe] OS Abstraction module??

2007-10-22 Thread Galchin Vasili
Hi Ryan, Thanks for your generous response. By the way, you don't want to use typeclasses here; they solve the problem of having more than one possible interface at runtime, whereas you only care about compile-time .. in reality I do care about decisions made at run-time (this just struck me

Re: [Haskell-cafe] System.Posix

2007-10-16 Thread Galchin Vasili
On 10/16/07, Bjorn Bringert [EMAIL PROTECTED] wrote: On Oct 16, 2007, at 3:25 , Galchin Vasili wrote: Hello, In a Hugs environment, I am able to import System.Directory but not to import System.Posix. Here is my environment ... .;{Hugs} \packages\*;C:\ftp\CatTheory\Haskell\SOE

[Haskell-cafe] System.Posix

2007-10-15 Thread Galchin Vasili
Hello, In a Hugs environment, I am able to import System.Directory but not to import System.Posix. Here is my environment ... .;{Hugs}\packages\*;C:\ftp\CatTheory\Haskell\SOE\graphics\lib\win32\*. I really want to use the Posix module. Help!!! Kind regards, Bill Halchin

[Haskell-cafe] Re: System.Posix

2007-10-15 Thread Galchin Vasili
Hello, I am fairly familiar with 1st order logic ... hence I think I understand where Z (Zed) is going ... i.e. http://en.wikipedia.org/wiki/Z_notation. It seems to be based on the ZFC formal notion of set theory. 1) I have a formal spec in Z (Zed) and the implementation is in ANSI C. Can

[Haskell-cafe] non POSIX/Win32 API support

2007-09-24 Thread Galchin Vasili
Hello, I want to provide support for another OS. How are the POISIX modules implemented? E.g. in terms of Green Card? Kind regards, Bill Halchin ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Re: [Haskell-cafe] non POSIX/Win32 API support

2007-09-24 Thread Galchin Vasili
Thanks, Ian. Bill On 9/24/07, Ian Lynagh [EMAIL PROTECTED] wrote: On Mon, Sep 24, 2007 at 04:10:30PM -0500, Galchin Vasili wrote: I want to provide support for another OS. How are the POISIX modules implemented? E.g. in terms of Green Card? They use hsc2hs, the FFI and a splash

<    1   2   3   4