Subscribe Buttons for Wordpress
I have added the subscribe buttons of RSS for my wordpress blog.I tried Add to Any Subscribe Button and Subscribe Sidebar plugin. "Add to Any Subscribe Button" can add your rss feed to almost all feed readers , such as Google Reader, My Yahoo!, Netvibes and Windows Live. But it will lead the reader to their smart menu. That is not somethings I prefer. I prefer there was some button in my blog. The reader can directly add my feed to their rss reader directly. Subscribe sider can do that. But I don't know why after I added widget into my page. There is an extra h1 tag on the plugin.
But that is easy to fix.
From
Code
echo $before_widget . $before_title . $title . $after_title; |
Change to:
Code
$line_before = $before_widget . $before_title . $title . $after_title; | |
$line_before = str_replace($tags,"",$line_before); | |
echo $line_before; |
Easy, Easy, Easy
MSN Messenger 2009 installed (2)
I just found they changed the way to present the message too.
The old way:
"
Michael (XX:XX)
Hi
Michael (XX:XX)
Hi again.
"
The new way in 2009:
"
Michael (XX:XX)
-Hi
-Hi again.
"
MSN Messenger 2009 installed
I have just installed MSN Messenger 2009. It got a new interface. That is more fancy. There is a section at the bottom,"What's new?". You can see the latest changes of your friends' status. But I don't like it can't display the number of unread emails if the number is geater than 99. It will display "99+". I have around 300 unread emails. Then I never know any new emails arrived.
Joomla Request Variable
In PHP, you have $_GET and $_POST. In Joomla 1.5 framework, that is easy and quite similar with ASP.Net.
Code
$Itemid = JRequest::getVar('Itemid'); |
JRequest, then you can access GET and POST.
More information, http://docs.joomla.org/Retrieving_data_from_GET_and_POST_requests
How to read Chinese in Vista
I have a friend who has the problems for reading Chinese in Vista. Firstly, I think he tried to run an application written in Chinese Encode (Big5), not Unicode. Vista should support Unicode.Anyway,I have no problems to run any applications written in BIG5 at all. I am using Vista Ultimate and I remembered I have installed a chinese language pack.But he is using Vista Home Basic. We spent around half hour to look for the option or menu to install the chinse language I have. But we have not any successful outcomes. So, I believe that is not available for Home Basic.