Google
Web         Gaudiya Discussions
Gaudiya Discussions Archive » TECH ISSUES
PC problems, recommended software, tips and tricks, coding and so forth. Things that make your life in the cyberspace easier.

3D browser -



brajamani - Tue, 11 Jan 2005 04:55:43 +0530
3b browser

QUOTE
A wonderful new way for broadband users to experience the web, 3B is a free, downloadable browser that renders the web as a 3-D city of display windows, each showing a different site.

Move around a 3B city as you wish, deciding at a glance which websites are worth visiting. Then enter a site to browse its contents. Related sites
group together into themed districts, like shopping districts in a real city. 3B is a welcome break from search engines and directories. It's fun and intuitive - as familiar as going window-shopping.
DharmaChakra - Tue, 11 Jan 2005 16:57:15 +0530
QUOTE(brajamani @ Jan 10 2005, 07:25 PM)
3b browser

QUOTE
A wonderful new way for broadband users to experience the web, 3B is a free, downloadable browser that renders the web as a 3-D city of display windows, each showing a different site.

Move around a 3B city as you wish, deciding at a glance which websites are worth visiting. Then enter a site to browse its contents. Related sites
group together into themed districts, like shopping districts in a real city. 3B is a welcome break from search engines and directories. It's fun and intuitive - as familiar as going window-shopping.



You know, in the years I have been working with software, as both a front end designer and back end coder, I'm amazed that the paradigm for interaction has never left the 'desktop' model. Our main interface is still as if we are looking at our physical desktop, with things scattered here and there. The model breaks down a bit when working with files, but MS has tried to rectify that with all of its 'My...' folders.

Of course, whenever you have something that has stood for so long, someone always tries to break it. It seems like designers or engineers always want to move to 3D. (I'm not sure who comes up with these ideas... both are pretty clueless to the end user's point of view) 3D breaks down because:

1. Hardware is too slow.. the graphical density is always greater than the ability to (cheaply) draw it

2. Screens/monitors are not information dense enough. Ie, resolution is too low.

I think Tufte has is right when he says users want more information, not more 'pretty things'. (paraphrase) 3D browsers, 3D desktops (Sun is working on one) end up just getting in the way.

Now, for something that moves the desktop paradigm along logically, check out Basket, Unfortunately, its only available for Linux. And it needs better desktop integration. But at least its not trying to break the desktop interface, just extend it.
brajamani - Tue, 11 Jan 2005 18:53:17 +0530
Very much agree. I took the demo and it ended up being kinda cheezy. For real 3D you need to work your graphics card and this was not doin it.

I was gonna install it but the TOS was kinda creepy. Basically saying you set up a city of links and we have to right to do 'anything' to it meaning add adverts, change and showcase it, ect...

Hari!

Brajamani
DharmaChakra - Tue, 11 Jan 2005 19:47:12 +0530
An interesting note on my Tufte quote...

Next time you get a chance, look at interfaces as portrayed in tv adverts & movies... and then look at how an average user's interface looks... good exercise in how designers, etc. see how YOU use your computer biggrin.gif
brajamani - Tue, 11 Jan 2005 22:52:24 +0530
Oh I notice it all the time as a designer.
Sometimes what appears on the TV looks just like a flash interface on a webpage.

Specially now since all the American networks just have to have a soundtrack and custom graphics as a lead into any pop story.
brajamani - Wed, 12 Jan 2005 19:05:41 +0530
QUOTE
You know, in the years I have been working with software, as both a front end designer and back end coder


Can you back end a php script that will empty a POP from a server when the proper passwords are entered into it?

I`d pay for it smile.gif

I have clients that get slammed w/ SPAM on thier 'catch all' account that gets auto set up w/ the new account. it would be nice for them to have a tool that they can use to kill them so it does not eat up so much space and BW.

Bolo!

Brajamanai
Madhava - Wed, 12 Jan 2005 20:58:50 +0530
In case DhC is busy or isn't available, I should be able to handle that sometime after I get my backlog of work out of the way.
brajamani - Wed, 12 Jan 2005 21:17:13 +0530
OK, there is no rush.
DharmaChakra - Wed, 12 Jan 2005 21:53:19 +0530
QUOTE(brajamani @ Jan 12 2005, 09:35 AM)
QUOTE
You know, in the years I have been working with software, as both a front end designer and back end coder


Can you back end a php script that will empty a POP from a server when the proper passwords are entered into it?

I`d pay for it smile.gif

I have clients that get slammed w/ SPAM on thier 'catch all' account that gets auto set up w/ the new account. it would be nice for them to have a tool that they can use to kill them so it does not eat up so much space and BW.

Bolo!

Brajamanai


Let me think about it a bit.. send some stats... BTW, any money goes to Madhava...

