Time, Attention, and Creative Work. After 4 years and a lot of productivity pr0n, we’re shifting gears. Re-learn how to use 43 Folders. Then back to work. [»]
”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
Dan Grover | May 29 2006
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: + 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? 10 Comments
POSTED IN:
I would use it, but...Submitted by solidsnot on May 30, 2006 - 4:56am.
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. ;) »
Here's one way to do...Submitted by GOD on May 30, 2006 - 6:07am.
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. »
GOD is love. You the man....Submitted by emory on May 30, 2006 - 6:17am.
GOD is love. You the man. »
I think the idea was...Submitted by Berko on May 30, 2006 - 8:25am.
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. »
IIRC there is a firefox...Submitted by enine on May 30, 2006 - 8:54am.
IIRC there is a firefox plugin to do this also. »
What is the name of...Submitted by michaelramm on May 30, 2006 - 10:06am.
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 »
This is something that I...Submitted by austin.moody on May 30, 2006 - 10:29am.
This is something that I posted to another thread on this board somewhere: ============ 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. »
That's what I'm talking about...Submitted by solidsnot on May 30, 2006 - 2:10pm.
That's what I'm talking about GOD! :) »
There is an extension to...Submitted by mourges on June 2, 2006 - 6:47pm.
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!) »
I always get a...Submitted by Stew on June 2, 2006 - 7:49pm.
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 »
About nuttdan |
|
| EXPLORE 43Folders | THE GOOD STUFF |