how should a start page help you

  • 18 Replies
  • 6746 Views
*

Zero

  • Eve
  • ***********
  • 1287
how should a start page help you
« on: September 20, 2015, 10:33:29 am »
Hi all,

If you had an "intelligent" customizable browser start page, what should it be able to do to help you? I mean, realistically.

*

ivan.moony

  • Trusty Member
  • ************
  • Bishop
  • *
  • 1723
    • mind-child
Re: how should a start page help you
« Reply #1 on: September 20, 2015, 12:11:35 pm »
I'd pick a search engine, my documents and programs arranged through files and folders, a few shortcut links to the most used content and ultimately an answering machine capable of extracting informations from the web but this is still an overkill nowdays. I like those weather reports in a small windows too. Maybe I'd like to see also some statistical informations about my activities (like how many kilometers I've passed with my mouse or something more useful) and a number of visitors to my public web content.

*

Art

  • At the end of the game, the King and Pawn go into the same box.
  • Trusty Member
  • **********************
  • Colossus
  • *
  • 5865
Re: how should a start page help you
« Reply #2 on: September 20, 2015, 01:44:08 pm »
Initially, not much other than to provide you a bit of a welcome message and a Search Bar.

Then, if it is using it's intelligence gathering algorithms properly, it will start getting to know you and your likes, much like those of Amazon, Google and the other giants of the business currently do, and provide you useful content based on your past likes, choices, purchases, etc.

Sing to yourself, the old song..."Getting to know you...getting to know all about you..." ;)
In the world of AI, it's the thought that counts!

*

8pla.net

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1302
  • TV News. Pub. UAL (PhD). Robitron Mod. LPC Judge.
    • 8pla.net
Re: how should a start page help you
« Reply #3 on: September 21, 2015, 11:00:08 pm »
Be the brain to a robot body.
My Very Enormous Monster Just Stopped Using Nine

*

Data

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1279
  • Overclocked // Undervolted
    • Datahopa - Share your thoughts ideas and creations
Re: how should a start page help you
« Reply #4 on: September 21, 2015, 11:17:18 pm »
It's a tricky one, for me it would depend on my frame of mind.

But make sure there are no adverts on the page.   

*

Zero

  • Eve
  • ***********
  • 1287
Re: how should a start page help you
« Reply #5 on: September 25, 2015, 09:13:43 am »
Ok, no ads, I'm allergic anyway :)

So...
- a welcome message
- a search engine
- documents and programs arranged through files and folders
- shortcut links to the most used content
- an answering machine
- widgets (weather, visitors counters, ...etc)
- statistical informations about user's activities
- useful content based on user's past activities
- a todo list
- an outliner
- RSS?
- NO ADZZZ!!!

Wow, that's big.

*

ivan.moony

  • Trusty Member
  • ************
  • Bishop
  • *
  • 1723
    • mind-child
Re: how should a start page help you
« Reply #6 on: September 25, 2015, 10:35:27 am »
Content could be arranged through popular "tabs", so only selected content would be visible at the time. There could be a tree of tabs (nested tabs) structure. Let me show you how to do it:

Code
StartPage <- (
    WelcomeMessage,
    Go <- (
        SearchEngine |
        ArangedContent <- (
            ProgramsAndDocuments |
            Shortcuts
        )
    ) |
    Info <- (
        RSS |
        AnsweringMachine |
        Widgets <- (
            Weather,
            VisitorCounters,
            UserActivitiesStats
        )
    ),
    Notes <- (
        TodoList,
        Outliner
    )
)

Items delimited by a comma would be all visible at the time, while items delimited by "|" would be visible just one at the time, selectable by tabs.

