goldeagle2005 33 Finkus Stinkalotus Team Colleague

A 2002 Hyundai Santro.

Compact, maneuverable, comfortable, great mileage (16 kilometers per litre) and a great AC system. Ofcourse, the Sony CD System packs a wallop too.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Here's a cheesy fix. Why not add some sort of promotional/informative notice for registered users? That ought to take care of your problem. I know it's not an elegant fix from a programming point of view, but if it works, well...why not?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

No, you should use as much security as you can.

I'm saying, though, that if the page you posted is itself accessed securely, via HTTPs, then you've taken a reasonable first step.

Access from that page to the various sites, should already be secure.

The page (whose code i posted) is hosted on Geocities, so https is out. In this case, if I use the page to login, it willnot be secure, right?

I guess what I'm asking is: even if I use https, will it be as secure to use this page as it is to use gmail's home page? I'm guessing it won't be.

If possible, can you please examine the code and let me know ?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

First off, check if the HDD is detected in the BIOS, if it is, you need to enable the SATA channel in the BIOS. Once this is done, boot to Windows (from your old HD). You'll be prompted with the Add new hardware wizard. Follow the prompts and insert the mobo driver disk when you're asked to. This should take care of your problem. Just to be doubly sure, go to Device Manager and verify your new HD is correctly detected under the 'Disk Drives' category.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

So you're saying that I could pass the username and password without hashing it, but use https and be assured of a relatively safe transmission?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Try powering the computer with the most minimalist setup. ie. CPU, one RAM stick and a VGA card (if you dont have one onboard). If the computer doesn't work, try cleaning up all the contact areas and make sure all hardware is plugged in tight.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Well, if movies and music play, the hardware's fine, the connections are fine.

Try reinstalling the audio codecs

For the system sounds, you sure youve actually set sounds for the events?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

If he hosts it securely, using "https" to access it, and it links to the various services securely, using "https", then it should be reasonably secure.

I don't know. I'm guessing gmail (as an example), does hash the passwords during sign in. This is in addition to the secure http channel used. If you take a look at the code, I don't think it's being encrypted anywhere.

What do you think?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Sometimes, resetting the CMOS can help. Remove the CMOS battery and leave the mobo for 10-15 minutes. Re insert the battery and see if this helps.

Some models may have a CMOS reset jumper. Try to short this jumper and the CMOS should clear itself.

Else, as nizzy suggested, check to make sure the CPU is seated firmly, theres no dust on any sockets and the RAM is plugged in firmly. Then, leave only the VGA card, one RAM stick plugged in and see if the system powers up.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get an incomplete post

We put in complete ones

goldeagle2005 33 Finkus Stinkalotus Team Colleague

This thread just keeps going and going and going and going and.....

Just like the energizer bunny

151

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Hey Dani

Don't you know if you know, but the problem I mentioned occurs only if you're logged in. If you log out, everything works fine.

Hope this helps.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Hey all

A friend of mine just designed a page and added the yahoo and gmail login boxes to it. Now, it works. What I want to ask is this. If I he was to host it, and use it to login to yahoo, gmail whatever, would it be secure? My guess is it wouldn't be, but I could be wrong. By secure, I mean will it be possible to sniff the username and password when he uses this page to login?

The code for this file is as follows. Also, the page is a regular HTML page (.htm) and not ASP, PHP etc.

<html>
<script type=text/javascript>
<!--
  var start_time = (new Date()).getTime();
// -->
</script>

<body>
<table width="542"><tr> <td>


<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Welcome</title>

<style type=text/css>
<!--
body,td,div,p,a,font,span {font-family: arial,sans-serif}
body {margin-top:2}

.c {width: 4; height: 4}

