|
dion // User Search
dion // User Search
Aug 16, 2002, 6:09pm
I sell it to the state under the condition that I can drive it, I just can't
park on it. We park in the garage. :-P
LOL, I wish states would really do that. Then they'd have to plow my
driveway and I wouldn't have to pay for that plot of land. :-D
[View Quote]"strike rapier" <strike at rapiercom.freeserve.co.uk> wrote in message
news:3d5d57ab at server1.Activeworlds.com...
> But then u will have to pay for parking elsewhere? >_<
>
> - Mark
>
> "dion" <Dion at digevo.net> wrote in message
news:3d5d5705 at server1.Activeworlds.com...
>
>
>
|
Aug 16, 2002, 2:48pm
It's in the eye of the beholder
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D5CDF7A.1060300 at utn.cjb.net...
> There's a helluva lot more to anime than what they show on Cartoon
> Network, y'know. Be a little adventurous and you might be pleasantly
> surprised. And if you say American cartoons are drawn any better, then
> you truly have no idea what you're talking about. :P
>
> Follow-up to general.discussion
>
> bowen wrote:
>
kids
old
>
>
> --
> Goober King
> No accounting for taste, I suppose...
> robrod at prism.net
>
|
Aug 16, 2002, 4:29pm
Yep, that's just ignorance. Anime is a style of animation. However the
animator uses it is his work, not a representation of anime as a whole.
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D5D2EA2.2080908 at utn.cjb.net...
> True enough, but if there's one thing I can't stand, it's people making
> *huge* generalizations about things they've only had a cursory
> experience with. Saying anime sucks because of a few poorly drawn
> movies/shows is like saying the entire American entertainment industry
> sucks because of a few bad movies/shows.
>
> As for the whole exaggeration thing, it's *supposed* to be silly. That's
> why they do it; for comedic effect. If you look at more "serious" anime
> (Princess Mononoke, Cowboy Bebop, etc), those exaggerations rarely
> occur. The same can be said for American cartoons.
>
> dion wrote:
>
shouldn't
anything
>
>
> --
> Goober King
> Well, saying the American entertainment industry sucks might not be such
> a huge stretch...
> robrod at prism.net
>
|
Aug 21, 2002, 10:10pm
Can someone tell me what's wrong with this script?
<script language="JavaScript">
//This Script creates variables for the date and time that is displayed in
the upper right hand corner
function makeArray() {
for (i = 0; i<makeArray.arguments.length; i++)
this[i + 1] = makeArray.arguments[i];
}
var months = new
makeArray('January','February','March','April','May','June','July','August',
'September','October','November','December');
var date = new Date();
var dd = date.getDate();
if (dd == 1 || dd == 21 || dd == 31) {
day = dd + "st";
} else {
if (dd == 2 || dd == 22) {
day = dd + "nd";
} else {
if (dd == 3 || dd == 23) {
day = dd + "rd";
} else {
day = dd + "th";
}
var month = date.getMonth() + 1;
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
var hh = date.getHours();
var hour = (hh > 12) ? hh - 12 : hh;
var mm = date.getMinutes();
if (mm < 10) {
minute1 = "0" + mm;
}
minute1 = "" + minute1
if (hh < 12) {
minute = minute1 + " AM"
} else {
minute = minute1 + " PM"
}
</script>
Thanks,
-Dion
Aug 22, 2002, 3:43pm
Don't look at me, I copied that bullshit from a website, LOL.
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D64D2C0.1010009 at utn.cjb.net...
> Umm, why would you need a function to create an array? Can't you just
> create the array directly, like so?
>
> var months = new
> Array('January','February','March','April','May','June','July','August',
> 'September','October','November','December');
>
> --or--
>
> var months =
> ['January','February','March','April','May','June','July','August',
> 'September','October','November','December'];
>
> As for what's wrong with it, I suspect it's your else-if statements.
> Instead of looking like this:
>
> if (dd == 1 || dd == 21 || dd == 31) {
> day = dd + "st";
> } else {
> if (dd == 2 || dd == 22) {
> day = dd + "nd";
> }
>
> It should look like this:
>
> if (dd == 1 || dd == 21 || dd == 31) {
> day = dd + "st";
> }
> else if (dd == 2 || dd == 22) {
> day = dd + "nd";
> }
>
> Hope that helped! :)
>
> dion wrote:
>
displayed in
makeArray('January','February','March','April','May','June','July','August',
>
>
> --
> Goober King
> Would help if he knew what it was being used for...
> robrod at prism.net
>
|
Aug 22, 2002, 3:44pm
But that will default to the server's time and I want it to be the time that
is on the user's computer so that it shows their the time based on their
timezone.
[View Quote]"kah" <kah at kahnews.cjb.net> wrote in message
news:Xns9272BA80D4771kahatkahnewsdotcjbdo at 64.94.241.201...
> "dion" <Dion at digevo.net> wrote in
> news:3d642bdb$1 at server1.Activeworlds.com:
>
>
> If you've got access to PHP and if it's not meant to be updating every
> second you could make life easier for yourself and use this code:
>
> <?php echo date("jS o\f F Y g:i A", time()); ?>
>
> today at 1PM it would return:
> 22nd of August 2002 1:00 PM
> To get it working, just place that code in the place you want the date and
> time printed and rename the file to .php (if PHP is available).
>
> KAH
>
|
Aug 22, 2002, 3:44pm
It didn't fix it :-\
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D64D2C0.1010009 at utn.cjb.net...
> Umm, why would you need a function to create an array? Can't you just
> create the array directly, like so?
>
> var months = new
> Array('January','February','March','April','May','June','July','August',
> 'September','October','November','December');
>
> --or--
>
> var months =
> ['January','February','March','April','May','June','July','August',
> 'September','October','November','December'];
>
> As for what's wrong with it, I suspect it's your else-if statements.
> Instead of looking like this:
>
> if (dd == 1 || dd == 21 || dd == 31) {
> day = dd + "st";
> } else {
> if (dd == 2 || dd == 22) {
> day = dd + "nd";
> }
>
> It should look like this:
>
> if (dd == 1 || dd == 21 || dd == 31) {
> day = dd + "st";
> }
> else if (dd == 2 || dd == 22) {
> day = dd + "nd";
> }
>
> Hope that helped! :)
>
> dion wrote:
>
displayed in
makeArray('January','February','March','April','May','June','July','August',
>
>
> --
> Goober King
> Would help if he knew what it was being used for...
> robrod at prism.net
>
|
Aug 23, 2002, 11:42am
doesn't have an error at all but nothing comes up where it's supposed to. It
did that a few times before as I was working with the script but this time I
can't figure out the problem.
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D6540A8.2090306 at utn.cjb.net...
> What sort of error messages is it giving you? (If you're using Netscape,
> type "javascript:" in the Location box after running the script,
> otherwise you can double click on the yellow warning triangle in the
> lower-left corner of IE to find out the errors)
>
> dion wrote:
>
makeArray('January','February','March','April','May','June','July','August',
>
>
> --
> Goober King
> Nothing more troubling than broken Javascript that gives no errors...
> robrod at prism.net
>
|
Aug 23, 2002, 11:44am
I only stole that one array part with the months, the rest of it I made
myself.
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D659BD7.6040100 at utn.cjb.net...
> *smacks NCC* Bad NCC, BAD! Those verdammt
> document.all.date/time.innerHTML statements only work in IE! If you're
> going to use those, then you need to check the user's browser and use an
> NS alternative snippit of code. Either that, or don't use them in the
> first place.
>
> If Dion could tell me where he got his code, I'd be able to explain what
> went wrong and it won't have to come to that. (provided, of course, that
> it worked on the site he stole it from. :P)
>
> ncc 72897 wrote:
>
sec =
year =
Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'
Array('January','February','March','April','May','June','July','August','Sep
year;
>
>
> --
> Goober King
> Give him cross-browser compatibility, or give him death!
> robrod at prism.net
>
|
Aug 23, 2002, 1:21pm
LOL, they can get the information from other places on the internet. It's
you that ends up losing a visitor. Plus using the more compatible stuff
tends to work better with future versions and is generally faster.
[View Quote]"agent1" <Agent1 at ShatteredPlatters.com> wrote in message
news:3d664e64$1 at server1.Activeworlds.com...
> Then just make them compatible with one of the HTML 4.0 standards. If a
> browser doesn't comply, too bad for them ;)
>
> -Agent1
>
> "goober king" <gooberking at utn.cjb.net> wrote in message
> news:3D661BF0.9010001 at utn.cjb.net...
> in *ALL* browsers, just NS and IE. I can only test my pages on browsers
> browsers just to test a few pages. :P
>
>
|
Aug 23, 2002, 6:19pm
Nahh, if I ever for whatever reason make a registration form, I still want
people to see the time without logging in.
[View Quote]"kah" <kah at kahnews.cjb.net> wrote in message
news:Xns9273C8822ADD1kahatkahnewsdotcjbdo at 64.94.241.201...
> "dion" <Dion at digevo.net> wrote in
> news:3d6522ed$1 at server1.Activeworlds.com:
>
>
> It's achievable with a bit more work (I know you're not going to use this,
> but I might as well post it anyway). If your site includes user
> registration, you can ask them what timezone they live in, and use some
> other date functions to find the server's TZ and compare it to the user's.
> Mail or reply for code :-))
>
> KAH
|
Aug 24, 2002, 6:01pm
Well, they don't work for people who haven't already registered. :-P
[View Quote]"kah" <kah at kahnews.cjb.net> wrote in message
news:Xns9274959E3161Ekahatkahnewsdotcjbdo at 64.94.241.201...
> "dion" <Dion at digevo.net> wrote in
> news:3d6698c8$1 at server1.Activeworlds.com:
>
>
> Cookies taste good :-))
>
> KAH
|
Aug 23, 2002, 2:12pm
LOL, very good point. :-P
[View Quote]"agent1" <Agent1 at ShatteredPlatters.com> wrote in message
news:3d664dff$1 at server1.Activeworlds.com...
> ::rolleyes:: Obviously if they're "lamers and wannabe hackers" then there
> really shouldn't be any difference in AW, security-wise. Even if they
> actually had the ability to figure out portions of AW's security, plenty
of
> other people also have that ability.
>
> -Agent1
>
> "mp3" <coolbum at msn.com> wrote in message
> news:3d65c573$1 at server1.Activeworlds.com...
> lamers and wannabe hackers and people with AWHACKS now got their
> Citizenships
> be free from those unwanted hackers using awhack.
>
>
|
Aug 24, 2002, 2:30pm
We won't be losing any posts or anything, right?
-Dion
[View Quote]"andras" <andras at andras.net> wrote in message
news:3D678D61.782B6E2C at andras.net...
> Due to a server hw failure all my newsgroups, webpages and mail server are
down for a longer period. Estimated time to fix is the 27th of August.
>
> Apologies for the inconvenience,
> Andras
|
Aug 26, 2002, 11:57am
They were originally going to be banned. Went to the supreme court with it
and everything. We won that one. The same thing happened when the CDRW and
DVDRW was created. It didn't hold up though. :-P
[View Quote]"the derek" <imthederek at yahoo.com> wrote in message
news:3d69c99d at server1.Activeworlds.com...
> you'd see what we Live365 Broadcasters are up against.
>
> i dont see whats the reocrding history's problem is? lol should we ban
VCRs
> so we cant copy movies?
>
>
>
> "pc hamster" <pchamster at email.msn.com> wrote in message
> news:3d69bd9e$1 at server1.Activeworlds.com...
no
make
and
get
have
> of
> percent
upgraded.
Myst
> some
> allow
> argument
>
>
|
Aug 26, 2002, 11:59am
LOL :-D
[View Quote]"shred" <alexraven at diespambots.1starnet.com> wrote in message
news:3D6990D7.7050108 at diespambots.1starnet.com...
> This one was found by Tony M. If you've read or seen the first part of
Lord of the Rings, you should appreciate this :-)
>
> --
>
> Recently one of my friends, a computer wizard, paid me a visit. As we were
talking I mentioned that I had recently installed Windows on my PC, I told
him how happy I was with this operating system and showed him the Windows
CD. Too my astonishment and distress he threw it into my micro-wave oven and
turned it on. I was upset because the CD had become precious to me, but he
said: 'Do not worry, it is unharmed.' After a few minutes he took the CD
out, gave it to me and said: 'Take a close look at it.' To my surprise the
CD was quite cold and it seemed to have become thicker and heavier than
before. At first I could not see anything, but on the inner edge of the
central hole I saw an inscription, in lines finer than anything I have ever
seen before. The inscription shone piercingly bright, and yet remote, as if
out of a great depth:
>
> 4F6E65204F5320746F2072756C65207468656D20616C6C2C204F6E65204F5320746F
> 2066696E64207468656D2C0D0A4F6E65204F5320746F206272696E67207468656D20
> 616C6C20616E6420696E20746865206461726B6E6573732062696E64207468656D
>
> 'I cannot read the fiery letters,' I said.
>
> 'No,' he said, 'but I can. The letters are Hex, of an ancient mode, but
the language is that of Microsoft, which I shall not utter here. But in
common English this is what it says:'
>
> One OS to rule them all, One OS to find them,
> One OS to bring them all and in the darkness bind them.
>
|
Aug 26, 2002, 3:01pm
I wonder what would happen... *chucks a win95 CD in the micro*
[View Quote]"shred" <alexraven at diespambots.1starnet.com> wrote in message
news:3D6A5422.8040109 at diespambots.1starnet.com...
> It's *supposed* to be silly. It's a *joke*. And if anyone does indeed put
a CD into their microwave, they deserve what's coming to them. If they
aren't bright enough to see something so obvious for what it is... well,
just let the problem get rid of itself =P
>
> bowen wrote:
if
>
|
Sep 7, 2002, 11:31am
or we can just let Iraq blow us apart *shrug*
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3d79f178 at server1.Activeworlds.com...
> Or maybe we should break out the ZAW objects and build missile silos
instead because thats what is gonna be next if Bush gets his thick headed
way.
>
> - Mark
> "eric" <eric at disaxiom.net> wrote in message
news:3d79cee4 at server1.Activeworlds.com...
>
>
|
Sep 14, 2002, 12:17pm
that's last generation. ;-)
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3d82f399 at server1.Activeworlds.com...
> o_0 where is the good old PS?
>
> - Mark
> "the derek" <imthederek at yahoo.com> wrote in message
news:3d82e1bb at server1.Activeworlds.com...
results
is
>
>
|
Sep 14, 2002, 12:38pm
that's opinion. This survey is obviously based on the new generation of
consoles. :-P I personally think it goes like this in graphics (best to
worst): X-Box, Gamecube, PS2, PSOne, N64
[View Quote]"strike rapier" <strike at Rapiercom.freeserve.co.uk> wrote in message
news:3d83487e at server1.Activeworlds.com...
> its also got the 2nd best graphics of any console
>
> - Mark
> "dion" <Dion at digevo.net> wrote in message
news:3d83450a$1 at server1.Activeworlds.com...
form
>
>
|
Sep 14, 2002, 12:39pm
I've played all the systems. I answered honestly.
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D8343F1.2090100 at utn.cjb.net...
> How do you expect people to be able to honestly answer this survey
> unless they own all the systems?
>
> the derek wrote:
results
is
>
>
> --
> Goober King
> There's such a thing as asking for *too* much info...
> robrod at prism.net
>
|
Sep 18, 2002, 7:52pm
what do you mean according to manufacturers? I'm sure Microsoft didn't say
they're worse than Sony or Nintendo's. And I think the graphical difference
between PS2 and X-Box is blatantly obvious. PS2 is full of crappy sprites
and a very flat background. On the X-Box, it's nearly impossible to notice
the difference between areas you can't go to and areas you can. The
incredible graphics are seamless throughout the landscape.
[View Quote]"bowen" <thisguyrules at 7k2.4mg.com> wrote in message
news:3d8352c3 at server1.Activeworlds.com...
>
> Too bad X-Box can't draw as many polygons as the other two can.
>
> It's more like this according to the manufacturers: GC, PS2, Xbox,
Dreamcast, PS1,
> N64, SuperNintendo, SegaGenisis, NES, then all the ones predating this
that weren't
> really "consoles."
>
> --Bowen--
>
>
|
Sep 16, 2002, 8:02pm
*shrug* some people are extremely freaked over their privacy, even if it's a
complete stranger that they'll never talk to.
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D8642BC.9050801 at utn.cjb.net...
> Thanks for the tip, but why would anyone care where you're going *from*
> a site? I don't think webmasters are sitting there thinking "Gee, I
> wonder where all my visitors go after they come to my site..."
>
> anduin wrote:
users to this story (http://news.zdnet.co.uk/story/0,,t269-s2122261,00.html)
at ZDNet UK which breaks the news about a privacy bug discovered in in all
Mozilla builds up to and including 1.2a as well as browsers based on Mozilla
such as Netscape 6/7, Chimera and Galeon. The bug
(http://bugzilla.mozilla.org/show_bug.cgi?id=145579) allows a web site to
track where you're going when leaving the site whether you use a link, a
bookmark or type a URL into the address field. This page
(http://members.ping.de/~sven/mozbug/refcook.html) has a demonstration of
the bug and instructions on patching it via a user.js file."
>
>
> --
> Goober King
> Some people are a tad too protective of their privacy...
> robrod at prism.net
>
|
Sep 17, 2002, 4:55pm
LOL, yeah! Putting it as a bookmark is a security risk in itself! :-P
[View Quote]"goober king" <gooberking at utn.cjb.net> wrote in message
news:3D874C01.8070009 at utn.cjb.net...
> I suppose that could be a concern, except I don't know too many people
> who bookmark FTP sites in their web browser. Most people I know use an
> FTP program like WS_FTP or CuteFTP to get their FTP stuff done. Still,
> I'm sure the Mozilla folks will have it all patched up in no time.
>
> supa wrote:
news:3D8642BC.9050801 at utn.cjb.net...
>
>
> --
> Goober King
> The power of open source
> robrod at prism.net
>
|
Sep 18, 2002, 2:10am
but as far as im concerned anyone can take a look at my e-mail. I don't save
any other passwords. But putting it as a bookmark would just make it so
blatantly obvious to be a security risk that it just seems stupid. :-P
[View Quote]"swe" <swe at emptyco.com> wrote in message
news:3d878bc5 at server1.Activeworlds.com...
> so is leaving you aw password on save, or saving all your outlook
passwords
> for e-mail or for msn, icq, yahoo, etc. but its a risk that if taken,
saves
> alot of time
>
> "dion" <Dion at digevo.net> wrote in message
> news:3d877ab4$1 at server1.Activeworlds.com...
> *from*
>
>
|
Sep 19, 2002, 8:49pm
don't tell us, tell them :-P
[View Quote]"god zedle" <greg at greggage.com> wrote in message
news:3d8a360d$1 at server1.Activeworlds.com...
> I have a lot of computers, new, old.. I can test on an old one if needed.
>
> "agent1" <webmaster at shatteredplattersDOTcom> wrote in message
> news:3d8a33ff$1 at server1.Activeworlds.com...
> you. It is their software, and they really *don't* have to allow anyone
> outside of their company to test at all anyway...
> beta? This is not right at all.
>
>
|
Sep 24, 2002, 9:18pm
When I right click my recycle bin and click empty it says:
"Are you sure you want to delete 'WINDOWS'?"
Somehow... that doesn't sound right at all. When I open my recycle bin I see
nothing. Without realizing what it said, I had clicked yes before and it
didn't do anything. I'm just wondering why it think my windows folder is in
the recycle bin? It just sorta freaks me out that WinXP thinks that it's in
the recycle bin. I'm scared to reboot... it might not come back up... :-\
HELP!
-Dion
Sep 24, 2002, 9:57pm
.... I didn't... and if I did, it won't delete and it's not showing up in my
recycle bin when I look in it.
[View Quote]"bowen" <thisguyrules at 7k2.4mg.com> wrote in message
news:3d90fb9e at server1.Activeworlds.com...
> probably just deleted a folder Called WINDOWS.
>
> --Bowen--
>
> "dion" <Dion at digevo.net> wrote in message
news:3d90f2c9$1 at server1.Activeworlds.com...
see
in
in
:-\
>
>
|
Sep 24, 2002, 11:43pm
Well I know I didn't delete Windows, I'm just wondering what's going on. It
seems like a strange bug so if I reboot, it might delete it in DOS or who
knows what. Just seems strange and slightly frightening.
[View Quote]"themask 13" <rickyt50 at attbi.com> wrote in message
news:3d9113ea$1 at server1.Activeworlds.com...
>
> if you deleted windows, it would of said all these erros that these files
> are in use, etc.
>
>
|
Sep 25, 2002, 5:09pm
Alright, this got weirder.
I haven't done anything since I posted this and some how the recycle bin
icon is still shown as being full (has a paper thing in it) but when I
explore it, it is empty and it won't let me empty it (option is greyed out).
[View Quote]"dion" <Dion at digevo.net> wrote in message
news:3d90f2c9$1 at server1.Activeworlds.com...
> When I right click my recycle bin and click empty it says:
> "Are you sure you want to delete 'WINDOWS'?"
>
> Somehow... that doesn't sound right at all. When I open my recycle bin I
see
> nothing. Without realizing what it said, I had clicked yes before and it
> didn't do anything. I'm just wondering why it think my windows folder is
in
> the recycle bin? It just sorta freaks me out that WinXP thinks that it's
in
> the recycle bin. I'm scared to reboot... it might not come back up... :-\
>
> HELP!
> -Dion
>
>
|
|