COD Modern Warfare 2 Club life I just like these pictures New theme from RocketTheme
COD Modern Warfare 2 One of the best games I have played in a long time!
Club life Who hasn’t had this moment!
I just like these pictures This set of pictures came with the Theme and I wanted to keep them up here for now.
New theme from RocketTheme Ive loved wordpress for a while, but this new theme from RocketTheme takes it to a whole new level!

Creating a tar.gz file:

tar -pczf name_of_your_archive.tar.gz /path/to/directory

Extract a tar.gz file:

tar -zxvf backup.tar.gz
 

If you have an unlocked iPhone and are planning on using it in Spain with vodafone, then you are going to want to know about these settings.

You will need to first purchase a vodafone sim and call customer service to activate the internet. Oh and make sure you speak spanish, because their customer service does not speak english.

Once you have the sim and the internet activated, you are going to need to go into your network settings.

Settings -> General -> Network -> Cellular Data Network

Then enter these credentials for cellular Data

APN: airtelnet.es
Username: wapwap
password: wap

After you enter those, set your phone to airplane mode then turn it off and internet should be working!!

thanks to this post here!

http://www.marbella-guide.com/vodafone-spain-wap-settings/

UPDATE: That set of configuration from above appears to only have worked for me for a few hours. Again vodafone is of no help getting a good working setup so after some searching on the interwebs, I found another set of working configuration from here: http://forums.pinstack.com/f24/tcp_apn_wap_gateway_port_carrier_settings-360/

they actually give you settings for quite a few carriers in different countries.

Vodafone (Spain)
Gateway IP: 212.73.32.10
Port: 9201
APN: airtelwap.es
username: wap@wap
password: wap125

I didn’t need the gateway or port, but those are working for me at this point. Guess I will wait to see if this dies in the next day or so.

 

Get a free burrito from Chipotle! It wont last so print it out and redeem it before it expires!

This coupon is for a Buy 1 Get 1 free offer for Chipotle!

Offer ends 3/4/2011

Download here:

Chipotle Coupon

 

When working through some of the examples from the spring-security book, I came across this error that seemed to be fairly common with a simple google search, but no good explanation was found. I ended up using the combination of a few different posts to come to the conclusion that I didn’t have the correct version of JSTL in my class path.

JSTL 1.2 tag library definition as used in the Spring Security 3 book examples:

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

If you are using eclipse you might get an error similar to:

Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”

If you have a jstl jar file already in your class path then you are probably using a jstl 1.1 version of the jar. I found a 1.2 version of jstl using jarfinder.com

http://mirrors.ibiblio.org/pub/mirrors/maven2/javax/servlet/jstl/1.2/jstl-1.2.jar

At this point you can just download the jar above and put it into your eclipse class path and all should be right with the world again.

Here are some posts that I used to come to this much needed conclusion. The second post being more helpful than the first due to the fact that much of Spring Security 3′s book examples use eclipse and tomcat.

http://www.mularien.com/blog/2008/04/24/how-to-reference-and-use-jstl-in-your-web-application/

http://www.mularien.com/blog/2008/02/19/tutorial-how-to-set-up-tomcat-6-to-work-with-jstl-12/