.bubble {background-color:#C3D9FF}

.tl {padding: 0; width: 4; text-align: left; vertical-align: top}
.tr {padding: 0; width: 4; text-align: right; vertical-align: top}
.bl {padding: 0; width: 4; text-align: left; vertical-align: bottom}
.br {padding: 0; width: 4; text-align: right; vertical-align: bottom}

.form-noindent {background-color: #ffffff; border: #C3D9FF 1px solid}

// -->
</style>
<script type=text/javascript src="https://mail.google.com/mail?view=page&name=browser"></script>

<script type=text/javascript>
<!--

if (top.location != self.location) {
  top.location = self.location.href;
}

function SetGmailCookie(name, value) {
  document.cookie = name + "=" + value + ";path=/;domain=.google.com";
}

function lg() {
  var now = (new Date()).getTime();

  var cookie = "T" + start_time + "/" + start_time + "/" + now;
  SetGmailCookie("GMAIL_LOGIN", cookie);
}

function gaiacb_onLoginSubmit() {
  lg();
  if …
goldeagle2005 33 Finkus Stinkalotus Team Colleague

you get enlightened


i put in my inconplete assignments

goldeagle2005 33 Finkus Stinkalotus Team Colleague

147

goldeagle2005 33 Finkus Stinkalotus Team Colleague

There is a way to get a gmail account without invites. Head to Google Accounts and register for an account there.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Spaghetti Code --> Spaghetti

goldeagle2005 33 Finkus Stinkalotus Team Colleague

>You do realise that in C++, the main function, when an integer, expects a return value.
As a matter of fact, I'm quite familiar with that rule and all of the details that go along with it. Are you?

>So you shouldn't snip off the "return 0;" part.
In standard C++, if you fall off the end of the main function, 0 is returned implicitly. When I'm writing pre-standard C++, the rules for C89 apply and you're correct. But I'm not, so you're not. I would appreciate not being incorrectly corrected, so you would best do your research before asuming that I've made a mistake.

>If you don't want to return a value in main(), declare main() as void
This proves that you're not yet qualified to correct me on technical details of the C++ standard. void main is:

1) Non-portable on a hosted implementation that explicitly allows it.
2) Undefined on a hosted implementation that does not allow it.

At least one very common implementation doesn't allow void main, so your suggestion is very poor. Even on implementations that allow it, void main buys you *nothing*, especially in standard C++ where it doesn't even save you keystrokes.

>int main(void)
This is also a matter of style. C++ doesn't require empty parameter lists to be designated by void.

>void main() is never ever acceptable
It's perfectly acceptable on a freestanding implementation. The rules we refer to when talking about main are exclusive to hosted …

goldeagle2005 33 Finkus Stinkalotus Team Colleague

I tried to reproduce what he said, but had no success (failure). It may be an issue with FF on Linux.

Using Windows Server 2003 with FF 1.5.0.2

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Confusion --> headache

goldeagle2005 33 Finkus Stinkalotus Team Colleague

My favorite has to be:

"Newbie, if the next two words out of your mouth aren't 'See ya' then the third word will be 'Oh my god. My crotch. You've punched me in my crotch.'."

goldeagle2005 33 Finkus Stinkalotus Team Colleague

125

goldeagle2005 33 Finkus Stinkalotus Team Colleague

the are all the same-->What's going on here?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

I know it shouldn't be bothering me so much, but the link I posted earlier, (www.asusceo.in) really gets my blood boiling. I mean, how can someone actually put up a site like that? It's a shame what junk is allowed to pass as web sites these days.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get Olive Oyl


I put in Spinach

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Pretty sure she does. Don't you Dani?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get Chow Mein

I put in some curry (YUM)

goldeagle2005 33 Finkus Stinkalotus Team Colleague

I was kidding --> whew

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Hey
We all know there's no dearth of badly designed web sites out there. Well, why don't we start listing them here? Anyone who thinks a web site is bad in terms of design, content, implementation, whatever can post a link here so we can all see what NOT to do when creating web sites.

Remember you're free to pass comments about the web sites already posted as well...

I'll go first with www.asusceo.in

What do I hate about this site? Pretty much everything. The color combination, the bad spelling and grammar, pathetic layout, no logical flow of content.

The worst part is that I was supposed to design the site, but someone else came up with this design first and the authorities loved it. As soon as I saw this design, I pulled out of the design committee.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

I am sticking to my position: I prefer DaniWeb.

I concur. This is the best place for solutions...

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get to pay for solutions available for free

I get free solutions here at Daniweb

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get plenty of (at times annoying) info about how you're pritected

I put in ZA program updates

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Now that would be worth dying for. Hell, I'd quit college for a few months, help ppl out/recommend products and get new computer components.

Lets see...I need

1 AMD Athlon X2 CPU
1 ASUS A8N32-SLI Deluxe mobo
1 ASUS EN7800GT Dual card GPU
1 Creative X-FI Fata1ity
1 Creative Gigaworks 7.1 surround system


Ahh bliss

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Possible. There was this one guy, sorodrow, if I remember correct. He used profanities like crazy. Dani (or one of the mods) banned him for trolling. All his posts wer deleted as well.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get a bloated piece of software that slows your system to a crawl

I put in Avast! A/V

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Is this the same xbox guy that was banned a few weeks ago for all of his obnoxious comments?

Who was the xbox guy who was banned? And for what reason?

goldeagle2005 33 Finkus Stinkalotus Team Colleague

First off, I'd try cleaning the slot. If that doesn't work, you're going to have to contact Dell, as the slot may have to be changed. If the system is still under warranty (and you haven't voided it by installing the new RAM), you can ask Dell to replace the mainboard.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

uhhhh......I seem to be caught between a rock and a hard place. ;)

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get Ms. Pacman

I put in a 1Gen iPod

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get the Crazy Frog

I go crazy just putting him in there

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Dani there is one hidden fellow who doesn't want Narue to stay .... take a look at his post :

I don't care . . . let her go do whatever it is she wants to do.
As long as dani's here I'm happy :-) (this was the hidden part)

Our administrator has an admirer...

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get to be all leathry

I put in my old sneakers

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Well, its worth a shot

goldeagle2005 33 Finkus Stinkalotus Team Colleague

Goes to show our forum's popular all over the world...

goldeagle2005 33 Finkus Stinkalotus Team Colleague

try lookin on the video card itself, if that doesn't work go to Start, Programs, Accesories, System Tools, System Information. Then go into components then display. Under name it should tell you what type of video card you have. Then go to manufacturers webite and download drivers from there.

Sysinfo only queries the drivers installed for the hardware info. hence, it will show "Standard PCI VGA bla bla bla"

The best way to find your manufacturer is to simply look at the GFX card.

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get a stick of SO-DIMM memory

I put in my antiquated 810E mobo

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get a narf

I put in a zort

goldeagle2005 33 Finkus Stinkalotus Team Colleague

11f

goldeagle2005 33 Finkus Stinkalotus Team Colleague

You get 'moderated'

I put in the meaning of life

goldeagle2005 33 Finkus Stinkalotus Team Colleague

If it hangs, then I guess your motherboard doesn't support overclocking. If you really want to overclock, get a good mobo like DFI, MSI, ASUS etc. These boards are good for overclocking. I've overclocked my CPU by 350 MHz, just by increasing the FSB by 37 MHz. It's the MSI K8N Neo3 board