search
archives
- February 2011 (1)
- August 2010 (2)
- January 2010 (5)
- September 2009 (1)
meta
Author Archives: Evan Gates
Jevolution
Been working on a Java app to explore evolving systems. Links: Jevolution writeup applet page Jevolution source on github
remember to test bash aliases
My linux vm reminded me of the importance of testing bash aliases before adding them to the .bash_aliases file. This was the mistake: alias local=’git checkout local’ The next time I opened a terminal, I received this wonderful message: bash: … Continue reading
you can escape spaces when using ruby’s %w operator
Discovered something cool about ruby’s %w operator the other day. You can escape spaces in it. %w{there will be four\ elements} evaluates to: [‘there’, ‘will’, ‘be’, ‘four elements’] Just a little neat tidbit I haven’t seen in any examples.
Access modifiers in C#
Had some confusion with NHibernate and its proxy generation. It couldn’t create proxies for an item with an internal property. It told me to mark the property as protected internal. Turned out my understanding of protected internal was wrong. These … Continue reading
Posted in uncategorized
Tagged access, c#, internal, private, protected, protected internal, public
Leave a comment
RName: a grammar file based name generator
I’ve wanted a name generator a couple times recently. The name generator I want consists of a grammar file for generating names within that grammar. The ultimate use for this will be in games. I want to be able come … Continue reading
Grot: a db4o manager in WPF
I posted yesterday about wanting a manager for db4o. The one currently offered by Versant (the company in charge of db4o) is not usable. It exists solely as a plug-in for Visual Studio. I could overcome this, but the plug-in … Continue reading
Roadmap
Brad and I have been using db4o on a project for a while now, and I have some problems with it: There isn’t a usable manager for it. The plug-in for Visual Studio isn’t usable. There is no built in … Continue reading
Posted in db4o
Leave a comment