Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Site Related Forums
 The Yak Corral
 windows XP: sleep or faint ?

Author  Topic 

afrika
Master Smack Fu Yak Hacker

2706 Posts

Posted - 2006-08-07 : 08:46:13
hello,
i just got this toshiba satellite duo core centrino.

However, anytime i put it in standby or hibernation, it never comes back on, when i move my mouse or press the power button

Just wondering if anyone has any ideas whats wrong here ?

Afrika

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2006-08-07 : 10:21:37
Seems to be a driver problem.

Peter Larsson
Helsingborg, Sweden
Go to Top of Page

eyechart
Master Smack Fu Yak Hacker

3575 Posts

Posted - 2006-08-07 : 11:16:06
yeah, update all your drivers from toshiba's site. btw, standby and hibernate are pretty flakey on all flavors of laptops running windows.



-ec
Go to Top of Page

SamC
White Water Yakist

3467 Posts

Posted - 2006-08-07 : 11:38:48
Contest: Clearly explain the differences of Sleep and Hibernate with the fewest possible words.
Go to Top of Page

eyechart
Master Smack Fu Yak Hacker

3575 Posts

Posted - 2006-08-07 : 11:45:13
quote:
Originally posted by SamC

Contest: Clearly explain the differences of Sleep and Hibernate with the fewest possible words.



sleep - machine technically still "on" with a small trickle of electricity keeping things alive.

hibernate - all contents of RAM written to a disk file and then powered down. Machine is "off".



-ec
Go to Top of Page

Wanderer
Master Smack Fu Yak Hacker

1168 Posts

Posted - 2006-08-07 : 12:29:48
quote:
Originally posted by SamC

Contest: Clearly explain the differences of Sleep and Hibernate with the fewest possible words.



Sleep = Human resting State
Hibernate = Bear's resting state

...

you didn't say it had to be in the context of Intel CPU's :-)

*##* *##* *##* *##*

Chaos, Disorder and Panic ... my work is done here!
Go to Top of Page

Michael Valentine Jones
Yak DBA Kernel (pronounced Colonel)

7020 Posts

Posted - 2006-08-07 : 14:59:07
Sleep = 4 margaritas
Hibernate = 14 margaritas


Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2006-08-07 : 21:59:15
ShutDown = 24 margaritas ?? !!
Go to Top of Page

elwoos
Master Smack Fu Yak Hacker

2052 Posts

Posted - 2006-08-08 : 03:07:29
quote:
Clearly explain the differences of Sleep and Hibernate with the fewest possible words


Sleep = dozy machine, may or not wake up
Hibernate = dozy machine, may or not wake up next summer


steve

-----------

Don't worry head. The computer will do all the thinking from now on.
Go to Top of Page

Wanderer
Master Smack Fu Yak Hacker

1168 Posts

Posted - 2006-08-08 : 04:57:22
You're all wrong - although of course, there are so many ways to calculate difference.

Reviewing the contest:
the difference between sleep and hiberante
restated as:
sleep-hibernate=X solve X


SET NOCOUNT ON
PRINT 'Calculate difference based on Ascii String value of Sleep and Hibernate'
DECLARE @position int, @string varchar(15), @NumberString varchar(100), @SleepValueF float, @HibValueF float
SET @position = 1
SET @string = 'sleep'
SET @NumberString = ''
WHILE @position <= DATALENGTH(@string) BEGIN
SELECT @NumberString = @NumberString + STR(ASCII(SUBSTRING(@string, @position, 1)))
SET @position = @position + 1
END
SELECT @SleepValuef = CONVERT (float, replace(@NumberString,' ',''))

SET @position = 1
SET @string = 'hiernate'
SET @NumberString = ''
WHILE @position <= DATALENGTH(@string) BEGIN
SELECT @NumberString = @NumberString + STR(ASCII(SUBSTRING(@string, @position, 1)))
SET @position = @position + 1
END
SELECT @HibValuef = CONVERT (float, replace(@NumberString,' ',''))
SELECT @SleepValuef AS 'Sleep Ascii String',@HibValuef AS 'Hibernate Ascii String',@SleepValuef-@HibValuef 'Ascii String Difference'
--OR
PRINT 'Calculate difference based on Ascii sum value of Sleep and Hibernate'
DECLARE @SleepValueB bigint, @HibValueB bigint
SET @position = 1
SET @string = 'sleep'
SET @SleepValueB = 0
WHILE @position <= DATALENGTH(@string) BEGIN
SELECT @SleepValueB = @SleepValueb + (ASCII(SUBSTRING(@string, @position, 1)))
SET @position = @position + 1
END
SET @position = 1
SET @string = 'hiernate'
SET @HibValueb = 0
WHILE @position <= DATALENGTH(@string) BEGIN
SELECT @HibValueb = @HibValueb + (ASCII(SUBSTRING(@string, @position, 1)))
SET @position = @position + 1
END

SELECT @SleepValueb AS 'Sleep Ascii Sum',@HibValueb AS 'Hibernate Ascii Sum',@SleepValueb-@HibValueb AS 'Ascii sum difference'



Answers:

Calculate difference based on Ascii String value of Sleep and Hibernate
Sleep Ascii String Hibernate Ascii String Ascii String Difference
---------------------- ---------------------- -----------------------
115108101101112 1.04105101114111E+22 -1.0410509996303E+22

Calculate difference based on Ascii sum value of Sleep and Hibernate
Sleep Ascii Sum Hibernate Ascii Sum Ascii sum difference
-------------------- -------------------- --------------------
537 848 -311



:lol:

*##* *##* *##* *##*

Chaos, Disorder and Panic ... my work is done here!
Go to Top of Page

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2006-08-08 : 05:39:08
quote:
Originally posted by Kristen

ShutDown = 24 margaritas ?? !!

Isn't that hardware failure?

Peter Larsson
Helsingborg, Sweden
Go to Top of Page

SamC
White Water Yakist

3467 Posts

Posted - 2006-08-08 : 07:55:30
Where do I pour margarita mix into my laptop?
Go to Top of Page

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2006-08-08 : 09:58:00
quote:
Originally posted by SamC

Where do I pour margarita mix into my laptop?


You don't. You pour the margarita into a glass, press the button to eject the holder and put the margarita on the holder.


KH

Go to Top of Page
   

- Advertisement -