
Gabriela Barbosa Mariz was born at 16h36, March 12, 2012. She weighed 3.710 Kg and was 51 cm long.
Gabriela and Marta are doing well.

Just released the ITJobs Android app, it was a fun(sometimes) project to make.
The application supports devices with Android 1.6 or greater. For those people that says Android fragmentation is a non issue, I've to say they are wrong, it turns the life of developers extremely difficult and boring.
Too many versions and resolutions to take care about. I had the feeling of continuous patching just to support the largest devices that I could.
I've also found some nonsense and sometimes ridiculous bugs on Android SDK, I'll post about this later.
But overall it's not a bad platform to develop. What I've enjoyed the most was the flexibility about the XML layouts and shapes, the Eclipse IDE does the job and I think Java is a nice programming language.
Please send me some feedback, the app is available on Android Market:

No resolutions, just goals and dreams. Have a healthy baby girl, love, health, run half marathon in 2h and success for my upcoming projects.
Happy new year!
The project is under development and my co-worker is doing her best to provide the most beautiful layout.
For my english speaking readers the photo says: "Pregnant 3+"
At home
At work
For development
Other tools
What's yours?
127.0.0.1. We need to configure Apache to accept the IP address from X-Real-IP or X-Forwarded-For headers set by Nginx.mod_rpaf that does exactly the opposite of mod_proxy_add_forward.
In my Nginx virtualhost configuration I have something like:
server {
...
location / {
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
...
}
...
}
This also applies if your are using a different webserver as front-end such as Lighttpd or another instance of Apache.