Hi again. Today I want to introduce you great illustrator. His name is Olivier Derouetteau. I am delighted with his works, especially with characters: the image is so kind and amusing, that it touches your heart when you looking at it. I don’t want to speak any more, u must see it.
Using Google AJAX Libraries API
I bet, you already hear about Google AJAX Libraries. Google are hosting copies of jQuery, Prototype, mooTools and Dojo on their CDN.
You can load any available version using it’s API. But i see, that some people experiencing troubles using API and their own scripts.
Here is a quick solution.
google.load("jquery", "1"); google.setOnLoadCallback(function() { $('<script type="text/javascript" src="your_script.js"></script>').appendTo('head'); $('<script type="text/javascript" src="another_your_script.js"></script>').appendTo('head'); });
You can also load jquery plugins in that way.
WordPress Birthday
Yesterday WordPress celebrated a jubilee. 5 years ago , 27 may 2003 WordPress published it’s first release – WordPress 0.7. Since that time WordPress has come a long way, and now it becomes the most popular blogging system.
Happy Birthday.
New method of storing data between page loads
Yesterday night i found amazing solution for storing session variables without cookies.
Thomas Frank write an article on how you can do it.
Main idea of his script is to use “top.name” property to store data, cause it’s value is stored between page loads. Live and learn! I personally didn’t know that fact.
Features :
– All data is stored on your computer
– It will let you store 2 MB of data, with much less hassle than a cookie based solution.
– The content of “top.name” does not get sent to the server in the header request – so it cant be sniffed
Mood: excited :)
How to make PDF without Adobe Acrobat Professional
If you think that buying Adobe Acrobat Professional is too expensive, but you do not want to use unregistered copy, then i have a solution for you.
So, you have a document ( Word, Excel, Jpeg, GIF, TIF, RTF, txt ) and you want to convert it to nice PDF and send to client. All you need to do is send your document to pdf@koolwire.com. In 1-2 minutes you will get reply with generated PDF. This service has limit on file size – your file should be less than 10 Mb.
Use and enjoy :)