<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by RainRainGirl</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Tue, 21 Jul 2026 13:11:46 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Software solution to keyboard double-typing?</title>
            <link>http://forum.lowyat.net/topic/4298227</link>
            <description>hello, I have K70 RGB recently purchased.. few month ago.&lt;br /&gt;Ive become quite accustom to the soft type and would like to fix issue with it now.&lt;br /&gt;2 week ago I took out the keys, remove dust with canned air, and reseat gently with o-rings in place.&lt;br /&gt;1 week ago I purchase new ssd and have fresh windows install, but with later (current) version of CUE firmware.&lt;br /&gt;The day since new ssd, my kb have been double type some letters, E 3 L most common. &lt;br /&gt;I take the cap off again, press key down and blow air under the switch, but it does not solve my issuee.&lt;br /&gt;there it goees ==;&lt;br /&gt;RMA is quite costly.. and I do not have the skill to replace myself.&lt;br /&gt;I have tried uninstall the firmware but on reinstall the version is still the latest one, without updating.&lt;br /&gt;&lt;br /&gt;Only left to look to AHK scripts. When my mouse die I use AHK script to block the extra clicks.&lt;br /&gt;So I&amp;#39;ve found 3 scripts but they do not work very well.&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('59eeab23664b01cb3e3f84286a687114')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;59eeab23664b01cb3e3f84286a687114&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&amp;#036;e::&lt;br /&gt;{&lt;br /&gt;Start:&lt;br /&gt;Downkey := A_TickCount&lt;br /&gt;sendInput {e}&lt;br /&gt;KeyWait e&lt;br /&gt;KeyWait e, d T0.2f&lt;br /&gt;if (ErrorLevel = 0)&lt;br /&gt;{&lt;br /&gt;if (A_TickCount - Downkey &amp;lt; 100)&lt;br /&gt;{&lt;br /&gt;Send {F13}&lt;br /&gt;}&lt;br /&gt;Return&lt;br /&gt;}&lt;br /&gt;}&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;this 1 suppose to block everything under 100ms?&lt;br /&gt;but it will block intentional letters too. &amp;quot;letters&amp;quot; becomes &amp;quot;letrs&amp;quot; and &amp;quot;else&amp;quot; becomes &amp;quot;els&amp;quot;, the delay is much higher than the delta 100. changing that number result in no difference. So it erase, but too well... and even still the 0ms double-letter will leak out.&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('4c720a37370ada5063cbed474afe9008')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;4c720a37370ada5063cbed474afe9008&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;#Persistent&lt;br /&gt;OnExit, Unhook&lt;br /&gt;&lt;br /&gt;hHookKeybd := SetWindowsHookEx(WH_KEYBOARD_LL   := 13, RegisterCallback(&amp;quot;Keyboard&amp;quot;, &amp;quot;Fast&amp;quot;))&lt;br /&gt;Return&lt;br /&gt;&lt;br /&gt;Keyboard(nCode, wParam, lParam)&lt;br /&gt;{&lt;br /&gt;   global&lt;br /&gt;   Critical&lt;br /&gt;   If(&amp;#33;nCode)&lt;br /&gt;   {	If(wParam = 256)	;256 is keydown&lt;br /&gt;		{	keyInfo := NumGet(lParam+0, 0) . &amp;quot;|&amp;quot; . NumGet(lParam+0, 4) . &amp;quot;|&amp;quot; . NumGet(lParam+0, 8) &amp;amp; 1	;save key press info (vkCode|scCode|Extended)&lt;br /&gt;			keyTime := NumGet(lParam+0, 12)	;save press time&lt;br /&gt;			If(keyInfo &amp;#33;= lastKeyInfo)&lt;br /&gt;			{	lastKeyInfo := keyInfo&lt;br /&gt;				lastTime := keyTime&lt;br /&gt;			}&lt;br /&gt;			Else&lt;br /&gt;			{	delta := keyTime - lastTime&lt;br /&gt;				OutputDebug, time between: %delta%&lt;br /&gt;				lastTime := keyTime&lt;br /&gt;			}&lt;br /&gt;		}&lt;br /&gt;	}&lt;br /&gt;	If(delta &amp;lt; 100)	;if time delta between identical key presses is less than 100ms absorb it...&lt;br /&gt;	{	OutputDebug, Absorbing...&lt;br /&gt;		Return True	;prevent it from being processed further&lt;br /&gt;	}&lt;br /&gt;	Else&lt;br /&gt;	{	Return CallNextHookEx(nCode, wParam, lParam)	;pass it on&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;SetWindowsHookEx(idHook, pfn)&lt;br /&gt;{&lt;br /&gt;   Return DllCall(&amp;quot;SetWindowsHookEx&amp;quot;, &amp;quot;int&amp;quot;, idHook, &amp;quot;Uint&amp;quot;, pfn, &amp;quot;Uint&amp;quot;, DllCall(&amp;quot;GetModuleHandle&amp;quot;, &amp;quot;Uint&amp;quot;, 0), &amp;quot;Uint&amp;quot;, 0)&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;UnhookWindowsHookEx(hHook)&lt;br /&gt;{&lt;br /&gt;   Return DllCall(&amp;quot;UnhookWindowsHookEx&amp;quot;, &amp;quot;Uint&amp;quot;, hHook)&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;CallNextHookEx(nCode, wParam, lParam, hHook = 0)&lt;br /&gt;{&lt;br /&gt;   Return DllCall(&amp;quot;CallNextHookEx&amp;quot;, &amp;quot;Uint&amp;quot;, hHook, &amp;quot;int&amp;quot;, nCode, &amp;quot;Uint&amp;quot;, wParam, &amp;quot;Uint&amp;quot;, lParam)&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Unhook:&lt;br /&gt;	UnhookWindowsHookEx(hHookKeybd)&lt;br /&gt;	ExitApp&lt;br /&gt;Return&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;this one does not work at all, even the delta 1000.&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('425d97d7ea46f0073d4170af916b1bd8')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;425d97d7ea46f0073d4170af916b1bd8&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;#UseHook On&lt;br /&gt;&lt;br /&gt;c::&lt;br /&gt;{&lt;br /&gt;	k_ThisTick := A_TickCount               ; grab the current tick&lt;br /&gt;	ElapsedTime := k_ThisTick - k_LastTick  ; time since last hotkey (ticks)&lt;br /&gt;	;MsgBox % &amp;quot;This much time has elapsed: &amp;quot; . ElapsedTime ; for debugging&lt;br /&gt;	&lt;br /&gt;	; ElapsedTime will be null the first time&lt;br /&gt;	if (&amp;#33;ElapsedTime || ElapsedTime &amp;gt; 50)&lt;br /&gt;	{&lt;br /&gt;		SendInput c&lt;br /&gt;		k_LastTick := k_ThisTick        ; store the current tick for next time&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;return&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;slightly effective, but still allow letter to leak. also makes the text lag when i type.&lt;br /&gt;&lt;br /&gt;so my question, do any of you have effective script to block these extra letter out? else I fear I must RMA.&lt;br /&gt;&lt;br /&gt;part2-&lt;br /&gt;&lt;br /&gt;my SSD spitting out atapi ide controller error like crazy.&lt;br /&gt;I off pc, reseat sata cable, boot and the kernel corrupt / missing  &lt;!--emo&amp;:bangwall:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/bangwall.gif' border='0' style='vertical-align:middle' alt='bangwall.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;reset to last known good config.. &lt;br /&gt;some minor error i fix and it so far okay, 4 days now.&lt;br /&gt;as far Im able to tell theres 3 cause of this atapi error.&lt;br /&gt;1 - controller on mobo, mobo is dying / sata port dmg1 - must replace mobo&lt;br /&gt;2 - sata connection poor / improper - must reseat / replace cable&lt;br /&gt;3 - ssd die - rma&lt;br /&gt;&lt;br /&gt;my fren say to use crystaldiskinfo so ive run it, but all result are green.&lt;br /&gt;CDI report S.M.A.R.T result, so would it not say if SSD with issue?&lt;br /&gt;therefore the result mean problem is either my cable or mobo?&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Technical Support</category>
            <pubDate>Tue, 23 May 2017 08:20:47 +0800</pubDate>
        </item>
        <item>
            <title>PC suddenly freeze, blackscreen after boot</title>
            <link>http://forum.lowyat.net/topic/3599386</link>
            <description>I was playing FFXIV okay, music on, just chatting.&lt;br /&gt;The game sudden freeze, and at same time my music cut. Nothing responsive, hard freeze, no cursor. The PC still like normal, fan noise, lights on, etc.&lt;br /&gt;&lt;br /&gt;Reboot, black screen.&lt;br /&gt;I shut off, hard power down, wait 2 min, power up.&lt;br /&gt;Mobo screen appear, then weird white/blue bar flash onscreen in place of text menu.. garbled bars? .5-1s later the Windows &amp;quot;hey, u just crashed - boot into safe mode?&amp;quot; menu appears properly.&lt;br /&gt;Select &amp;quot;normal boot&amp;quot; and Windows logo briefly appear, then blank/black screen.&lt;br /&gt;if I will wait 1min more, monitor turns off due to lack of input - no signal.&lt;br /&gt;&lt;br /&gt;Soft reboot, crash menu appears, Im able to boot into safe mode + networking.&lt;br /&gt;Now here.. unsure wat to do.&lt;br /&gt;&lt;br /&gt;friend recommend me &amp;quot;whocrashed&amp;quot; program, but because it did not bsod, there is no crash report for it to analyze. &lt;br /&gt;Event log has error, but only from subsequent attempt to boot windows. The initial freeze has no error in the log, also no hardware error in log.&lt;br /&gt;&lt;br /&gt;Im planning previously to buy new gpu anyways.. but want to rule out sth scarier like mobo, ram failure. Or for certain say its gpu tat fail? but I duno how. &lt;br /&gt;&lt;br /&gt;temps were quite normal before freeze. cpu 57-60C, gpu 60-63C.&lt;br /&gt;&lt;br /&gt;[youtube]ZLjTPhrgv5Y[/youtube]&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/vmxjL9R.jpg' border='0' alt='user posted image' /&gt; - the bar no longer appear, but &amp;#33; mark instead.</description>
            <author>RainRainGirl</author>
            <category>Technical Support</category>
            <pubDate>Fri, 05 Jun 2015 09:27:31 +0800</pubDate>
        </item>
        <item>
            <title>gfxcard fan high pitch buzzing noise</title>
            <link>http://forum.lowyat.net/topic/2947437</link>
            <description>my pc running 24/7, the gpu working okay, but today i notice a buzzing noise.&lt;br /&gt;ive isolated it to a single fan on the gfx card. it is uneven, quite high pitch, noticeable thru the case.&lt;br /&gt;sounds abit like when u stick a thin strip of plastic or paper into a room fan, tat buzzing noise, but srsly hi-pitch&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.asus.com/Graphics_Cards/ENGTX560_Ti_DCII_TOP2DI1GD5/' target='_blank'&gt;http://www.asus.com/Graphics_Cards/ENGTX56...CII_TOP2DI1GD5/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;this card, the casing looks quite solid. im not sure abt opening it myself.. &lt;br /&gt;is it possible to ask a shop replace the fan? or must rma?&lt;br /&gt;&lt;br /&gt;not sure i want to lose uptime over fan noise.. &lt;br /&gt;but worry it will become worse or sth loose, n quite annoying ard.</description>
            <author>RainRainGirl</author>
            <category>Technical Support</category>
            <pubDate>Wed, 04 Sep 2013 14:01:23 +0800</pubDate>
        </item>
        <item>
            <title>LCD monitor &amp;quot;burn in&amp;quot; my firefox tabs..</title>
            <link>http://forum.lowyat.net/topic/2714080</link>
            <description>I noticed funny look at top of screen, so prtscr it to compare to desktop. Video card does not see it.. when I shut monitor off/on again it still appear.&lt;br /&gt;&lt;br /&gt;&lt;a href='http://puu.sh/27zmG/b6593927c4' target='_blank'&gt;http://puu.sh/27zmG/b6593927c4&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;can see a bit on this photo.&lt;br /&gt;it is much clearer though. it reads: [ x ] | [ ] Passive Skill Tree - Path of Exile      [ x ] |_______________________________|&lt;br /&gt;quite clearly firefox tab, right in middle of my screen  &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;can recommend how to fix? it is only the monitor with memory of this.&lt;br /&gt;&lt;br /&gt;edit: okay thanks. That one is pay to use.. but I&amp;#39;ve found similar at &lt;a href='http://www.flexcode.org/lcd2.html' target='_blank'&gt;http://www.flexcode.org/lcd2.html&lt;/a&gt; which solved it mostly.. guess just need to run longer more.</description>
            <author>RainRainGirl</author>
            <category>Technical Support</category>
            <pubDate>Sun, 24 Feb 2013 21:27:20 +0800</pubDate>
        </item>
        <item>
            <title>PCIe 3.0 gfx compat with 2.0 mobo?</title>
            <link>http://forum.lowyat.net/topic/2664770</link>
            <description>My &lt;a href='http://www.asus.com/Graphics_Cards/NVIDIA_Series/ENGTX560_Ti_DCII_TOP2DI1GD5/' target='_blank'&gt;gfx card&lt;/a&gt; has died quite sudden 1, so I&amp;#39;m looking to replace it while the RMA is sorted. My &lt;a href='http://ca.msi.com/product/mb/P67S-C43.html#?div=Detail' target='_blank'&gt;mobo&lt;/a&gt; lists the PCIe x16 slot as &amp;quot;2nd gen&amp;quot;. For 560ti, this is okay. But will it be okay? For the plain &lt;a href='http://www.gigabyte.com/products/product-page.aspx?pid=4361#sp' target='_blank'&gt;gtx 660 type card&lt;/a&gt; that list &amp;quot;PCIe 3.0 x16&amp;quot; as interface type. Can PCIe 3.0 work in 2.0 slot like USB3.0 in USB 2.0? Or must I upg my mobo oso  &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;nvm, i google edi &lt;!--emo&amp;-_---&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sleep.gif' border='0' style='vertical-align:middle' alt='sleep.gif' /&gt;&lt;!--endemo--&gt;;&lt;br /&gt;&lt;br /&gt;www.evga.com/forums/tm.aspx?m=1515736&amp;amp;mpage=1&lt;br /&gt;&lt;a href='http://www.tomshardware.com/forum/349048-33-will-pcie-card-work-pcie-slot' target='_blank'&gt;http://www.tomshardware.com/forum/349048-3...-work-pcie-slot&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;look to work okay~</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Sat, 12 Jan 2013 01:51:54 +0800</pubDate>
        </item>
        <item>
            <title>Confused - motherboard beep codes</title>
            <link>http://forum.lowyat.net/topic/2285478</link>
            <description>Since I build my rig last year, at some times during operation the pc will beep 6 times, quickly. I can&amp;#39;t think of any pattern when it will occur, sometimes i&amp;#39;m gaming, other, watching movie, tonight only listening music, sometimes while idle &amp;amp; i&amp;#39;m not using it. There are no issue so far, and no device failure message, driver failure, or whatever that I can see. But i&amp;#39;m quite worried why this beeping is occuring. It is infrequent. Maybe once every 1-2 month. Temps seem stable and low when it happens - between 25-40C, gpu 45-50C.&lt;br /&gt;&lt;br /&gt;So I&amp;#39;ve tried to google it, result in this list: &lt;a href='http://forum-en.msi.com/faq/article/bios-beep-codes' target='_blank'&gt;http://forum-en.msi.com/faq/article/bios-beep-codes&lt;/a&gt;&lt;br /&gt;but I don&amp;#39;t know what category mine is.. confusing.&lt;br /&gt;&lt;br /&gt;Manual does not say, or have beep code section.&lt;br /&gt;Product spec: &lt;a href='http://www.msi.com/product/mb/P67S-C43.html#/?div=Basic' target='_blank'&gt;http://www.msi.com/product/mb/P67S-C43.html#/?div=Basic&lt;/a&gt;&lt;br /&gt;does not say that i have seen.&lt;br /&gt;it has clickbios, but.. phoenix? ami? wad..&lt;br /&gt;difference of &amp;quot;repeated beeps&amp;quot; and &amp;quot;repeated short beeps&amp;quot; ?&lt;br /&gt;&lt;br /&gt;What step should I take? The pc seems to run okay before and after the beep, but it is worry me.</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Thu, 29 Mar 2012 03:53:01 +0800</pubDate>
        </item>
        <item>
            <title>Replacing hyper212 fan ?</title>
            <link>http://forum.lowyat.net/topic/2201046</link>
            <description>hi guys,&lt;br /&gt;&lt;br /&gt;recently i&amp;#39;ve having some problem with fan noise, the sink fan is.. rocking back and forth it sound like, very close to dying i think. wobbly noise, quite audible.&lt;br /&gt;so, i think i would replace it.&lt;br /&gt;i have  temporary, a 120mm cm fan i can swap with the sink fan, which is also 120mm.&lt;br /&gt;&lt;br /&gt;but issue now: sink fan have 2 bracket attach, not by screw. 1 type black bolt? duno.. look very secure.&lt;br /&gt;they let the fan clip onto the 212 sink.&lt;br /&gt;&lt;br /&gt;2nd - sink fan connect to mobo (msi p67s-c43) via 4pin connector. &lt;br /&gt;my 120mm fan is 3 pin only..&lt;br /&gt;&lt;br /&gt;i try some photo to show you wat i mean.&lt;br /&gt;&lt;br /&gt;is it possible to replace? the fan is still okay, functional, but i think very soon it will die on me. &lt;br /&gt;must i buy a fan tat design special for the 212, or is it possible to buy the bracket separate 1?&lt;br /&gt;&lt;br /&gt;&lt;a href='http://i.imgur.com/CkUuu.jpg' target='_blank'&gt;http://i.imgur.com/CkUuu.jpg&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://i.imgur.com/Yzn2v.jpg' target='_blank'&gt;http://i.imgur.com/Yzn2v.jpg&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;abit blur  &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Wed, 25 Jan 2012 01:39:25 +0800</pubDate>
        </item>
        <item>
            <title>american sizing</title>
            <link>http://forum.lowyat.net/topic/2072971</link>
            <description>hi..&lt;br /&gt;am looking at US website with cute pantie design&lt;br /&gt;but only provide in numerical sizing &amp;quot;6, 7, 8&amp;quot; etc - not tell u which size means which dimension, in cm or inch.&lt;br /&gt;so im attempt to find sizing chart&amp;#33;&lt;br /&gt;but after google so many, chart vary ? got see more than 10 separate .. if X size waist/hip, then Y size pantie.&lt;br /&gt;so now thoroughly confuse &lt;br /&gt;&lt;br /&gt;other site say me like&lt;br /&gt;for waist size i am (27&amp;quot;), i will be &amp;quot;medium&amp;quot; size. but then it will go on to say, hip size appropriate to that same &amp;quot;medium&amp;quot; size is 37-38&amp;quot;. so large? im only 31&amp;quot; hip..  got no shape like tat ==;&lt;br /&gt;&lt;br /&gt;other further go on to say, size is based on pants size, irrelevant your waist or hip&amp;#33;&lt;br /&gt;but pants size also not standardized, so how is 1 to tell  &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Girl&amp;#39;s Club</category>
            <pubDate>Mon, 17 Oct 2011 01:53:34 +0800</pubDate>
        </item>
        <item>
            <title>Thermal paste not setting, high temp?</title>
            <link>http://forum.lowyat.net/topic/2014221</link>
            <description>confuse what it could be. i google, find quote like&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;Some, like Artic Silver 5, have a &amp;quot;set up period&amp;quot; during which the grease will break apart finer and finer and conduct heat better. It&amp;#39;s of no concern for regular use, though. Only might get you a few more MHz once it&amp;#39;s fully set up, if you&amp;#39;re overclocking &lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;common sense to me say that, will not influence more than 3-5*C, i think?&lt;br /&gt;&lt;br /&gt;but it is that, i boot up my new rig and it is running fine until I see the temps.&lt;br /&gt;70-75C under 6% cpu. cannot be normal. friend say me tat some compound have setup period. but so high a difference surely not?&lt;br /&gt;&lt;br /&gt;i take off the heatsink, it is not stuck in place.. slides around very easily, the compound it is still wet. tis after allow to set overnight..&lt;br /&gt;liquid almost. previously, apply cm paste to v8 sink, set within 15, 20 min. should i try different paste? got use cm generic tat came with the sink.&lt;br /&gt;&lt;br /&gt;also worry i not set the sink in place correct.. but it ws screwed down quite tightly&lt;br /&gt;surface seem in full contact&lt;br /&gt;&lt;br /&gt;duno wat to do from here&lt;br /&gt;&lt;br /&gt;apply alcohol + reseat sink new paste?&lt;br /&gt;if tat fail, reseat stock cooler?&lt;br /&gt;&lt;br /&gt;never im see such high temp idle</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Sun, 28 Aug 2011 02:22:53 +0800</pubDate>
        </item>
        <item>
            <title>Sound Card vs Realtek ALC892</title>
            <link>http://forum.lowyat.net/topic/2000759</link>
            <description>&lt;a href='http://www.msi.com/product/mb/P67S-C43--B3-.html#?div=Detail' target='_blank'&gt;http://www.msi.com/product/mb/P67S-C43--B3-.html#?div=Detail&lt;/a&gt;&lt;br /&gt;am planning to get this mobo, lists itself as integrated audio with Realtek ALC892 chipset.&lt;br /&gt;currently i am using SB x-fi gamer card, but the card will soon be sold along with my previous rig.&lt;br /&gt;i have read that many of newgen integrated audio are onpar with prev gen&amp;#39;s sound cards.. but really, i don&amp;#39;t know how to compare. i have good speaker setup already, is this particular chipset strong? or better i invest in sound card again?&lt;br /&gt;&lt;a href='http://hardforum.com/showthread.php?p=1036799755' target='_blank'&gt;http://hardforum.com/showthread.php?p=1036799755&lt;/a&gt;&lt;br /&gt;i have read this thread as well, but it is abit unconclusive in test.&lt;br /&gt;&lt;br /&gt;myself, leaning towards sound card.. but it is, i can only afford RM100-125 range card, so card in this range, compare to onboard? got worth or not?&lt;br /&gt;&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Wed, 17 Aug 2011 09:25:50 +0800</pubDate>
        </item>
        <item>
            <title>gaming mouse with buttons on top?</title>
            <link>http://forum.lowyat.net/topic/1914495</link>
            <description>hi guys, im looking a gaming mouse with buttons ontop the mouse, if that makes sense.&lt;br /&gt;extra button i can slot skill to in mmo&lt;br /&gt;&lt;br /&gt;my friend show me razer naga type, but it is different than im look.&lt;br /&gt;naga has buttons on the side where thumb go - but it is too confuse for me, these type. are there any with (1-2 extra per finger) ontop the mouse?&lt;br /&gt;not like belkin pad.. extra unit.. just on mouse surface?&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/o4lC5.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;like that, can?&lt;br /&gt;&lt;br /&gt;my hand are tiny too.. big mouse abit hassle  &lt;!--emo&amp;:sweat:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sweat.gif' border='0' style='vertical-align:middle' alt='sweat.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;can say me any types that match this pls&lt;br /&gt;&lt;br /&gt;have looked ard already but only see &amp;#39;pad&amp;#39; type, or naga type, button on side.&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Sat, 11 Jun 2011 21:23:16 +0800</pubDate>
        </item>
        <item>
            <title>cm 690 top panel release?</title>
            <link>http://forum.lowyat.net/topic/1880734</link>
            <description>hi, cannot figure how to release the top panel on my cm690.&lt;br /&gt;the top i/o panel inside the top plastic casing, wires, prevent removal more than 4-5&amp;quot;&lt;br /&gt;&lt;br /&gt;im plan to sand this down, primer, wetsand, etc.. &lt;br /&gt;even im able to release, how can wetsand with danger the i/o panel become wet?&lt;br /&gt;&lt;br /&gt;want repaint, black to pink.&lt;br /&gt;for metal, must sand, primer, sand, primer, sand~&lt;br /&gt;&lt;a href='http://www.overclock.net/case-mods-general-discussion/69626-spookys-computer-painting-guide.html' target='_blank'&gt;http://www.overclock.net/case-mods-general...ting-guide.html&lt;/a&gt;&lt;br /&gt;&lt;a href='http://case-mods.linear1.org/case-mod-101-how-to-paint-your-computer-case-part-1/' target='_blank'&gt;http://case-mods.linear1.org/case-mod-101-...er-case-part-1/&lt;/a&gt;&lt;br /&gt;these im read&lt;br /&gt;&lt;br /&gt;for plastic cannot? dunwan scratch but worry black cont to show under paint.&lt;br /&gt;&lt;br /&gt;top panel both metal, plastic.&lt;br /&gt;&lt;img src='http://www.hardwarelogic.com/articles/reviews/case/Cooler_Master_CM_690/Cooler_Master_CM_690_Case_Top_Off.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;seem hard to paint, very unflat. curious any have attempt? result if so?&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Casings and Modifications</category>
            <pubDate>Tue, 17 May 2011 01:34:39 +0800</pubDate>
        </item>
        <item>
            <title>Psp got mmorpg?</title>
            <link>http://forum.lowyat.net/topic/1877861</link>
            <description>im see phantasy star portable 2, use to play PSO on dreamcast.. abit tire that game&lt;br /&gt;got wonder if any mmo avail on psp system?&lt;br /&gt;&lt;br /&gt;connect at wireless hub, can play like on9 rpg on pc?&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Playstation</category>
            <pubDate>Sat, 14 May 2011 22:32:24 +0800</pubDate>
        </item>
        <item>
            <title>almost done, few question</title>
            <link>http://forum.lowyat.net/topic/1860176</link>
            <description>tq help, previous thread.&lt;br /&gt;new in fresh, so not to confuse  &lt;!--emo&amp;:w--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/whistling.gif' border='0' style='vertical-align:middle' alt='whistling.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;im almost to finish choose item, can say me if anything majorly wrong tx.&lt;br /&gt;but after look review and many choice these last few day, i think got ok ah&lt;br /&gt;&lt;br /&gt;i5 2500&lt;br /&gt;corsair 750tx&lt;br /&gt;gskill 2x 4gb ddr3 1333&lt;br /&gt;msi hawk talon atk, 1gb gtx 460&lt;br /&gt;asus p8h67-m LX&lt;br /&gt;&lt;br /&gt;come in ~ 2.2k RM&lt;br /&gt;&lt;br /&gt;got hdd, fans leftover.&lt;br /&gt;cooler must choose but i will go to look later.&lt;br /&gt;&lt;br /&gt;question, is it still that 8gb ram to use, must x64 OS?&lt;br /&gt;previously im aware , xp, vista, must x64. is it still true in win7?&lt;br /&gt;&lt;br /&gt;with mATX board, what size tower can use?&lt;br /&gt;im look board &lt;a href='http://www.asus.com/Motherboards/Intel_Socket_1155/P8H67M_LX/' target='_blank'&gt;spec&lt;/a&gt; oso, but not to see gfx card got space limit - will fit or not?&lt;br /&gt;some card super fat type, stretch too far..&lt;br /&gt;&lt;br /&gt;is it worth invest in sound card? duno onboard got improve so much or not.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Mon, 02 May 2011 10:02:48 +0800</pubDate>
        </item>
        <item>
            <title>reccomended company for prebuilt pc?</title>
            <link>http://forum.lowyat.net/topic/1856083</link>
            <description>i know there is quite alot ill taste for prebuilt in these community&lt;br /&gt;but im really so frustrate.&lt;br /&gt;time i 1st to register here, im build an i7 pc.&lt;br /&gt;it worked okay, the first 4-5 month. then so many issue. issue that keep come back every 2, 3 month. must then go RMA parts, RMA, RMA, RMA until sick.&lt;br /&gt;i feel im spend more time RMA parts, take to service center, get scam by service center, than time spent just using my pc.&lt;br /&gt;&lt;br /&gt;say scam, i mean like.. take into center, give them typed list of issue, how to recreate this issue, what I suspect is cause, but without ability to test.&lt;br /&gt;service say okay, we will take a look. then hear back 1 wk, 2 wk. no issue&amp;#33; we run stress test, no issue. but did you check the process i give you? to create my issue?&lt;br /&gt;no~~&lt;br /&gt;and then charge for hours.. get back PC that cannot run game, or render 3d without bsod.&lt;br /&gt;&lt;br /&gt;last time im take in, with 6gb 1600mhz ram under corsair.&lt;br /&gt;they out me 12gb of generic 1024mhz ram because &amp;quot;ram faulty, under warranty we replace&amp;quot;. but it is my warranty with corsair&amp;#33; what is this extra??&lt;br /&gt;surely that is criminal of sorts..&lt;br /&gt;&lt;br /&gt;rma part back to evga (im buy US company because it is so highly rated).. shipping, take 4-6 weeks each time rma. they send back faulty card 4 time, until i simply give up.&lt;br /&gt;lifetime warranty like this, only to make you tear hair from wait and cost to self in ship.&lt;br /&gt;&lt;br /&gt;it is these situation im so sick of deal to.&lt;br /&gt;i feel as girl going to shop for pc, ppl will try to abuse situation.&lt;br /&gt;&lt;br /&gt;budget is RM4k, 4.5k.&lt;br /&gt;&lt;br /&gt;im look at dell, but really.. so very little option. it is true of all these place? &amp;quot;upgrades&amp;quot; on some of their item.. cost more than the part itself. must pay high cost for warranty? parts for this AW system, total price 1.5k (US).. can be bought at 1/2 that solo. but then.. even i buy parts myself, assemble myself, where to find some1 reliable to fix when it is break? i&amp;#39;m so sick of my pc just stop to work.&lt;br /&gt;&lt;br /&gt;i just want something i can play hi qual game on in max setting, or with many player in mmo.&lt;br /&gt;able to play HD bluray without issue.&lt;br /&gt;able to encode video, 3d render in decent time.&lt;br /&gt;&lt;br /&gt;because of this, i chose i7 last time. because it is quadcore, and i had hoped tat, will not need to upgrade for a long time.&lt;br /&gt;i researched for weeks on parts, review.. but now i really don&amp;#39;t know.&lt;br /&gt;&lt;br /&gt;any advise to my situation is okay. &lt;br /&gt;sorry for long post.&lt;br /&gt;</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Fri, 29 Apr 2011 04:48:36 +0800</pubDate>
        </item>
        <item>
            <title>product for care hair damage</title>
            <link>http://forum.lowyat.net/topic/1856070</link>
            <description>i go to store, ask for &amp;#39;pearling product&amp;#39;, thought tat was in mind, but it isn&amp;#39;t the correct term? girl look at me confuse 1&lt;br /&gt;&lt;br /&gt;looking for name of product.. like, term, shampoo, conditioner, _______ ?&lt;br /&gt;to apply to hair before straighten.. so it will b protect while heat from iron is apply to it.&lt;br /&gt;&lt;br /&gt;im shower 2x/day, morning night. &lt;br /&gt;apply shampoo in morning, condition. only rinse/condition at night. it is stay soft, but im wonder - am i missing smth?&lt;br /&gt;ends a bit damaged and worry when use iron, will further to damage.&lt;br /&gt;&lt;br /&gt;other type cream to apply oso? looking detail name, not vague like &amp;quot;cream&amp;quot; tq.</description>
            <author>RainRainGirl</author>
            <category>Girl&amp;#39;s Club</category>
            <pubDate>Fri, 29 Apr 2011 03:45:52 +0800</pubDate>
        </item>
        <item>
            <title>new to ps3, help suggest tx</title>
            <link>http://forum.lowyat.net/topic/1664515</link>
            <description>hi guys, i m play games a long time, but only now start to look at new console.&lt;br /&gt;i will enter my list of favorite, game i am look at, can please suggest me any u are think im missing  &lt;!--emo&amp;:wub:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/wub.gif' border='0' style='vertical-align:middle' alt='wub.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;i m not so fan of fps, strategy, race, tomb raider sort.&lt;br /&gt;looking for game that, make use of ps3 and not look like designed for ps2 or psx.&lt;br /&gt;&lt;br /&gt;and so, game i am 100%:&lt;br /&gt;&lt;br /&gt;infamous, demon souls, atelier rorona, folklore, malicious, enslaved: odyssey west&lt;br /&gt;&lt;br /&gt;soso%:&lt;br /&gt;&lt;br /&gt;star ocean 4, eternal sonata, nier&lt;br /&gt;&lt;br /&gt;can suggest me guys?&lt;br /&gt;alot interest in danmaku game, or action/adventure like Ys, alundra&lt;br /&gt;&lt;br /&gt;god of war, dragon age abit dark...</description>
            <author>RainRainGirl</author>
            <category>Playstation</category>
            <pubDate>Sat, 04 Dec 2010 23:18:35 +0800</pubDate>
        </item>
        <item>
            <title>Replacing PSU fan?</title>
            <link>http://forum.lowyat.net/topic/1565473</link>
            <description>Hi guys, today with question regards to my psu. I am using Silverstone product, op1000-E.&lt;br /&gt;&lt;img src='http://www.hiteksystems.co.nz/bmz_cache/f/f8af90886fd531344545ee4a7fdcd2bc.image.750x472.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;can see this photo, there are screws on top. &lt;br /&gt;but is it safe to remove?&lt;br /&gt;My fan has become very erratic, scare it give way soon.&lt;br /&gt;I want to replace, but worry abt danger. it is outside warranty now, but scare chance damage pc through mistake in replace fan.&lt;br /&gt;I also not know wat size fan.&lt;br /&gt;&lt;br /&gt;or better i replace complete? but so cost  &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Fri, 17 Sep 2010 21:52:10 +0800</pubDate>
        </item>
        <item>
            <title>any can recommend a new shampoo product to me?</title>
            <link>http://forum.lowyat.net/topic/924910</link>
            <description>m using garnier fructis atm, looking try a new 1&lt;br /&gt;rly like this brand but, little curious of other product to try. &lt;br /&gt;&lt;br /&gt;prefer smth.. very light fruit scent, citrus or.. strawberry kinda. not overpower but.. &lt;br /&gt;when close to some1, can light aura kind of?&lt;br /&gt;&lt;br /&gt;i not very good at describe, sorri&lt;br /&gt;any suggestion for me, will be appreciate.</description>
            <author>RainRainGirl</author>
            <category>Girl&amp;#39;s Club</category>
            <pubDate>Wed, 04 Feb 2009 02:18:20 +0800</pubDate>
        </item>
        <item>
            <title>Safe to flip PSU?</title>
            <link>http://forum.lowyat.net/topic/913971</link>
            <description>halo.. again come to u with questions xx&lt;br /&gt;ytdy receive all parts i order, start assemble my new system... but i find, the PSU i get,&lt;br /&gt;SS op1000.. has vent out back, and big fan on top of the unit. case i have iz CM690, has vent underneath PSU.. and so with fan on top, vent go unused and fan flood hotair over my mobo + gfx card.&lt;br /&gt;&lt;br /&gt;so, wonder if iz safe for me to upsidedown the psu.. so fan point out vent, and safe my lovely mobo &lt;br /&gt;seem weird have heavy parts on top...&lt;br /&gt;duno is firmly attached onot...&lt;br /&gt;&lt;br /&gt;also iz, ppl say can attach xtra fan to CM690 front bay cover.. tat metal part.&lt;br /&gt;with screw (but seem all solid, no place screw) or with cabling, cabling not be so loose, cause fan rattle?</description>
            <author>RainRainGirl</author>
            <category>Hardware</category>
            <pubDate>Wed, 21 Jan 2009 23:35:26 +0800</pubDate>
        </item>
    </channel>
</rss>
