Comments on editors and IDEs, as I think of them...
- vim
- NetBeans, Netbeans Ruby IDE, Netbeans Erlang IDE
- jedit
- emacs
- UltraEdit
Comments on editors and IDEs, as I think of them...
Most instructions on the net seem to assume that you are using the Windows binary of Erlang. I didn't go that route, because dealing with the mix of Windows paths and UNIX paths just bums me out. Everything below is done via a Cygwin bash prompt.
Rollback -- try again after deleting all YAWS and Erlang from Cygwin
<table border="0"><tbody><tr><td> <pre>case uname
in</pre><pre> CYGWIN*)</pre><pre> yawsdir="L:\\cygwin\\lib\\yaws\\"</pre><pre> werl="/cygdrive/k/erlang/bin/werl"</pre><pre> delim=\;;</pre><pre> *)</pre><pre> delim=/</pre><pre>esac </pre><p> </p></td></tr></tbody></table><p>
So my final bash command-line looks like this:</p><p>yaws -i –conf L:\\cygwin\\etc\\yaws.conf </p>
I'm installing XUbuntu 7 as a 'hypervisor' on my desktop pc.
Download vmware player tar format
Good wiki book at http://en.wikibooks.org/wiki/Haskell
let a = 3
b = 2
in (blahblahblah,
bleebleeblee)
All computer languages stink. Some stink less than others.
It is a predictable pattern:
I think I have reasonable expectations. A language (and/or its development environment) should be able to:
What I don't like about:
C:\work\rb\test>sqlite db\test.db
SQLite version 2.8.16
Enter ".help" for instructions
sqlite> create table articles
...> (id integer primary key,
...> title varchar(255),
...> text varchar(1024)
...> );
sqlite> .quit
(or create table articles (id integer primary key, title varchar(255), text varchar(1024) );
C:\work\rb\test>dir db
Volume in drive C has no label.
Directory of C:\work\rb\test\db
14.04.2005 14:14 4 096 test.db
1 File(s) 4 096 bytes
C:\work\rb\test>
Punch architecture software is a lot like democracy - it is the worst alternative, except for all the others we've tried to date.
Here's how I created a house plan with Punch AS 4000 Version 10.
There are seven practices that we've found work well for individuals and teams running CI on a project.
<ul><li> <p>Commit code frequently</p> </li><li> <p>Don't commit broken code</p> </li><li> <p>Fix broken builds immediately</p> </li><li> <p>Write automated developer tests</p> </li><li> <p>All tests and inspections must pass</p> </li><li> <p>Run private builds</p> </li><li> <p>Avoid getting broken code</p></li></ul><em>From http://www.javaworld.com/javaworld/jw-06-2007/jw-06-awci.html?page=3</em>