December 19 2009 by
M.Yan in
Web |
The latest version of the self-hosted version of WordPress (WordPress.org) – version 2.9 – has just been rolled out to users.
This release is called “Carmen” and includes a number of notable additions, including the beginnings of a WordPress image editing tool (cropping, scaling, and rotating), simpler video embeds, and batch plugin updating that should save [...]
November 29 2009 by
admin in
Web |
@mikebithell
Twitter is a very powerful tool, so many people are using Twitter, and more and more great Twitter themes being created. We found some great illustrated style Twitter design which may inspire you. Feel free to let us know you found better ones. (You can find me here on Twitter)
Google has released a new programming language called Go. Google says that Go combines the performance and safety of a compiled language like C or C++ with the speed of a dynamic language like Python. Of couse, Go is open sourced, its official website is Golang.org.
November 5 2009 by
Zack in
Web |
Is it possible to get a new MacBook or iPod for playing games? LockerZ is a new website still in beta version, users of LockerZ gain points(PTZ) via playing games, answer questions and watching videos. These points can be used to change with real gifts, like MacBook, iPod, Wii, Amazon Gift Card and so on. [...]
Twetter is testing tweet notifications among a group of users. If you are selected by Twetter for testing, when the people you followed posted a new tweet, you will get a notification on your Twetter page, saying, “1 new tweet”. By clicking on the notification, you will arrive at the page of the tweet. You can see [...]
If you have a paragraph(<p>) or a <div> with only images, it’s very easy to center them, just set the ‘text-align’ to ‘center’:
p{ text-align: center }
What if there is other content in the paragraph, like text, and you don’t want it to be centered. Well, one way to do this, is to add a container, [...]
October 30 2009 by
Zack in
Web |
I used to resize every images manually while they are to big for the post. Later, Automatic added ‘Media’ setting to WordPress, we could set default image sizes, so that we could select our image sizes just by one click after uploading. But sometime we don’t upload, we use ‘From URL’ to insert images. In the [...]
October 29 2009 by
Zack in
Web |
Getting recent posts in you WordPress blog, is a old topic. WordPress now has a default widget to do this, but sometime we need to display recent posts outside of the widget area. It’s a simple task, you can use one line of codes to do it:
<?php wp_get_archives(’title_li=&type=postbypost&limit=10′); ?>
The function wp_get_archives() is used to display [...]