So at the top level, only these would be visible:
* WelcomeMessage,
* Go (and what's selected below it),
* Info (and what's selected below it),
* Notes (and what's selected below it)

And you might even find a place for adds, but I suggest only when the questionmark is clicked. You know, adds could be a valuable source of informations and other content, when required to see them.

I thought you'd never ask :)

*

Zero

  • Eve
  • ***********
  • 1287
Re: how should a start page help you
« Reply #7 on: September 25, 2015, 12:56:45 pm »
hooooo yes, very nice idea ivan.moony O0

Would we choose the number of rows and columns for each space?

EDIT: The "intelligent" part could be its ability to present things according to their priority. Say, if you have an item in your todo list for today, it should be visible before RSS feeds. But if you have nothing special to do, then things less important would be visible first. In fact, all data should be prioritized to fit user's will.
I guess that this priority thing would be the "welcome" part, like "hey, welcome back! don't forget it's your wife's birthday yesterday! Here are the news : Tyler-bot is raising funds to buy a new brain!"
« Last Edit: September 25, 2015, 01:37:34 pm by Zero »

*

ivan.moony

  • Trusty Member
  • ************
  • Bishop
  • *
  • 1723
    • mind-child
Re: how should a start page help you
« Reply #8 on: September 25, 2015, 02:05:46 pm »
That could be a grid, north-east-center-west-south layout, or simply a draggable splitter. You drag a splitter from the south or from the west to open a new area. But I dont know, It seems that the less is better, I wouldn't complicate too much.

Edit: so, it would be a planner too? Nice idea with priority, I'm copying it for my future project...

*

DemonRaven

  • Trusty Member
  • ********
  • Replicant
  • *
  • 630
  • Disclaimer old brain @ work not liable for content
    • Chatbotfriends
Re: how should a start page help you
« Reply #9 on: September 26, 2015, 07:59:10 am »
A star page should grab your interest right away and let you know what it is all about.  I believe in this philosophy- keep it simple stupid. lol. I try to keep things simple as possible lol.
So sue me

*

Zero

  • Eve
  • ***********
  • 1287
Re: how should a start page help you
« Reply #10 on: September 26, 2015, 02:21:53 pm »
I agree, keep it simple (and stupid like me) :)

I think the layout is the most important thing. Since I don't want to re-invent wheels, I'm looking for a good layout manager.

Golden Layout looks good to me... very familiar, hence very simple.

With this...

Code
var config = {
  content: [{
    type: 'row',
    content: [
        {
        type:'component',
        componentName: 'example',
        componentState: { text: 'Component 1' }
        },
      {
        type:'component',
        componentName: 'example',
        componentState: { text: 'Component 2' }
        },
      {
        type:'component',
        componentName: 'example',
        componentState: { text: 'Component 3' }
        }
    ]
  }]
};

... you get this: https://golden-layout.com/examples/

So, it may be a good start.

*

DemonRaven

  • Trusty Member
  • ********
  • Replicant
  • *
  • 630
  • Disclaimer old brain @ work not liable for content
    • Chatbotfriends
Re: how should a start page help you
« Reply #11 on: September 26, 2015, 03:58:34 pm »
It is just a saying i was not implying that you were stupid. It is from a group i go to. It means that we have a tendency to over complicate things to the poin where you wanna go get plowed.
So sue me

*

Zero

  • Eve
  • ***********
  • 1287
Re: how should a start page help you
« Reply #12 on: September 26, 2015, 04:10:11 pm »
=>  i was not implying that you were stupid

I know you wasn't, it's ok :) I was just kickin' my own *ss!


What do you think about Golden Layout? It's a bit slow, but it looks easy...

*

DemonRaven

  • Trusty Member
  • ********
  • Replicant
  • *
  • 630
  • Disclaimer old brain @ work not liable for content
    • Chatbotfriends
Re: how should a start page help you
« Reply #13 on: September 26, 2015, 04:23:43 pm »
I like the code it does look simple. Some website coding is so complicated that i pull out my hair trying to learn it.
So sue me

*

Zero

  • Eve
  • ***********
  • 1287
Re: how should a start page help you
« Reply #14 on: September 27, 2015, 02:43:59 pm »
You're right, these things are supposed to be simple, not hair-killers.

I just found out that you can always drag tabs in Golden Layout. It's very nice!

 


OpenAI Speech-to-Speech Reasoning Demo
by MikeB (AI News )
March 31, 2024, 01:00:53 pm
Say good-bye to GPUs...
by MikeB (AI News )
March 23, 2024, 09:23:52 am
Google Bard report
by ivan.moony (AI News )
February 14, 2024, 04:42:23 pm
Elon Musk's xAI Grok Chatbot
by MikeB (AI News )
December 11, 2023, 06:26:33 am
Nvidia Hype
by 8pla.net (AI News )
December 06, 2023, 10:04:52 pm
How will the OpenAI CEO being Fired affect ChatGPT?
by 8pla.net (AI News )
December 06, 2023, 09:54:25 pm
Independent AI sovereignties
by WriterOfMinds (AI News )
November 08, 2023, 04:51:21 am
LLaMA2 Meta's chatbot released
by 8pla.net (AI News )
October 18, 2023, 11:41:21 pm

Users Online

303 Guests, 0 Users

Most Online Today: 376. Most Online Ever: 2369 (November 21, 2020, 04:08:13 pm)

Articles