February 13, 2009
So you are coding and your transfer your files to your production server via SVN or FTP and then you start getting some “Warning: Cannot modify header information – headers already sent” errors. Well, this is not good indeed.
This errors happens when you send a header command and has already outputted text to your output buffer (generally, the browser). Then you grep your code for misleft debugging prints, echos, print_rs and var_dumps but they are gone or commented.
Oh yeah, somehow some data were added during the transfer somewhere in your source files. Great! Now some cool action!
Read the full article
February 11, 2009
I was recently reading a post at the Viget Engage Blog about the upcoming debate about the placement of the h1 heading HTML tag.
It seems to be just making some noise by now but I remember like for months ago reading blogs, someone just stopped and wondered if placing it at the website title was really a good ideia and made me wonder too in that time and since then I started to follow the title placement option.
Now it has become something bigger, with a website (http://h1debate.com/) tracking peoples votes on tweets and we decided to speak our mind too. Go #h1title!
Read the full article
February 5, 2009
Opening links in a new window was once quick and easy but since the target="_blank" options on a links have died (if you didn’t knew, I’m very sorry to be the one telling you this) the only way left was the javascript way.
Read the full article