Not too long ago, I ran across David's blog(http://lispgamesdev.blogspot.com/), more specifically the post on using org-babel for Literate Programming (http://lispgamesdev.blogspot.com/2010/07/literate-programming-with-common-li...)
My first thought was "Oh man, I've gotta try this," and with a little time and frustration, I got org-babel working decently well. The game I'm working on right now is using org-babel, and I'm starting to like it, though there are still a few things that I want to change/add/mess with when I have time for it.
So I have an open question: Has anyone else used org-babel to write code with? What have been your experiences with it? (commentary, tips, tricks, additions you've made, etc. would be nice to hear :)
And to David directly: Are you still using org-babel since that last post?
- Tyler
My day job is pretty research heavy and I use org mode to organize all of my thoughts and TODO's and my notes from meetings. I occasionally use org-babel to code directly in my notes and to operate on tables that I've created in my notes. For me it's really been an effective tool.
On Tue, Mar 15, 2011 at 2:45 AM, Tyler Church roshan.church@gmail.comwrote:
Not too long ago, I ran across David's blog( http://lispgamesdev.blogspot.com/), more specifically the post on using org-babel for Literate Programming ( http://lispgamesdev.blogspot.com/2010/07/literate-programming-with-common-li... )
My first thought was "Oh man, I've gotta try this," and with a little time and frustration, I got org-babel working decently well. The game I'm working on right now is using org-babel, and I'm starting to like it, though there are still a few things that I want to change/add/mess with when I have time for it.
So I have an open question: Has anyone else used org-babel to write code with? What have been your experiences with it? (commentary, tips, tricks, additions you've made, etc. would be nice to hear :)
And to David directly: Are you still using org-babel since that last post?
- Tyler
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
I was very happy when I found out about org-babel. I've found it a lot easier to use than many of the other literate programming tools. One thing that found that was very useful was https://github.com/dto/org-babel-lisp it's a script that enables org-babel to tangling a code block and send it to the active SLIME session.
On Tue, Mar 15, 2011 at 7:41 AM, Brian Taylor el.wubo@gmail.com wrote:
My day job is pretty research heavy and I use org mode to organize all of my thoughts and TODO's and my notes from meetings. I occasionally use org-babel to code directly in my notes and to operate on tables that I've created in my notes. For me it's really been an effective tool.
On Tue, Mar 15, 2011 at 2:45 AM, Tyler Church roshan.church@gmail.comwrote:
Not too long ago, I ran across David's blog( http://lispgamesdev.blogspot.com/), more specifically the post on using org-babel for Literate Programming ( http://lispgamesdev.blogspot.com/2010/07/literate-programming-with-common-li... )
My first thought was "Oh man, I've gotta try this," and with a little time and frustration, I got org-babel working decently well. The game I'm working on right now is using org-babel, and I'm starting to like it, though there are still a few things that I want to change/add/mess with when I have time for it.
So I have an open question: Has anyone else used org-babel to write code with? What have been your experiences with it? (commentary, tips, tricks, additions you've made, etc. would be nice to hear :)
And to David directly: Are you still using org-babel since that last post?
- Tyler
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
Yeah, I had run across that too, extremely useful! :) Though a little bit of investigation turned this up: http://orgmode.org/w/?p=org-mode.git;a=blob;f=lisp/ob-lisp.el;h=f009e1818d72...
It seems that a version of dto's script has turned up in the recently released version 7.5 of org-mode. I've download v7.5, tested it, almost everything seems to work fine in Lisp world. One less hassle to deal with.
- Tyler
On Tue, Mar 15, 2011 at 6:24 AM, Robert Burghart jestersks@gmail.com wrote:
I was very happy when I found out about org-babel. I've found it a lot easier to use than many of the other literate programming tools. One thing that found that was very useful was https://github.com/dto/org-babel-lisp%C2%A0it%27s a script that enables org-babel to tangling a code block and send it to the active SLIME session.
On Tue, Mar 15, 2011 at 7:41 AM, Brian Taylor el.wubo@gmail.com wrote:
My day job is pretty research heavy and I use org mode to organize all of my thoughts and TODO's and my notes from meetings. I occasionally use org-babel to code directly in my notes and to operate on tables that I've created in my notes. For me it's really been an effective tool.
On Tue, Mar 15, 2011 at 2:45 AM, Tyler Church roshan.church@gmail.com wrote:
Not too long ago, I ran across David's blog(http://lispgamesdev.blogspot.com/), more specifically the post on using org-babel for Literate Programming
(http://lispgamesdev.blogspot.com/2010/07/literate-programming-with-common-li...)
My first thought was "Oh man, I've gotta try this," and with a little time and frustration, I got org-babel working decently well. The game I'm working on right now is using org-babel, and I'm starting to like it, though there are still a few things that I want to change/add/mess with when I have time for it.
So I have an open question: Has anyone else used org-babel to write code with? What have been your experiences with it? (commentary, tips, tricks, additions you've made, etc. would be nice to hear :)
And to David directly: Are you still using org-babel since that last post?
- Tyler
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
Good stuff! One less thing I'll have to setup.
On Wed, Mar 16, 2011 at 1:24 AM, Tyler Church roshan.church@gmail.comwrote:
Yeah, I had run across that too, extremely useful! :) Though a little bit of investigation turned this up:
http://orgmode.org/w/?p=org-mode.git;a=blob;f=lisp/ob-lisp.el;h=f009e1818d72...
It seems that a version of dto's script has turned up in the recently released version 7.5 of org-mode. I've download v7.5, tested it, almost everything seems to work fine in Lisp world. One less hassle to deal with.
- Tyler
On Tue, Mar 15, 2011 at 6:24 AM, Robert Burghart jestersks@gmail.com wrote:
I was very happy when I found out about org-babel. I've found it a lot easier to use than many of the other literate programming tools. One
thing
that found that was very useful was https://github.com/dto/org-babel-lisp it's a script that enables
org-babel
to tangling a code block and send it to the active SLIME session.
On Tue, Mar 15, 2011 at 7:41 AM, Brian Taylor el.wubo@gmail.com wrote:
My day job is pretty research heavy and I use org mode to organize all
of
my thoughts and TODO's and my notes from meetings. I occasionally use org-babel to code directly in my notes and to operate on tables that
I've
created in my notes. For me it's really been an effective tool.
On Tue, Mar 15, 2011 at 2:45 AM, Tyler Church roshan.church@gmail.com wrote:
Not too long ago, I ran across David's blog(http://lispgamesdev.blogspot.com/), more specifically the post on using org-babel for Literate Programming
(
http://lispgamesdev.blogspot.com/2010/07/literate-programming-with-common-li... )
My first thought was "Oh man, I've gotta try this," and with a little time and frustration, I got org-babel working decently well. The game I'm working on right now is using org-babel, and I'm starting to like it, though there are still a few things that I want to change/add/mess with when I have time for it.
So I have an open question: Has anyone else used org-babel to write
code
with? What have been your experiences with it? (commentary, tips,
tricks,
additions you've made, etc. would be nice to hear :)
And to David directly: Are you still using org-babel since that last post?
- Tyler
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev
lisp-game-dev mailing list lisp-game-dev@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/lisp-game-dev