Tagged Questions
The literate-programming tag has no wiki summary.
20
votes
8answers
1k views
Is literate programming dead?
A fair bit is written about literate programming, but I've yet to see any project that uses it in any capacity, nor have I seen it used to teach programming. My sample may small, so I'm looking for ...
16
votes
7answers
903 views
Sweave for python
I've recently started using Sweave* for creating reports of analyses run with R, and am now looking to do the same with my python scripts.
I've found references to embedding python in Sweave docs, ...
15
votes
7answers
599 views
Scaling Literate Programming?
Greetings.
I have been looking at Literate Programming a bit now, and I do like the idea behind it: you basically write a little paper about your code and write down as much of the design decisions, ...
13
votes
1answer
358 views
Literate Haskell: References And Indexing
Does Literate Haskell support indexing function names, typeclasses and variable references? Is there a filter I can run on Literate Haskell source that will do this and give me either a nice PDF ...
12
votes
3answers
712 views
State of the Art for Clojure Documentation Tools
Over the last year or so I've seen various announcements on the Clojure discussion list and other places about tools for documenting Clojure code. These range from full-on literate programming systems ...
12
votes
6answers
611 views
“The C Programming Language” interesting quote in the preface
From the preface of the second edition of Kernighan and Ritchie's "The C Programming Language":
As before, all examples have been tested directly from the text, which is in machine-readable form.
...
11
votes
1answer
1k views
Literate Haskell (.lhs) and Haddock
At the moment I'm only using Haddock but after seeing some really interesting examples (e.g. this gist ) of literate Haskell I'm interested in trying it out in a project.
The questions I got are:
...
10
votes
8answers
794 views
Literate Coding Vs. std::pair, solutions?
As most programmers I admire and try to follow the principles of Literate programming, but in C++ I routinely find myself using std::pair, for a gazillion common tasks. But std::pair is, IMHO, a vile ...
8
votes
1answer
315 views
Literate Programming using org-babel
I am on a literate program using org-babel. My source is structured like so,
-imports
-utility fns
-game structure
- detailed explanations
This is the normal structure of the code, what I would ...
8
votes
3answers
821 views
sweave and ggplot2: no pdfs generated at all
i am trying create a sweave report that contains some graphics done with ggplot2. Though I am looking for some environment for the long run – I just use a simple .Rnw file here that only contains the ...
8
votes
3answers
2k views
What's the best way to do literate programming in Python on Windows?
I've been playing with various ways of doing literate programming in Python. I like noweb, but I have two main problems with it: first, it is hard to build on Windows, where I spend about half my ...
7
votes
3answers
209 views
What is legal Literate Haskell? Formal Syntax somewhere?
Someone had a great idea of combining Literate Haskell and Markdown. Made sense to me, so I wanted to try it. But there is something Haskell doesn't like about the Markdown '#' header syntax:
Hello ...
7
votes
2answers
165 views
Interesting / well written unit tests to read (literate programming)
Do you know any open software projects that had particularly interesting / well written unit tests ?
Writing unit tests often feels odd to me, because it seems either too random, too dense, to ...
7
votes
7answers
305 views
Use of Vertical Whitespace
My intention in this question is not to be pedantic, but rather to explore an overlooked axis of an important topic (the use of whitespace).
Much debate and care has been put into the use of ...
7
votes
9answers
914 views
Literate programming
Literate programming is a way of developing software where documentation comes first, then the coding. One writes the documentation of a code snippet, and then writes the implementation of the ...
6
votes
3answers
382 views
How do I Sweave a multiple-file project?
I am writing my thesis in LaTeX and because things got a bit long for my taste, I had split it into several files. Let's call them thesis.tex, intro.tex, mat_n_met.tex, rslts.tex and discsn.tex. I ...
6
votes
5answers
4k views
How do PStricks and TikZ compare for ease of learning and for quality of API design?
My group uses Literate Programming for most of our source code---this means that internal documentation is written using LaTeX. We have been using PStricks for fancy technical diagrams of the system, ...
5
votes
2answers
536 views
Has anyone tried literate programming for C#, with Lyx and noweb
I came across this blog post yesterday, and it once again made me want to give literate programming a try.
Has anyone else tried doing literate programming for C#? I'm wondering about trying Lyx + ...
5
votes
2answers
357 views
Minimal noweb example with cross referencing
I'm trying to find a good literate programming tool. Let's just say it's not an easy decision. (The generic ones are too generic and the specific ones are too specific :) )
Among others, I've got ...
5
votes
8answers
269 views
How to manage special cases and heuristics
I often have code based on a specific well defined algorithm. This gets well commented and seems proper. For most data sets, the algorithm works great.
But then the edge cases, the special cases, ...
5
votes
8answers
749 views
Help on a better way to parses digits from a String in Java
I have a string which contains digits and letters. I wish to split the string into contiguous chunks of digits and contiguous chunks of letters.
Consider the String "34A312O5M444123A".
I would like ...
4
votes
1answer
391 views
LHS and Markdown: Codeblocks
I happen to really like Markdown (probably because of SO) and I like programming in Haskell. I have recently discovered Literate Haskell (LHS) and I want to use Markdown and LHS together. Let me give ...
4
votes
2answers
202 views
What's the best way to read code in CWEB format in Windows?
Donald Knuth has a large number of programs to read on his page. But they are mostly in a "strange" CWEB format...
What could be the best way to make them appropriately readable in Windows?
3
votes
1answer
182 views
How to escape % in roxygen literate programming?
The default value of a parameter of my function contains a "%". This seems to be a problem for roxygen, it produces a lot of warnings and R CMD check fails when trying to build latex documentation.
...
3
votes
2answers
704 views
R code in Sweave
I have a scientific paper under review, and a referee asked for my R code to be provided as a Sweave document. I've never heard of Sweave before, do you know what's the better way to do it?
Thanks a ...
3
votes
2answers
473 views
Intuitive motivation for Literate Programming?
So, I used the scribble/lp module to write my first literate program using plt-scheme:
#lang scribble/lp
(require scribble/lp)
<<lp_scheme.ss>>
@chunk[<squarefunction>
...
2
votes
3answers
190 views
Infuriating Tab problem in Vim, in literate Haskell
I am using "Bird" style literate haskell, which requires all code to be like the following:
> module Main (main) where
and if I have a block it should look something like this:
> main = do
...
2
votes
1answer
253 views
“$” symbol in a code chunk of noweb (literate programming) file
I have following javascript code inside a code chunk of a noweb (i.e., .nw) file:
<<tooltip>>=
$("span").tooltip({
tip: 'tooltip',
predelay: 30,
delay: 3000,
onShow: function(){}
...
2
votes
1answer
218 views
Wysywig literate programming (or viewing generated documentation on-the-fly)
I use a lot of illustrations, diagrams and equations to document C++ and python codes, and a way to do this is to inline them with doxygen. The problem is that, when coding, they are not directly ...
2
votes
2answers
219 views
Where can I find the graph of TeX's error log?
In Donald Knuth's Literate Programming, there was if I remember correctly a graph showing the evolution of TeX's number of bugs over time. This graph has remained flat for the past decade or so, ...
1
vote
2answers
58 views
Can Pweave play nice with Ruffus?
I am interested in developing self-documenting pipelines.
Can I wrap Ruffus tasks in Pweave chunks?
Pweave and Ruffus
==============================================================
**Let's see if ...
1
vote
0answers
32 views
How do I make a spreadsheet with named column references that anyone can use?
i would like to make a spreadsheet that:
(a) has named column references in its formulas rather than referring to cell locations, for example, if there are three columns:
month revenue cost profit
...
1
vote
1answer
222 views
Customizing Literate Haskell + LaTeX mode
I'm having a hard time forcing literate-haskell-mode to produce PDFlatex output by default. When I use C-c C-t C-f it just parses the lhs file with latex binary producing dvi. I know I can always use ...
1
vote
1answer
54 views
ctwill - mini indexes for cweb
where can i download ctwill? The ftp.cs.stanford.edu/pub/ctwill/ site doesn't work for me, either is ftp://labrea.stanford.edu/pub/ctwill/.
Thanks,
Raoul
1
vote
2answers
432 views
Using noweb on a large Java project
Has anyone used the noweb literate programming tool on a large Java project, where several source code files must be generated in different subdirectories? How did you manage this with noweb? Are ...
0
votes
1answer
11 views
Can noweb create traversable links in latex like it does in HTML?
When you generate html documents with noweb each chunk of code can be clicked when referenced elsewhere and you can jump to this definition but I'm not able to get the same functionality with the ...
0
votes
1answer
25 views
Macro in Literate programming
I found that some tool such as Noweb doesn't support macro.
I want to know what are the advantages and disadvantages of macro in literate programming?
0
votes
1answer
90 views
Is there a way to customize output of Doxygen index.html (and latex equivalent)?
I am interested in writing an "introduction" on the index.html page, rather than have blank space. Is this a feature supported by the Doxygen tool, or must I put together a hack?
0
votes
1answer
60 views
Literate programming: tool to extract and run a script from source in one pass?
I just started reading about literate programming and noweb - and I find it quite interesting. As far as I understand it, the 'notangle' step is the one that extracts (machine) source code (file), ...
0
votes
1answer
147 views
Feature request for a text-editor with support for literate programming [closed]
This is a feature request for the writers of Visual Studio and any other programmer's editor.
Consider a literate program as follows:
/* File Name: LiterateProgram.h */ // \begin{comment}
#pragma ...