Airport Utility Manager »

The free AirPort Utility manager from Apple lets you control your Wi-Fi network and AirPort base stations, including AirPort Express, AirPort Extreme, and Time Capsule, right from your iPhone. When you launch the app, you’ll see a picture representation of your network and devices. It’ll tell you what’s connected to what and how. You can ...

Display tweets on your WordPress blog without any plugin »

You can copy & paste the following lines of code anywhere in your theme files to display the latest tweets. Note: Please don’t forget to change your username and number of tweets to display on line 3 & 4. <?php include_once(ABSPATH . WPINC . '/feed.php'); $rss = fetch_feed('https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=catswhocode'); $maxitems = $rss->get_item_quantity(3); $rss_items = $rss->get_items(0, $maxitems); ...

Go On Internet Strike By Adding This Code To Your Theme »

January 18th is going to be amazing. Sites are striking in all different ways, but they are united by this: do the biggest thing you possibly can, and drive contacts to Congress. Put this on your site or automate it by putting this JS into your header, which will start the blackout at 8AM EST ...

Display number of Facebook fans on your website »

If you want to display number of of likes from your Facebook page on your website, you can use the following small snippet of code anywhere on the website. In the below code we are using the Facebook Graph API which are very easy to use and implement on the website. I use the below ...

Add Home link in WordPress Top Navigation »

Sometime we need to add home page link in the top menu. WordPress doesn’t provide any default way to do that, the only solution available is that you can create one custom template and assign it to home page menu. Then from settings you can set that home menu as landing page. The above solution ...