How do you want to run this? A web page? Connecting to what kind of server, etc.. list details here.
DharmaChakra - Thu, 13 Jan 2005 05:45:27 +0530
QUOTE(DharmaChakra @ Jan 12 2005, 12:23 PM)
QUOTE(brajamani @ Jan 12 2005, 09:35 AM)
QUOTE
You know, in the years I have been working with software, as both a front end designer and back end coder


Can you back end a php script that will empty a POP from a server when the proper passwords are entered into it?

I`d pay for it smile.gif

I have clients that get slammed w/ SPAM on thier 'catch all' account that gets auto set up w/ the new account. it would be nice for them to have a tool that they can use to kill them so it does not eat up so much space and BW.

Bolo!

Brajamanai


Let me think about it a bit.. send some stats... BTW, any money goes to Madhava...

How do you want to run this? A web page? Connecting to what kind of server, etc.. list details here.


Go here

Down in the user comments there's a pretty ok script to do this. If you have had any PHP experience, it should be pretty simple to just add in a password field.

Hint: just add a form field at the bottom of type password.

Make sure you have PHP installed with imap support & the c-client library installed. Details here. A
CODE
would tell you if you have it compiled in. (Save the above statement into a php file & save it to the web server) Output of that statement looks like this.

Put all your connection specific variables in 'common.php'.

Do you need more help than this? I'm sure one of us could patch that script up pretty quickly for you.

FYI, I think you should donate $20 to Madhava regardless biggrin.gif
brajamani - Thu, 13 Jan 2005 18:28:56 +0530
Ha! Cool it worked, thanx for the research.

I used this after I recompiled php w/ imap support:

CODE

$mbox = imap_open("{your.imap.host}INBOX", "username", "password")
  or die("Can't connect: " . imap_last_error());

$check = imap_mailboxmsginfo($mbox);
echo "Messages before delete: " . $check->Nmsgs . "
n";

imap_delete($mbox,'1:*');

$check = imap_mailboxmsginfo($mbox);
echo "Messages after  delete: " . $check->Nmsgs . "
n";

imap_expunge($mbox);

$check = imap_mailboxmsginfo($mbox);
echo "Messages after expunge: " . $check->Nmsgs . "
n";

imap_close($mbox);
?>


Ill send both Madhava and Jagat something smile.gif
I have given to Madhava in the past because he has always helped me w/ coding issues and I try and get him design work because Im in school again and not designing as much outside of class. Most though are idiotic because they fear that someone in Finland cant do the job....Clevelanders! blink.gif

Thanks again, this will save me some BW smile.gif
Madhava - Thu, 13 Jan 2005 19:00:50 +0530
QUOTE(brajamani @ Jan 13 2005, 01:58 PM)
Most though are idiotic because they fear that someone in Finland cant do the job....Clevelanders!

But hey, I'm now in India, and outsourcing to India is the mood of the market, is it not? smile.gif
brajamani - Thu, 13 Jan 2005 19:10:27 +0530
Ha! Indeed it is my friend. Unless you are in New Vrindaban where they "import" Indian to work at a pittance wage :frown:
brajamani - Fri, 14 Jan 2005 18:26:07 +0530
Ok I added some HTML and gave it a form to enter the account paramaters, thanks again for the jumpstart smile.gif

CODE
##################################################################
#
##################################################################

$PHP_SELF = $_SERVER['PHP_SELF'];
if ( empty($_SERVER['HTTP_REFERRER']) )
       $REFERRER = $PHP_SELF;
else  
       $REFERRER = $_SERVER['HTTP_REFERER'];

// Send a header
?>
  "http://www.w3.org/TR/html4/loose.dtd">
       
       
       
       PURGE MAILBOX
       
       


       // Check for passed Account
       if ( ! empty($_REQUEST['Account']) )
               $Account = $_REQUEST['Account'];

       // Check for passed Passwd
       if ( ! empty($_REQUEST['Passwd']) )
               $Passwd = $_REQUEST['Passwd'];

       // Are both provided...
       if ( empty($Account) || empty($Passwd) ) {

?>

Purge Your Mailbox




       
       

       
       

       



} else {

       echo "

Processing Your Request

";



      $mbox = imap_open("{YOUR_SERVER}INBOX", "$Account", "$Passwd")
  or die("Can't connect: " . imap_last_error());

$check = imap_mailboxmsginfo($mbox);
echo "Messages before delete: " . $check->Nmsgs . "
n";

imap_delete($mbox,'1:*');

$check = imap_mailboxmsginfo($mbox);
echo "Messages after  delete: " . $check->Nmsgs . "
n";

imap_expunge($mbox);

$check = imap_mailboxmsginfo($mbox);
echo "Messages after expunge: " . $check->Nmsgs . "
n";

imap_close($mbox);
}

?>


               src="http://www.w3.org/Icons/valid-html401"
         alt="Valid HTML 4.01!" height="31" width="88">