pcscholl.de
Blog'o'Phil » Parsing Date Strings with pyparsing
http://pcscholl.de/2008/08/25/parsing-date-strings-with-pyparsing
Infrequent stuff about what I'm doing…. Parsing Date Strings with pyparsing. Posted on August 25th, 2008. Now that the Genre Detection stuff. That do exactly that more or less elegantly to a certain extent, but they are a) rarely understandable, b) therefore not easy to alter, c) often lack the different formats of human-readable dates and d) it is so much more fun to do it yourself 🙂 . As I am fiddling around with Python anyway, I thought to give pyparsing. Descent 🙂 ) parser that. Does What I Want.
pcscholl.de
Blog'o'Phil » dates
http://pcscholl.de/tag/dates
Infrequent stuff about what I'm doing…. Entries Tagged as 'dates'. Better later than never: the pyparsing-based date parser. As promised in my earlier post. I will just release the important part for my date parser using pyparsing. Thanks for Ryan to remind me 😉. I never really finished (or polished) the code – it is just an excerpt from my actual program that eventually ignored the dates. The grammar probably is faulty, I just publish it as an example how it. Followed by ordinal (st, nd, rd, .). Choice...
me.opengroove.org
javawizard: PyParsing examples in Parcon
http://me.opengroove.org/2011/06/pyparsing-examples-in-parcon.html
PyParsing examples in Parcon. A lot of people at #python have encouraged me to port some of PyParsing's examples to Parcon, so I've decided to write up a blog post with some of those examples. Some of them parse the same input but produce output that's slightly different from what the corresponding PyParsing example produces; such differences are noted accordingly. Let's start with PyParsing's hello, world. From parcon import alpha word. Greet = alpha word "," alpha word "! Hello = "Hello, World! Print c...
equilibrator.weizmann.ac.il
About eQuilibrator
http://equilibrator.weizmann.ac.il/about
EQuilibrator is a simple web interface designed to enable easy thermodynamic analysis of biochemical systems. eQuilibrator enables free-text search for biochemical compounds and reactions and provides thermodynamic estimates for both in a variety of conditions. Estimation of thermodynamic parameters (Δ. G and Δ. G) elucidates how much energy is required to drive a particular biochemical reaction and in which direction the reaction will flow in particular cellular conditions [1-2]. Avi Flamholz, Elad Noor...
gurufaction.blogspot.com
Gurufaction: February 2008
http://gurufaction.blogspot.com/2008_02_01_archive.html
Tuesday, February 19, 2008. Generating PHP Value Objects with asDox. I am working hard on documentation for asDox. The project is still in Alpha but I wanted to focus on some example uses for asDox. I have just posted a new Wiki page titled Generating PHP Value Objects. This is a great example of the how asDox can make life easier when creating Flex applications that use RemoteObjects. asDox can also be used the generate the DAO and SQL Scripts for your value objects. Friday, February 15, 2008.
valuedlessons.com
Valued Lessons: April 2008
http://www.valuedlessons.com/2008_04_01_archive.html
I've learned. I'll share. April 28, 2008. I'm a huge fan of the Actor Model. I think that for most applications, it's the best way to do concurrency. As CPUs get more cores, concurrency becomes more important for programmers, and I think the Actor Model will become more important, too. A while ago, I wanted an event system like this for Python. I didn't see anything builtin or any library available, so I decided to write my own. I'd like to share what I created with you. The best implementation of events...
cmayes.wordpress.com
cmayes | Pedantic Arrogance
https://cmayes.wordpress.com/author/cmayes
Almost entirely about programming and/or Unix. Skip to primary content. Skip to secondary content. Python, Java, and ANTLR. January 6, 2013. I’ve been using Python for writing utility scripts for my wife’s molecular modeling research. In order to parse the pathologically terrible output of Gaussian 09. I’ve been using ANTLR. To do the parsing, writing text and. Files that Heather could use. I also added a. Output format for future use. To generate the output, I made a. Is still way behind on the ANTLR 3 ...