I used to use WP-Syntax but I think this looks oh so nicer!
public class Hello { public static void main(String[] args) { System.out.println("Hello World!"); } }
Check it out at here.
I’ve recently moved to Firefox 3 on my MacBook Pro. The first thing I noticed was pretty much all of my Firefox plugins stopped working. This didn’t really bother me until I started developing on the laptop. The two things I really missed were Web Developer and FireBug.
After a little bit of googling, I was able to find other people with the same problem and fixes. While these are not official releases, they seem to be working just fine for me.
Check them out below:
I rebuilt my slice from scratch after screwing up my installations of ruby and rubygems. Good thing I had the WP-DB-Backup or else I would have lost all of my posts!
Yay! I got apache upgraded to 2.2 from 2.0. It was a lot easier after I was told by Aaron that Feisty has 2.2 in their apt-get repositories. I just had to update from Dapper to Feisty. Prior to updating I did have to comment out all of the repositories I had added to my /etc/apt/sources.list
. I was running into some broken wgets otherwise.
After commenting out the additional repository lines, I just followed the steps here and viola! apache2.2 comes up.
I did have to reinstall mod_jk for apache2.2 but that was a easy.
And the day is mine.
Well, I got to like the second step before I hit another roadblock. Looks like kodefoo’s repository only supports binary-i386 releases. Too bad my slice is on an AMD64 machine which means I need the amd64 release. I guess if I want to cluster mongrel with apache, I’ll have to compile from source. Sigh…
Prior to hitting this road block, I ran apt-get remove apache2
and it didn’t remove apache2 from my slice even though it said it did. So that’s a little confusing. I continued with the kodefoo tutorial regardless until I came across the problem noted above. I’ll eventually have to figure out how to do a clean remove of apache2.
At this point, I think I am just going to try to get a single mongrel served up through apache2. Hopefully, this will be easier…
So I’ve still been trying to get mod_proxy_balancer installed. I tried just getting a compiled mod_proxy_balancer.so and drop it into my existing apache2 install but upon start up I get:
Cannot load /usr/lib/apache2/modules/mod_proxy_balancer.so into server: /usr/lib/apache2/modules/mod_proxy_balancer.so: undefined symbol: proxy_hook_post_request
Looks like I have to do a clean uninstall and reinstall of apache2 from source. I’ll have to resetup svn (svn_dvn) and all my virtual hosts so this blog is going to be MIA while I go through this process.
I can’t wait until the Ubuntu repositories update apache2 to 2.2 so mod_proxy_balancer support will be as simple as apt-get install apache2
.
I think the next step is to remove my existing apache2 install and give kodefoo’s tutorial a shot.
After I installed WordPress, the first thing I did was go in search for a WordPress theme. I started off at LifeHacker. After a search for all things wordpressy, I came across a post for 83 Beautiful WordPress Themes You (Probably) Haven’t Seen. After scrolling down a bit, I found Peaceful Rush which is a great match with the title of this blog. So far, I think it’s looking good 🙂
Trying out the WP-Syntax WordPress plugin:
public class Hello { public static void main(String[] args) { System.out.println("Hello World!"); } }
Check it out at: http://wordpress.org/extend/plugins/wp-syntax/
Here’s a pretty cool WordPress plugin that lets Google know about your blog:
http://www.arnebrachhold.de/2005/06/05/google-sitemaps-generator-v2-final
After trying to keep a blog numerous times already, I am committed to keep this one going!
It took me awhile to get setup after rebuilding my slice (I am hosted by SliceHost). Most of the time was spent having to google the commands I had to run and figuring out missing apache modules since this is all new to me. It’s been a good learning experience though 🙂
But after 4 hours, I’ve setup the following
Next steps are to get Java and Tomcat installed, as well as a sample Rails app up and running.