| Subcribe via RSS

Keep Track of Current Events with IceRocket

January 16th, 2009 | No Comments | Posted in Interesting, Linkification, WWW


Ever hear the end of a news broadcast on TV and wonder “what’s that all about?” Simply visit IceRocket for the latest in blogs, Twitter, images, videos, and news stories about any topic. It’s fast and simple!

Tags:

Create a Free Web Host Easily

January 14th, 2009 | 1 Comment | Posted in Linkification, WWW

Free web hosting is a risky business to go into–if you don’t plan right, or have a dishonest server provider, things can go very wrong very fast. Although it’s not as good as running your own server, MyOwnFreeHost helps you start a free host without as many risks (assuming you trust their parent company, but I’ve had no problem with them).

After creating an account for free, you can add your own domain (I don’t suggest using the free domain they suggest, it makes you seem unprofessional) and start advertising your host. You are able to customize your host’s main page, and moderate accounts using the “Reseller Panel”. The support forum is very active and you can exchange tips with other users of the service.

The reseller account is free, but you can upgrade your users plans for a fee. Eventually, when you have experience and the money, you’ll probably want to move to an actual server, but MyOwnFreeHost is a good start!

Tags:

Read Magazine Archives at Google Books

December 14th, 2008 | No Comments | Posted in Interesting, Linkification

Google Books now offers complete archives of many magazines. You can read them online for free, so check them out right now! There is no way to list only magazines, so you must either reload the page and look at the randomly displayed titles, or type the name of a specific magazine in the search box.

Tags:

Search Google’s Index from 2001

October 9th, 2008 | No Comments | Posted in Linkification, WWW

In honor of their 10th birthday, Google has added an archive of their index from 2001. You can check it out here.

Try searching for Windows Vista. I also noticed in 2001, this existed (look at the first result). And I thought my name was original.

I’m Worth $5,161.10

September 19th, 2008 | No Comments | Posted in Linkification, Site News, WWW

I googled my own site and this showed up. Not very accurate, because they say I get 10 times as many page views per day as I actually do, and I don’t even have any ands to make revenue on ($7.07 per day… I wish, but all the ad providers require you to be 18, which I’m not). Wikipedia is said to make $412,503 per day on ads, but they don’t have any ads, and are nonprofit. As I said this site does not provide very accurate results, but it might be worth checking out if you’re in need of an ego-booster.

Update: I clicked the “update the results” button on the site and it increased to $7,095. 0_0

Geeky License Plates

August 25th, 2008 | No Comments | Posted in Computers, Linkification

Geeky License Plates

I am getting one of those when I get a car!

16 Ways to Waste Time on the Internet

August 23rd, 2008 | 1 Comment | Posted in Articles, Computers, Linkification, WWW

After a long day of web programming, why not relax for a while? These sites will help with that.

Free Games

  • Sodaplay - Contains some different physics games. You can build moving creations out of springs and masses, make a minigame, or draw shapes in different colors and animate them.
  • Phun - You can build 2D things out of parts like boxes, circles, hinges, fixates and springs. When you’re done you can upload it to Phun Box to share it with other people a nd get ratings and comments.
  • iSketch - A game like Pictionary, but played online with people from all over the world. One person draws an object, and other people try to guess what it is. The winner is the person with the most points, which are obtained by drawing good pictures or guessin correctly.
  • Free Evo2 4×4 Evo 2 is a game that originally came out in 2001, but has recently been released as a free download. It has lots of offroad tracks, a career mode, and multiplayer online play. The only catch is that most of the trucks have been removed from the game and replaced with a few custom ones.
  • Falling Sand Game - A collection of online as well as downloadable games. This is sort of difficult to explain, but it’s more interesting than it sounds, especially if you download one of the games and install modifications (in the wxSand, Enigma Sand, and Burning Sand forums.)

Websites

  • StumbleUpon - This is a toolbar integrated with a website. After you sign up, you can tell the site what your interests are. Then you can click the Stumble! button to visit sites related to your interests. After you arrive at a site you can click the I like it or Not for me buttons to affect what sites it shows you in the future. You can also review websites, or add people that you are interested in as a fan to see the sites that they have rated.
  • PyWeek- A contest for games made with the Python language. You can enter your games in the contests, or download games other people have made (there are a lot).
  • Computer Stupidities - Stories about stupid people trying to use computers!

Blogs

Resources

  • HotScripts - Largest collection of scripts in all languages.
  • Dafont.com - Lots of free fonts, in many different categories.
  • Good-Tutorials - Tutorials for just about anything.
  • Zymic - Free hosting, tutorials, and templates.
  • YoungCoders - Help forum for young programmers.
Tags: , ,

Super-Simple Wordpress RSS Syndication For Your Site

August 21st, 2008 | 4 Comments | Posted in Articles, Code, Computers, Linkification, PHP, WWW

If you’re like me you probably have a blog as well as another site. I have found that an effective way to get vistiors to the blog is to link to it from the main site, assuming that that site is more popular. RSS (Really Simple Syndicate) is a way of syndicating your blog to other areas of the web. It is based on XML and generated automatically by Wordpress.

A PHP RSS parser is MagpieRSS. We will be using it in the following tutorial.

  1. Download the most recent version of MagpieRSS from the above website.
  2. Upload the “rss” folder to your web server.
  3. Next we need to make a PHP include file for displaying the posts. Use the following code
    <?php
    require_once('rss/rss_fetch.inc'); //Include the MagpieRSS include file
    $url = 'http://yoursite.com/blog/?feed=rss2'; //Set a variable containing the URL to your blogs RSS feed
    $rss = fetch_rss($url); //Retrieve the posts
    $items = array_slice($rss->items, 0, 5); //Only show the first 5 posts (the second number can be customized to suit your needs)
    $posts = '';
    foreach ($items as $item) { //Loop through the items
    	$href = $item['link'];
    	$cat = $item['category'];
    	$title = $item['title'];
    	$date = $item['pubdate'];
    	$text = $item['content']['encoded'];
    	$text = preg_replace('/<img [^>]+\/?>/', '[image]', $text); //Replace images with [image]
    	$text = preg_replace('/<\/?[^>]+>/', '', $text); //Get rid of HTML
    	$posts .= "<li><a href=$href>$title</a> <em>".substr($text, 0, 100)."</em></li>"; //Print the current post title linked to the page on your blog, and the first 100 chars of the post
    }
    echo $posts;
    ?>
  4. Now you can include that file into your site wherever you want the feed to appear. Enjoy the free traffic!
Tags: , ,

Google Reader

August 20th, 2008 | 1 Comment | Posted in Linkification, WWW

A few weeks ago I discovered Google Reader. If you read a lot of blogs, Google Reader is for you. Put in the URL to the RSS feeds of the blogs you read, or you can also select pre-selected packages of blogs. Then, the site will aggregate all the posts together onto one page. It’s web-based so you can access it from any computer.

Tags: ,

Free Advertising (again)

August 18th, 2008 | No Comments | Posted in Linkification, Site News

My last post about this didn’t get much response (probably because of the stupid title and writing)… but if you want a link in my blogroll, leave a comment on this post. It’s looking sort of empty.