Savanni D'Gerinel

less info
526 reputation
210
bio website markus.alyra.org
location Austin, TX
age 34
visits member for 2 years, 4 months
seen May 15 at 21:07
stats profile views 32

I am a software developer in Austin with extensive experience in Perl, Python, and C. I also have some lesser experience (but great interest in) Ocaml, Haskell, and Clojure.

I have an unhealthy fascination with database interactions and the merits and flaws of database designs, but with none of the theoretical background to actually understand many of the arguments thrown around.

Finally, I want to start doing GUI development for commercial Linux applications.


May
5
asked How can I convert from a Netpbm image to a Gtk pixbuf (in Haskell)?
May
5
comment Haskell image processing library?
I get a little skittish about delegating to an external program operations that I think should be done in a library, but this turned out to be a fantastic solution for me. stb-image had some C pointer weirdness and can't re-encode the data, and DevIL won't deal with data in memory. Netpbm give me a nicely simple solution.
Mar
4
comment How can I use the Text.RSS module in an application already using Text.XmlHtml without also importing Text.XML.HaXml?
That's fair. For purposes of the weekend I didn't want to re-implement RSS myself, but it really is a simple protocol that I just have to brush up on.
Mar
4
accepted How can I use the Text.RSS module in an application already using Text.XmlHtml without also importing Text.XML.HaXml?
Mar
2
asked How can I use the Text.RSS module in an application already using Text.XmlHtml without also importing Text.XML.HaXml?
Jan
14
awarded  Yearling
Jan
7
comment How do I combine IOError exceptions with locally relevant exceptions?
I'm going to try to really internalize the stuff above, first. This is so difficult that bringing in this as well is going to confuse me.
Jan
7
comment How do I combine IOError exceptions with locally relevant exceptions?
Oh, now I get it. So, even if catch returned Left (FileUnreadable blah), then liftIO would have simply wrapped a Right around that. And, in fact, now I see that it did and that my <- basically unwrapped the Right from it. So, your solution passes Right $ readFile path into catchError'. runErrorT strips that off at whatever time that the operation actually gets evaluated. This is still very difficult to comprehend, but I'm getting closer. I've not even tried figuring out the fmap runErrorT portion, yet.
Jan
7
comment How do I combine IOError exceptions with locally relevant exceptions?
I'll leave the control package alone for now. I get what you are doing in the first part of this, but why does unwrapping the operation and then wrapping the entire catchError in an ErrorT give me the flow of operations that I was looking for while lifting catchError does not? Can you explain the difference?
Jan
7
accepted How do I combine IOError exceptions with locally relevant exceptions?
Jan
5
answered How do I combine IOError exceptions with locally relevant exceptions?
Jan
4
asked How do I combine IOError exceptions with locally relevant exceptions?
Dec
28
comment Embedding a Heist tag inside of a javascript
Thanks. I'm trying to go with pandocBS directly because I'm loading the Markdown content from another file and putting the formatted version into the template. markdownSplice seems to require that the markdown content already be in my template, which it is not. Text.XML.Expat.Tree.parse' does not seem to produce an XML node that con be easily converted into a Text.XmlHtml. So, I'm using Text.XmlHtml.parseXML directly but having trouble with the "typographically correct" flag in pandocBS producing character codes that I can't handle yet.
Dec
28
accepted Embedding a Heist tag inside of a javascript
Dec
26
asked Embedding a Heist tag inside of a javascript
Nov
30
accepted How do I catch simple errors with Haskell's BSON module?
Nov
26
answered How do I catch simple errors with Haskell's BSON module?
Nov
26
comment How do I catch simple errors with Haskell's BSON module?
I renamed unpackUser to docToUser since that seemed to be causing some confusion. Either way, I expect all of the look operations to happen in an Either context, which would mean that fail = Left. If it is not happening in that context, I would like to know why and how to change it so that it does. I can only figure some kind of error in the lines that do the look/unpack of each field.
Nov
26
revised How do I catch simple errors with Haskell's BSON module?
Renamed unpackUser to docToUser
Nov
25
asked How do I catch simple errors with Haskell's BSON module?