I'm of the opinion that the way we interact with code is flawed. This author touched on it when discussing text dumps. I agree with the author that little time is spent modifying large modules of code (something NoFlow[1] is trying their hand at). However, I think these text dumps we work with should be organized differently. As it stands, we interact with code on a file-by-file basis. But any programmer knows that t…
> hello_world()
--------------------
def hello_world
puts "hello world!"
end
and so on. Basically the code bubbles concept but inline. Maybe it'll be possible to get LT to do something like this in the future...