Archive for the 'other' Category

Jun

18

How to be More Productive

Posted by kevin under other - No Comments

It’s a common challenge we all encounter at some point or another. We are so busy getting through the basic tasks of publishing, that we become less organized – and thus less productive. The time we’d dedicate to marketing our blog and building relationships with readers vaporizes as we try to dig out from under.

If you’d like to find more time to share your ideas with others and attract a greater number of readers, you need to become more productive. You can start with five easy steps.

1. Put your bookmarks on de.licio.us. In fact, dump everything you might need later into de.licio.us. Not only can you search your links much faster than using your browser’s built in tools, your bookmarks will be available anywhere you go.

2. Find an RSS reader or web-based service you like, load the sites you visit regularly, and get familiar with the interface. This is the single most effective think you can do to optimize your online productivity. You’ll spend less time loading sites and hunting for data — and more sorting what you need. Hint: Google Reader.

3. Unsubscribe. It’s easy to get caught up in the noise of Web 2.0. Do you really need pokes and superpokes on Facebook? Did you just blow an hour of daylight on Twitter? Dump it. Decide what’s important, and stick with it.

4. Get your projects organized. One great way is Basecamp — a no-nonsense planning and management system suitable for personal or group use. Set goals, share files and information, whiteboard — in short, make it happen. There’s a free version suitable for single projects. The Basic plan is $24/month, and is as much project management as most small businesses will ever need.

5. Many hands make the job easier — or at least give you a living knowledge-base. So network — but be smart about which one you choose. Facebook has a huge user base, but may offer more distractions that your personal productivity allows. If you’re building a professional network, consider LinkedIn. It is more focused on business and you will find that members are open to helping you with marketing questions.

These are just five tools. What are some of your favorites?

[via blogherald.com]

Jun

12

jQuery UI v1.5 Released

Posted by kevin under other - No Comments
Jun

11

Bold is Beautiful T-Shirt

Posted by kevin under other - No Comments

Bold is Beautiful

Bold is Beautiful

Bold is Beautiful

Design by Humans pulled off the incredible color separations needed to print this complex artwork by Jeff Finley — Bold is Beautiful ($24)

Jun

10

Top Open Source Content Management

Posted by kevin under other - No Comments

MediaWiki

The wiki software behind Wikipedia. Enough said.
http://www.mediawiki.org

Twiki
Advertises itself as “the open source Wiki for the enterprise.” Can be used to add more structure to the freeform wiki environment.
http://www.twiki.org

Socialtext Commercial wiki software that’s also available under an open source license.
http://sourceforge.net/projects/socialtext/

Drupal
Modular Web development framework and content management system written in PHP.
http://www.drupal.org

Xoops
An extensible content management system written in object-oriented PHP.
http://www.xoops.org

Exponent
Content management system with an authorization/approval framework that may make it more suitable for corporate use than some others.
http://www.exponentcms.org

Joomla!
Open source content management system, built around PHP and MySQL.
http://www.joomla.org

Jun

10

The Top Open Source Resources

Posted by kevin under other - No Comments

Apache HTTP

Not only is the Apache HTTP server the most widely-deployed Web server on the Internet, but the project gave birth to the Apache Foundation, the umbrella organization that supports many other important open source projects (not necessarily limited to Web technologies).
http://www.apache.org

Linux

Do we really have to tell you that Linux is a significant enterprise technology? Even the purest Windows shops probably have Linux running embedded on some of its network appliances. We won’t get into which distribution is best, but some of the significant ones are Red Hat, SUSE (Novell), Debian, and Ubuntu (attracting attention for the strength of its desktop Linux implementation).
http://www.redhat.com
http://www.novell.com/linux/
http://www.debian.com
http://www.ubuntu.com

Gnu

Before there was Linux, there was the Free Software Foundation’s Gnu (Gnu’s Not Unix) Project, which replicated most of the core Unix utilities with the exception of the kernel. In 1991, as a computer science graduate student at the University of Helsinki, Linus Torvalds wrote an operating system kernel to be married with the Gnu software, and Linux was born. The Free Software Foundation also gave us the Gnu Public License, which mandates that any derivatives of GPL source code must also be free and open software.
http://www.gnu.org

