43 Folders

43 Folders feed subscription icon - Shiny! Drowning in email? Try Inbox Zero to learn sane tips for dealing with high-volume email. And don’t miss the free Inbox Zero video. »

”What’s 43 Folders?”
43Folders.com is Merlin Mann’s website about finding the time and attention to do your best creative work.

Start page cycling

I came up with this potentially hair-brained idea a half hour ago or so and wanted to share it with you guys to see what you thought.

The idea is to have a free/very cheap service that gives you a personal url to set as a start page. You can then configure it to redirect in several ways:
a) go to certain pages at certain times / days
b) go to a page randomly from a set
c) go to a page sequentially from a set

+ potentially go to a page once every day the first time you visit the redirection.

For instance, you could have it go to a certain page during work time, another at other times, etc. Or maybe just have a "message" instead of a URL it displays. It could also keep stats perhaps. Particularly crafty users could chain them together.

It could be a totally free service w/donations, or nag you every x times to pay the $4 or whatever it is. And whatever it is, it would be all ajaxy and very polished/well executed.

Potentially useful? Or lame?


Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
solidsnot's picture

I would use it, but...

I would use it, but just for having a random home page. I always get a bit frustrated that I'm limited to one home page. I like a bit of variety when I'm starting up my web browsers. ;)

GOD's picture

Here's one way to do...

Here's one way to do the page at x time with javascript:

<script type="text/javascript">

var mysites=new Array()
mysites[0]="http://www.weather.com/"
mysites[1]="http://news.google.com/"
mysites[2]="http://www.reddit.com/"

var d = new Date()
var time = d.getHours()
if (time<10)
{
window.location=mysites[0];
}
else if (time>10 && time<16)
{
window.location=mysites[1];
}
else
{
window.location=mysites[2];
}

</script>

And here's a randomized version:

<script type="text/javascript">

var mysites=new Array()
mysites[0]="http://www.weather.com/"
mysites[1]="http://news.google.com/"
mysites[2]="http://www.reddit.com/"

var r = Math.ceil(Math.random() * mysites.length) - 1;

window.location=mysites[r];

</script>

Just cut and paste into an html file and edit with a text editor.

emory's picture

GOD is love. You the man....

GOD is love.

You the man.

Berko's picture

I think the idea was...

I think the idea was to provide it as a service so that folks could configure their pages. GOD's example would work for individuals, but if you wanted to do this for a wider audience, it would require some PHP-foo. I'll play with it today and see what I can come up with.

enine's picture

IIRC there is a firefox...

IIRC there is a firefox plugin to do this also.

michaelramm's picture

What is the name of...

What is the name of the plugin you are referring to? I have searched the MozDev site and can find no plugin of that sort.

Michael

austin.moody's picture

This is something that I...

This is something that I posted to another thread on this board somewhere:

============
If you've got Greasemonkey installed there is a pretty cool script that will block specific sites until after a certain time of day (and weekends).

See this on Lifehacker: http://www.lifehacker.com/software/greasemonkey/invisibility-cloak-update-149252.php
============

As I say this allows you to block sites at specific times during the day, but not set a different start page or whatever.

solidsnot's picture

That's what I'm talking about...

That's what I'm talking about GOD! :)

mourges's picture

There is an extension to...

There is an extension to Firefox called stumble which takes you to a random website (based on some categories you choose) and then you give a thumbs up/down on it. Not for the start page, but pretty cool none the less (actually good for wasting time, so maybe not so good!)

Stew's picture

I always get a...

solidsnot wrote:
I always get a bit frustrated that I'm limited to one home page. I like a bit of variety when I'm starting up my web browsers. ;)

If you're using Firefox, you can set the browser to open multiple home pages in separate tabs. Just set your homepage URL to the sites you want and separate each with a pipe "|", i.e. http://www.yahoo.com">http://www.google.com[/url] | [url]http://www.yahoo.com
It's not randomizable, but I use it to keep open a tab of Backpack so that it's always available.

About nuttdan

 
EXPLORE 43Folders THE GOOD STUFF

An Oblique Strategy:
Distorting time


STAY IN THE LOOP:

Subscribe with Google Reader

Subscribe on Netvibes

Add to Technorati Favorites

Subscribe on Pageflakes

Add RSS feed

The Podcast Feed

Inbox Zero

The original 43 Folders series looking at the skills, tools, and attitude needed to empty your email inbox — and then keep it that way. Don’t miss the free video of Merlin’s Inbox Zero presentation.

Making Time

3-part series on attention management for artists and makers. Read Bad Correspondence, The Job You Think You Have, and One Clear Line.