meagleblog.blogspot.com
belongs_to :meagle: September 2008
http://meagleblog.blogspot.com/2008_09_01_archive.html
Working harder to simplify software development. Monday, September 8, 2008. Generating GORM Domain Classes. Varible so it has the right database connection information. Also, modify the. Hash so you can control which domain classes to generate based on a [tableName:className] structure. NewInstance( jdbc:mysql:/ localhost:3306/pts development. Tables hash format = table : className. Tables = [ 'PTS REG DTL'. Tables.each { table, className -. Query = select * from ${table}. Class ${className} { n.
meagleblog.blogspot.com
belongs_to :meagle: January 2009
http://meagleblog.blogspot.com/2009_01_01_archive.html
Working harder to simplify software development. Tuesday, January 20, 2009. Grails Pitfalls and Tips. I have worked with Grails for some time now and thought I would share some of the common mistakes I have made early on. I also thought I could discuss some things that can make developing with Grails easier. Here is my short list of items:. Def service = ctx.bookStoreService. Def book = service.getCurrentBook(). Println "The most recent book is ${book.name} by ${book.author}". Static mapping = {. Def obj...
meagleblog.blogspot.com
belongs_to :meagle: January 2008
http://meagleblog.blogspot.com/2008_01_01_archive.html
Working harder to simplify software development. Friday, January 18, 2008. The last time I looked at Grails it was around version 0.4. Now that we are approaching a 1.0 release I wanted to see how much further the Grails team has advanced. I wanted to start by using my existing Spring and Hibernate components from my Java project (I am currently using Stripes for our presentation layer). Benefits for doing this might include:. No, your domain objects transparently take full advantage of the mixed in meth...
meagleblog.blogspot.com
belongs_to :meagle: IntelliJ 8.1 buuild 9732 hangs with Apple Java for OS X 10.5 - Update 4
http://meagleblog.blogspot.com/2009/07/intellij-81-buuild-9732-hangs-with.html
Working harder to simplify software development. Wednesday, July 1, 2009. IntelliJ 8.1 buuild 9732 hangs with Apple Java for OS X 10.5 - Update 4. If you are a Mac user and you applied Apple's Java for OSX 10.5 Update 4 you might be experiencing crashes with IntelliJ 8.1.x. It appears that the software was not tested well enough against the developer preview before the update went GA. You can read more about this here:. Http:/ lists.apple.com/archives/java-dev/2009/Jun/msg00142.html.
meagleblog.blogspot.com
belongs_to :meagle: December 2007
http://meagleblog.blogspot.com/2007_12_01_archive.html
Working harder to simplify software development. Saturday, December 15, 2007. NetBeans 6.0 and Rails. A simple IDE layout for components that is similar to IntelliJ. There are no unnecessary perspectives that Eclipse users have. Support for auto-completion of methods with rdoc helpers. Debugging capabilites that are simple to use. Integration with version control repositories like Subversion. Tools to manage your Gems and Plugins from the Tools menu. Decent refactoring built in. Labels: Ruby on Rails.
meagleblog.blogspot.com
belongs_to :meagle: February 2009
http://meagleblog.blogspot.com/2009_02_01_archive.html
Working harder to simplify software development. Tuesday, February 24, 2009. I found this cool little mockup tool that is very easy to work with called Balsamiq. Monday, February 16, 2009. Hudson, run a bypass. I thought I would share a pleasant experience I had with a CI (continuous integration) tool called Hudson. I have used other tools like this in the past including Anthill, CruiseControl, and TeamCity. While these tools did their job none of them seemed as easy to use as Hudson. Now when Flex Build...
meagleblog.blogspot.com
belongs_to :meagle: August 2009
http://meagleblog.blogspot.com/2009_08_01_archive.html
Working harder to simplify software development. Thursday, August 20, 2009. When Rails first came on the scene I was fairly closed minded mainly because of my investment in Java. How could this newcomer trump all my hard work or be as robust as Java? Exposure to a new language like Ruby actually improved my Java code (and made me resent how noisy Java is). So now I am an aspiring polyglot with an open mind to new languages. So how does everybody win? I believe that everyone will benefit if these two comm...
meagleblog.blogspot.com
belongs_to :meagle: July 2009
http://meagleblog.blogspot.com/2009_07_01_archive.html
Working harder to simplify software development. Wednesday, July 1, 2009. IntelliJ 8.1 buuild 9732 hangs with Apple Java for OS X 10.5 - Update 4. If you are a Mac user and you applied Apple's Java for OSX 10.5 Update 4 you might be experiencing crashes with IntelliJ 8.1.x. It appears that the software was not tested well enough against the developer preview before the update went GA. You can read more about this here:. Http:/ lists.apple.com/archives/java-dev/2009/Jun/msg00142.html.
meagleblog.blogspot.com
belongs_to :meagle: Choking on Java
http://meagleblog.blogspot.com/2009/08/choking-on-java.html
Working harder to simplify software development. Thursday, August 20, 2009. When Rails first came on the scene I was fairly closed minded mainly because of my investment in Java. How could this newcomer trump all my hard work or be as robust as Java? Exposure to a new language like Ruby actually improved my Java code (and made me resent how noisy Java is). So now I am an aspiring polyglot with an open mind to new languages. So how does everybody win? I believe that everyone will benefit if these two comm...
meagleblog.blogspot.com
belongs_to :meagle: April 2008
http://meagleblog.blogspot.com/2008_04_01_archive.html
Working harder to simplify software development. Wednesday, April 30, 2008. Deploying Rails 2.0.2 applications with Tomcat 5.5.x using Warbler. After working with Rails for some time I wanted to determine how to deploy an application on Tomcat. I will discuss how to build a war file that can be used on Tomcat and show pitfalls I experienced along the way. Here are the technologies I am using for this deployment:. JRuby 1.1.1. Rails 2.0.2. Warbler 0.9.5. MySQL 5.0.4. Jruby -S gem install warbler. File tha...