BSD

Derivatives of the Unix-like operating system BSD (Berkeley Software Distribution), including FreeBSD and OpenBSD, compete and overlap with Linux in providing an open source operating system.
http://www.freebsd.org
http://www.openbsd.org

Java

One of the most important enterprise development platforms and the foundation for many other open source projects, Java is championed by Sun Microsystems, which has gradually revised its licensing terms to open source standards.
http://java.sun.com

Jun

9

The Plurk

Posted by kevin under other - No Comments

 

Plurk

Plurk is a new micro blogging service where you can share thoughts, links, YouTube videos or whatever in 140 characters. It is just like twitter but slightly different. I just found it from Problogger and start playing around with it.

Jun

4

Lacoste 75th Anniversary Website

Posted by kevin under other - No Comments

Lacoste

Lacoste has designed a futuristic website in celebration of their 75th anniversary. As a web designer myself, I’m utterly impressed by the attention to detail and the flawless implementation of Flash.

Be sure to drill down to the download section for some sweet Lacoste desktop wallpapers!

Jun

3

Top Mobile Site In China

Posted by kevin under other - No Comments

Opera released a State of the Mobile Web: First Quarter, 2008 report recently. The report listed the top 10 Chinese mobile sites based on the statistics of Opera Mini.

Web portal content and search engine access is extremely popular in China, accounting for nearly 55% of the traffic.

E-commerce and e-mail are not yet as popular in China as in other parts of the world. Together, these two categories combine to create less than 2% of overall Opera Mini traffic in China.

Top 10 sites in China

www.sina.com.cn
www.baidu.com
www.google.cn
www.ko.cn
news.sohu.com
www.xiaonei.com
www.3g.cn
www.paojiao.com
www.188bet.com
www.feiku.com

Jun

3

Install WordPress MU And With Url Rewrite On IIS

Posted by kevin under other - No Comments

I have successfully installed WordPress MU on my Windows Server 2003 running IIS 6. To be honest, I know that WPMU is not full compatible with IIS right out of the box. It relies heavily on apaches mod_rewrite, which IIS isn’t capable of. The only IIS fix for permalinks I’ve seen have either been via a special filter named ISAPI_Rewrite.

ISAPI_Rewrite is Apache mod_rewrite compatible URL rewriter for Microsoft IIS server. It is compatible with Apache mod_rewrite making it possible to move configurations from Apache to IIS and vice versa just by copying .htaccess files. I have tested with WordPress 2.x or WordPress MU 1.3.x, it’s work. This is also works in IIS Mod-Rewrite Pro, but IIS Mod-Rewrite Pro have no free version.

To enable Clean Permalinks on WordPress MU on IIS, follow these steps:

  • Install PHP and MySQL following the vendor’s instructions.
  • Install ISAPI_Rewrite.
  • Install WordPress according to the vendor’s instructions.
  • Open with a text editor the file wp-settings.php, located in WordPress root directory. Add the code line

$_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];

  • Log on to WordPress as administrator, go to admin panel, open the “Permalinks” settings page, and set the permalink structure of your choice. Apply your changes.
  • WordPress is supposed to automatically create a file with name “.htaccess” in its root directory. Open with a text editor the file .htaccess, copy it and paste into httpd.conf in ISAPI_Rewrite directory.

Now we have a WordPress MU with clean permalinks on Windows Server 2003 running IIS 6.

Jun

1

Hutchison / 3 snags iPhone for Hong Kong and Macau

Posted by kevin under other - No Comments

Hutchison / 3 snags iPhoneLooks like Hutchison (aka 3) snagged the iPhone for distribution in Hong Kong and Macau, which will be coming “later this year.” Like the rest, this was another one liner un-announcement with no real info, but you probably wouldn’t want to anger Steve before WWDC. Besides, in Hong Kong 3 doesn’t sell anything but 3G phones — so put that in your iPipe and smoke it.

[via Engadget]