| Moving Blog Host
|
|
10 Aug 08 |
|
[ print
link
all
] |
|
I am changing host for the One Step Back blog.
It’s Time to Move
This is just a quick little post to let you know that the One Step
Back blog is moving. In fact, it has already moved. But don’t worry,
we aren’t going far.
Originally this blog was hosted on a shared co-op system run by
N2Net. It was dirt cheap and easy to maintain.
The down side was that support was sporadic. As the hardware has aged,
the Co-op has decided to let the current system run until the hardware
dies, and then disolve the co-op.
Today there are tons more hosting opportunities available than there
were when the co-op was first formed. I’m now leasing a Linode
node and running the blog and other
associated software from there. Its almost as inexpensive and the
co-op and uptime should be better.
Write now the blog has been moved. As time passes I’ll move the
article archive as well. Let me know if anything looks amiss.
—Jim Weirich
comments
|
| How did you get started in software development.
|
|
08 Jun 08 |
|
[ print
link
all
] |
Tagged
Looks like Joe
O’Brien
tagged me for answers to the following questions. He, in turn, was
tagged by Josh Owens, who in turn was tagged
by Jeff Blankenburg. It
looks like Sarah Dutkiewicz and
Micheal
Eaton started this.
OK, sounds like fun. Here goes.
How old were you when you started programming?
I was introduced to programming in high school by reading a book on
the topic. The book taught me how to write machine code for a strange
decimal-based machine. Unfortunately, there was no actual computer
involved in the process. Shoot, who had computers back then? Certainly
not our high school (the personal computers? not invented yet!)
In college, I learned a smattering of FORTRAN. Just enough to drive a
Calcomp plotter to plot data from my undergraduate physics courses.
But didn’t really get into programming until my junior year in
college. (Story continued in next question)
How did you get started in programming?
So, I was planning out the courses for my junior year in college and I
had a hole in my math courses. The math class I needed was not offered
that semester, so my adviser suggested taking a computer programming
course. He said it would be useful and, who knows, I might enjoy it.
So I signed up for an introduction to FORTRAN course, figuring it
would be easy because I already knew a little bit of FORTRAN. I show
up on the first day of class and after a few preliminaries the
instructor jumps right into some code, that looked like this:
(de member (pip deck) (cond
((null deck) nil)
((eq pip (car deck)) t)
(t (member pip (cdr deck)))))
I remember scratching my head and thinking this was the strangest
FORTRAN I had ever seen. I was totally confused for about three days,
then something clicked on the third day of class. I suddenly
“got” what the instructor was trying to get across and it all
made perfect sense.
If you haven’t figured it out yet, the instructor taught us Lisp as
part of an introduction to FORTRAN. The instructor turned out to be
Daniel Friedman, the author of The Little
Lisper,
and was well known in the Lisp community. That small exposure to Lisp
hooked me on programming from that point on. I took as many CompSci
courses as I could in my remaining year and a half in college. I
eventually graudated with a BS in Physics, but had a strong background
in Computer Science as well.
What was your first language?
Technically, FORTRAN was my first language. But Lisp is the language I
fell in love with and is what got me hooked on programming.
What was the first real program you wrote?
I have a very clear memory of the very first program I wrote
professionally. The reason it is so clear is that this was the first
program I wrote that was intended for actual use by someone who wanted
it. Everything else up to that time was done for my own personal
enjoyment or to satisfy some course requirement.
The program calculated the “critical angles” of “pieces”. I was given
the requirements by Anne Exline, a senior programmer, and proceeded to
write the program to spec. It took a few days, but when I was done I
showed the result to Anne and she was pleased with the result.
The funny thing is that I had no idea what a “piece” was nor what was
so critical about the angles I was calculating. I was so excited about
writing an actual program that I did not ask until the software was
done. When asked, Anne just looked at me funny and said “Rocket
Pieces”. When Cape Canaveral lauches a rocket, they track it very
carefully to make sure it stays on course. If it strays, the range
safety officer is required to activate the self destruct. The critical
angles are those angles that would cause the “rocket pieces” to land
outside the safety area of the flight path.
So, my very first professional program was not only useful, it might
actually save lives.
What languages have you used since you started programming?
Languages I have used as part of my professional career (in roughly
chronological order) include FORTRAN, various assembly languages,
FORTH, C, PL/M, C++, Java, Ruby.
Languages I have used in addition to those mentioned above: Pascal,
Perl, Eiffel, and Lisp/Scheme.
Languages I can read, but never wrote anything significant in them:
Ada, Python, Erlang, Smalltalk, SNOBOL, Algol, Pascal.
What was your first professional programming gig?
I was hired by the RCA Missile Test project in Cape Canaveral, Florida
as a Near Real Time Analyst. Duties included programming various
launch related software (e.g. the critical angle program mentioned
above) and working launch support.
The launch support was the “Near Real Time” part of the job
description. From the moment a rocket is launched until it reaches
orbital velocity, any malfunction could cause it to fall back to
earth. During this initial portion of the launch, the launch is
monitored in “real-time” so that we know exactly where it would land
if the engines were to cut off NOW. Trajectory calculations had to be
done in fractions of a second and updated constantly in real time.
After the rocket reaches oribital velocity (usually somewhere between
8 and 14 minutes into its flight), it won’t fall back to earth. At
this point the real time trajectory program is shut down and the near
real time program is started. The near real time program can take a
few minutes to calculate a more exact orbital prediction and then send
that prediction to downrange radars (e.g. the the Ascension
Island station) that
won’t see the rocket until about 20 minutes after launch. It was the
job of the Near Real Time analyst to run that program and provide
oribital predictions for downrange station.
If there is one thing you learned along the way that you would tell new developers, what would it be?
Find something that you enjoy and do that. Life is too short to work
in a job that you dislike.
What’s the most fun you’ve ever had … programming?
Oh, the fun I have had. This story still makes me smile.
My first computer was a single board Z80 microcomputer with 4 KB of
memory. I wrote a small FORTH-like interpreter for it and hacked a
version of the animal game in FORTH. The animal game is a program that
plays 20 questions to figure out what animal you are thinking of. It
constructs a binary tree where each node is a question and the
subtrees are the yes and no answers to the question. To play the game,
all the program does is walk the tree, ask the question at the current
node and follow either the YES branch or the NO branch as appropriate.
If the program guesses wrong, it will ask you for your animal and a
question that will distinguish your animal from the one it guessed. It
then adds your question to the tree. By this extremely simple
mechanism, it is able to expand its knowledge base. (see Ruby Quiz
#15 for more details).
I had just finished the program and had seeded it with a single
animal, a mouse. I turned to my wife and asked her to play the game.
She thinks of an animal and starts the program, which immediately
asked her “Is it a mouse?”. She turned to me with surprise and said
“How did it know?”. Of course, the animal she picked was a mouse.
I don’t think I have ever impressed anyone with my programming skills
as much as she was impressed with that game.
Who’s up next?
I’m tagging the following people. Remember, this is entirely
voluntary so don’t feel obligated to answer. But I’m betting the
answers are interesting:
comments
|
| Rails Conf 2008 Summary
|
|
03 Jun 08 |
|
[ print
link
all
] |
Conference Summary Video
Wow, what a great conference! There was a lot of energy flowing at
RailsConf this year. Overall I’d rate this year as head and shoulders
above last year. I’m not going cover much here, but will direct you
attention to a Rails Envy
VideoCase that
Greg Pollack put together. The video is a series of very short
interviews with a number of presenters giving summaries of their own
talks. The only downside with the video is that I wish it was
available before the conference. I see there were a number of
interesting talks that I missed.
Followup on the “Modelling Dialogue”
Joe O’Brien, Chris Nelson and myself did a dialogue style presentation
on the difference between object modelling and data modelling. The
most common question I got after the talk was requests for book titles
to learn more about object oriented modelling. Here are the books
that Joe, Chris and I have recommended:
comments
|
| Artichoke Music Rocks
|
|
01 Jun 08 |
|
[ print
link
all
] |
|

The Musician’s Birds of a Feather gathering at RailsConf was great. We
had a room full people, two guitars, a ukulele, a flute, several
harmonicas and an improvised drum set. Unfortunately, one of the
guitars was an electric travel guitar which had a dead battery,
therefore no way to really hear it.
However, the other guitar was a nice Epiphone accoustic which was
passed from player to player. It became the quickly became the basis
for most of the music performed that night.
I want to thank Artichoke Community
Music for supplying the
guitar. Travelling with a guitar by plane is a big pain, so I arrived
with nothing to bring to the music BOF. I called several local music
stores looking for a guitar that I could rent for an evening.
Artichoke music said they had a “not-for-profit” guitar that they
would let me borrow for a day. Not many stores would do that for an
out-of-town stranger.
So, if you’re in Portland looking for a good guitar store, check out
the great people at Artichoke Community
Music.
comments
|
| Test Driven Studio in June 2008
|
|
15 May 08 |
|
[ print
link
all
] |
|
Joe O’Brien and I will be leading another Test Driven
Studio in Denver, June 9-11.

Testing, Colorado, June … What’s not to like?
About 8 years ago I come upon a technique that radically changed the
way I developed code. I was reading Martin Fowler’s “Refactoring”
book and came across this paragraph:
“Whenever I do refactoring, the first step is always the
same. I need to build a solid set of tests for that section of code.
The test are essential because even though I follow refactorings
structured to avoid most of the opportunities for introducing bugs,
I’m still human and still make mistakes. Thus I need solid
tests.” —Martin Fowler
Chapter 4 of “Refactoring” was my first introduction to JUnit and got
me interested in “Test First Design” (what we now tend to call “Test
Driven Development”). Although I wrote good code before, the
confidence I had in my code took a dramatic leap forward after I
started adopting TDD practices.
On June 9 through 11, Joe O’Brien and I will have
the pleasure of leading the next Pragmatic Programmer’s Test-Driven
Development with Rails
Studio. in Denver. We will
have an opportunity to share with you some of our experiences in using
TDD with Ruby and Rails.
There are still seats available, so its not too late to sign up. More
information is available
here.
comments
|
| Lisp in Ruby
|
|
14 Apr 08 |
|
[ print
link
all
] |
|
I stumbled across this and it got me thinking …
Update
I’ve updated the Textile formatter on the site and the code
for this entry is now displaying correctly. The previous version was
swalling the == operators in the code.
Lisp 1.5 Programmer’s Manual
I stumbled across this in
Bill Clementson’s blog and remembered using the Lisp 1.5 Prgrammers
manual from the college years. I have strong memories of pouring over
that particular page in the manual and attempting to understand all
the nuances.
If you’ve never read the Lisp 1.5 Programamers Manual, page 13 is
the guts of a Lisp Interpreter, the “eval” and “apply” functions. It
is written in Lisp, although the notation used is a bit funky. The
entire interpreter (minus two utility functions) is presented on a
single page of the book. Talk about a concise language definition!
In Ruby?
I had often thought about implementing a Lisp interpreter, but back in
the “old days”, the thought of implementing garbage collection and the
whole runtime thing was a bit daunting. This was in the day before C,
so my implementation language would have been assembler … yech.
But as I was reviewing the page, I realized that with today’s modern
languages, I could problably just convert the funky M-Expressions used
on page 13 directly into code. So … why not?
The Code
Here is the complete Ruby source code for the Lisp interpreter from
page 13 of the Lisp Programmers manual:
# Kernel Extensions to support Lisp
class Object
def lisp_string
to_s
end
end
class NilClass
def lisp_string
"nil"
end
end
class Array
# Convert an Array into an S-expression (i.e. linked list).
# Subarrays are converted as well.
def sexp
result = nil
reverse.each do |item|
item = item.sexp if item.respond_to?(:sexp)
result = cons(item, result)
end
result
end
end
# The Basic Lisp Cons cell data structures. Cons cells consist of a
# head and a tail.
class Cons
attr_reader :head, :tail
def initialize(head, tail)
@head, @tail = head, tail
end
def ==(other)
return false unless other.class == Cons
return true if self.object_id == other.object_id
return car(self) == car(other) && cdr(self) == cdr(other)
end
# Convert the lisp expression to a string.
def lisp_string
e = self
result = "("
while e
if e.class != Cons
result << ". " << e.lisp_string
e = nil
else
result << car(e).lisp_string
e = cdr(e)
result << " " if e
end
end
result << ")"
result
end
end
# Lisp Primitive Functions.
# It is an atom if it is not a cons cell.
def atom?(a)
a.class != Cons
end
# Get the head of a list.
def car(e)
e.head
end
# Get the tail of a list.
def cdr(e)
e.tail
end
# Construct a new list from a head and a tail.
def cons(h,t)
Cons.new(h,t)
end
# Here is the guts of the Lisp interpreter. Apply and eval work
# together to interpret the S-expression. These definitions are taken
# directly from page 13 of the Lisp 1.5 Programmer's Manual.
def apply(fn, x, a)
if atom?(fn)
case fn
when :car then caar(x)
when :cdr then cdar(x)
when :cons then cons(car(x), cadr(x))
when :atom then atom?(car(x))
when :eq then car(x) == cadr(x)
else
apply(eval(fn,a), x, a)
end
elsif car(fn) == :lambda
eval(caddr(fn), pairlis(cadr(fn), x, a))
elsif car(fn) == :label
apply(caddr(fn), x, cons(cons(cadr(fn), caddr(fn)), a))
end
end
def eval(e,a)
if atom?(e)
cdr(assoc(e,a))
elsif atom?(car(e))
if car(e) == :quote
cadr(e)
elsif car(e) == :cond
evcon(cdr(e),a)
else
apply(car(e), evlis(cdr(e), a), a)
end
else
apply(car(e), evlis(cdr(e), a), a)
end
end
# And now some utility functions used by apply and eval. These are
# also given in the Lisp 1.5 Programmer's Manual.
def evcon(c,a)
if eval(caar(c), a)
eval(cadar(c), a)
else
evcon(cdr(c), a)
end
end
def evlis(m, a)
if m.nil?
nil
else
cons(eval(car(m),a), evlis(cdr(m), a))
end
end
def assoc(a, e)
if e.nil?
fail "#{a.inspect} not bound"
elsif a == caar(e)
car(e)
else
assoc(a, cdr(e))
end
end
def pairlis(vars, vals, a)
while vars && vals
a = cons(cons(car(vars), car(vals)), a)
vars = cdr(vars)
vals = cdr(vals)
end
a
end
# Handy lisp utility functions built on car and cdr.
def caar(e)
car(car(e))
end
def cadr(e)
car(cdr(e))
end
def caddr(e)
car(cdr(cdr(e)))
end
def cdar(e)
cdr(car(e))
end
def cadar(e)
car(cdr(car(e)))
end
An Example
And to prove it, here’s an example program using Lisp. I didn’t
bother to write a Lisp parser, so I need to express the lists in
standard Ruby Array notation (which is converted to a linked list via
the “sexp” method).
Here’s the ruby program using the lisp interpreter. The Lisp system
is very primitive. The only way to define the function needed is to
put them in the environment structure, which is simply an association
list of keys and values.
require 'lisp'
# Create an environment where the reverse, rev_shift and null
# functions are bound to an appropriate identifier.
env = [
cons(:rev_shift,
[:lambda, [:list, :result],
[:cond,
[[:null, :list], :result],
[:t, [:rev_shift, [:cdr, :list],
[:cons, [:car, :list], :result]]]]].sexp),
cons(:reverse,
[:lambda, [:list], [:rev_shift, :list, nil]].sexp),
cons(:null, [:lambda, [:e], [:eq, :e, nil]].sexp),
cons(:t, true),
cons(nil, nil)
].sexp
# Evaluate an S-Expression and print the result
exp = [:reverse, [:quote, [:a, :b, :c, :d, :e]]].sexp
puts "EVAL: #{exp.lisp_string}"
puts " => #{eval(exp,env).lisp_string}"
The program will print:
$ ruby reverse.rb
EVAL: (reverse (quote (a b c d e)))
=> (e d c b a)
All I need to do is write a Lisp parser and a REPL, and I’m in business!
The Example in Standard Lisp Notation
If you found the Ruby-ized Lisp code hard to read, here is the reverse
funtions written in a more Lisp-like manner.
(defun reverse (list)
(rev-shift list nil))
(defun rev-shift (list result)
(cond ((null list) result)
(t (rev-shift (cdr list) (cons (car list) result))) ))
comments
|
| Presenting Code ... An Update
|
|
24 Mar 08 |
|
[ print
link
all
] |
|
I received some feedback on the ‘Presenting Code’ post from
yesterday.
Presenting Code … An Update
I got lots of feedback on the “Presenting Code” post. In addition to
Cédric Beust’s initial comments, the
following people had something to say on the topic:
John Wilger asked on Twitter why I didn’t use
“file:” (rather than “http:” and a local web server). Unfortunately,
Keynote will not do a web view from a “file:” style URL.
Luke Kanies reports that he does something
similar. He uses Vim (rather than Ruby + the Syntax gem) to generate
the highlighted HTML. He also adds:
In general, this method works out great, but the one thing I
would say is that you should always uncheck “automatic update”.
Otherwise, you’ll find that it tries to update 10 seconds before your
presentation starts and your web server isn’t available.
Ok, that’s good advice. BTW, I would be very interested in a script
(AppleScript or Ruby+OSA) that would iterate over the pages in a
Keynote presentation and refresh all the WebViews. Any takers?
James Edward Gray II and Mike
Clark mentioned the HTML output bundle.
James gives the following details:
- Select Bundles → TextMate → Create HTML From Document (or Create HTML From Document With Line Numbers, if you prefer)
- Preview the document in TextMate with Window ⇢ Show Web Preview
- Highlight and Edit → Copy the content you want from the HTML window
- Switch to Keynote and Edit → Paste
Mike (who credits Bruce Williams as his
source for this tip) also provided a
video.
Couple of items on the above:
- When creating the HTML from the document, convert the whole
document. Once in Web Preview mode you can cut and paste only what
you want.
- Choose a TextMate theme with a background that matches the
background in your presenetation to get the best effect for your
colors.
Dr. Nic also mentions a “Copy as RTF”
TextMate bundle. (I’m not sure if this is the same as James and
Mike’s hint above or something different).
Finally, Chris Nelson confirms
(via Twitter): “AFAIK there is no equivalent of web views in
OpenOffice :(“
comments
|
| Presenting Code
|
|
23 Mar 08 |
|
[ print
link
all
] |
|
This exchange on twitter got me thinking…
Twittering …
I noticed the following twitter conversation this evening between
objo and superchris:
superchris: any good recommendations on showing code samples in OpenOffice Impress?
objo: @superchris yeah, get a mac and use Keynote
objo: otherwise, I would screenshot emacs
superchris: @objo.. ya know, i almost added “And I’ll smack anyone who says get a Mac” but ran out of space
superchris: @objo… but actually your idea of using NetBeans screenshots is pretty good
objo: @superchris you never listen …. EMACS not netbeans. Come on man.
superchris: @objo just being helpful by translating for you.. :)
superchris: planning to code with NetBeans on linux
forever for no other reason but to annoy @objo
ScreenShots … Yuck!
The problem Chris is trying to solve is putting code snippets into a
presentation. There just isn’t a good way to do this in modern
presentation programs.
In the old days, I would generate my presentation completely in HTML
from a simple text markup file. The generation process was controlled
by rake. This allowed me to changed the code, run the unit tests and
rebuild the presentation all with a simple rake command. Eventually,
I got up to speed with CSS and could make some really nice looking
presentations, all from HTML.
Although I could get nice looking slides with CSS, it was a lot of
work getting it to work just so. Eventually, I abandoned that
approach and swithed to a modern slide presentation program (Keynote
in my case).
Although generating the slides is a bit easier in Keynote (or
PowerPoint, or Open Office Impress), reproducing code for technical
talks is much harder. You generally have two choices:
- Cut and paste the code text into Keynote losing any syntax
highlighting you might have had, or
- Take a screen shot of the code in your fancy editor, preserving the
syntax highlighting but losing the “text” nature of the code.
Neither option is pleasant. The former punishes the audience by
making the code harder to read, the latter punishes you making the
presentation hard to change. (I once saw Dave Thomas giving a Ruby
talk and he noticed that he had a minor typo in the code. He switched
to edit mode in Keynote with the intent of fixing it on the spot, then
he realized that the code was in a graphic image and was uneditable).
Of the two options, I’ve been using the text cut’n’paste technique for
most things. In the twitter conversation above, Chris is considering
the edit snapshot technique.
Other Options?
I’ve heard rumors of someone working on a script that will insert code
snippets into the Keynote data file directly. Unfortunately, as far
as I know, they are still rumors at this time.
But here’s another idea. I’ve prototyped this, and think it will
work. But be warned I haven’t tried this on a really presentation
yet.
Presenting Code … A Proof of Concept
While perusing the options in Keynote, I noticed an insert option called “Web View”

It turns out that this option allows you to include a web page in your
presentation. For example, here is my blog inserted directly into the
presentation. Clicking on the “web view” object will show an “update”
button that will refresh that page from the web.

So, all I have to do is get the code onto a web page, formatted nicely
with syntax highlighting, and Keynote will suck it into the
presentation, more or less automatically for me. Cool.
Getting it formatted is easy. That’s just a small little Rake task
with a good syntax highlighting library. I used Syntax (its a gem,
docs on Rubyforge), but there are other options out there.
Here’s the rakefile:
#!/usr/bin/env ruby
require "rake/clean"
CLOBBER.include('*.html')
task :default => :extract
task :extract => "hello.html"
file "hello.html" => "hello.rb" do
extract "hello.html", "hello.rb"
end
and here is the rakelib/extract.rake library:
#!/usr/bin/env ruby
require 'syntax/convertors/html'
def extract(outfile, infile)
open(outfile, "w") do |out|
out.puts "<html>"
out.puts " <head>"
out.puts " <style type=\"text/css\">"
out.puts %(
.ruby { font-size: 24pt; font-weight: bold; }
.ruby .normal {}
.ruby .comment { color: #888; font-style: italic; }
.ruby .keyword { color: #A00; font-weight: bold; }
.ruby .method { color: #077; }
.ruby .class { color: #074; }
.ruby .module { color: #050; }
.ruby .punct { color: #447; font-weight: bold; }
.ruby .symbol { color: #099; }
.ruby .string { color: #944; }
.ruby .char { color: #F07; }
.ruby .ident { color: #004; }
.ruby .constant { color: #07F; }
.ruby .regex { color: #B66; }
.ruby .number { color: #D55; }
.ruby .attribute { color: #377; }
.ruby .global { color: #3B7; }
.ruby .expr { color: #227; })
out.puts " </style>"
out.puts " </head>"
out.puts " <body>"
out.puts " <pre class=\"ruby\">"
code = open(infile) { |f| f.read }
convertor = Syntax::Convertors::HTML.for_syntax("ruby")
html = convertor.convert(code)
out.puts html
out.puts " </pre>"
out.puts " </body>"
out.puts "</html>"
end
end
Edit the CSS styles above to tweek the output to exactly the colors
you want. I’ve added a large font-size line to make the code big
enough for teh presentation (I hate small code fonts in presentations,
you can ask objo about my rants on that
topic.)
Now we need to get the code on a web page. No need to get fancy here.
I have a script called servefiles that will start a webrick process
that serves files from the current directory. Just start it up with
“servefiles 3333” (the 3333 is the port to use). Servefiles will
display its URL in its startup message, like so:
$ servefiles 3333
URL: http://tardis.local:3333
[2008-03-23 00:47:37] INFO WEBrick 1.3.1
[2008-03-23 00:47:37] INFO ruby 1.8.6 (2008-03-03) [i686-darwin9.2.0]
[2008-03-23 00:47:37] INFO WEBrick::HTTPServer#start: pid=874 port=3333
Here’s the code for servefiles:
#!/usr/bin/env ruby
require 'webrick'
include WEBrick
dir = Dir::pwd
port = (ARGV.first || (12000 + (dir.hash % 1000))).to_i
puts "URL: http://#{Socket.gethostname}:#{port}"
s = HTTPServer.new(
:Port => port,
:DocumentRoot => dir
)
trap("INT"){ s.shutdown }
s.start
Now all we have to do is cut and paste the URL given by servefiles
into keynote and append the HTML file name we wish to add to our
presentation:

Now, to update the code in the presentation, I need to:
- Edit the original code base (and run unit tests against it).
- Run rake
- Press the “Update Now” button in Keynote.
Not bad.
It’s Just a Proof of Concept
Just be warned, I haven’t tried this in a real presentation yet. I’ve
just spent an hour or so seeing if all the pieces would work together.
There are some obvious things to explore.
- The extraction code could be enhanced to pull snippets from files
based on tags. Or even better, being able to say “Extract Method m
from Class C”.
- I’m using a fixed font size, but extract could easily take the font
size as an argument or even calculate the proper font size given the
amount of text found in the snippet.
- I’ve not played with the “Update automatically” checkbox in the
Keynote dialog. I’m not sure when it automatically updates, but
it is possible that using it might mean you don’t even need step
three above.
I will probably experiment some more with then in my next code heavy
presentation. Let me know if you try this and how it work for you.
UPDATE
Cédric Beust points out that cutting and
pasting from Eclipse to PowerPoint does preserve syntax highlighting.
I verified the same is true for Eclipse and Keynote. However all the
other IDEs and editors I tried (NetBeans, Coda, TextMate, Emacs) will
paste as plain, uncolored text in Keynote. So, if you are going the
cut and paste route, you might want to consider using Eclipse for the
cut source.
Just for kicks I tried the presentation software in OpenOffice with
the same result. Eclipse copies will preserve highlighting, none of
the others will.
So, there you have it.
comments
|
| New Blog Name
|
|
10 Mar 08 |
|
[ print
link
all
] |
|
Ryan Tomayko has pointed out, my blog title does not conform to standard Ruby coding conventions. We need to fix this.
Ryan Tomayko has done a review of blogs using
code snippets as
there title and has pointed out that mine does not conform to
generally accepted Ruby coding standards. You see, in
“{ | one, step, back | }” I use spaces
between the vertical bars and the argument names. Proper Ruby code
would never be written that way.
He’s right. So in order to promote better Ruby coding practices, I’m
renaming the blog to “{ |one, step, back| }”.
Let it never be said that I ignore standards.
An aside: The use of {||} in the title was inspired by a
Smalltalk logo that used [|]. See the powered by banner at the bottom
of the sidebar in James Robertson’s
blog for an example.
comments
|
| On my wall ...
|
|
22 Feb 08 |
|
[ print
link
all
] |
|

(from here)
comments
|
|
|