1. strange clicking noises from my computer

    Date: 08/18/05 (Computer Geeks)    Keywords: html, web

          Hello everyone-

        I've been somewhat carefully been using a windows XP SP2 desktop (80GB hard drive, 768RAM, 2.8Ghz celeron...etc) for the past one and a half years. I recently had to move back home because the residence halls closed (heh) so I moved everything back, including my computer. I thought all I suffred was a minor glass scratch on my monitor, but today my computer has started making clicking noises from the inside.

        The only times I ever hear any kind of noise remotely close to this kind of clicking is when I turn my comptuer off, so I'm assuming that if it isn't the sound of my power supply (nothing to click in there, really) or my CPU fan, then it could possibly be my hard drive. But I'm not really sure...

       I was playing Ragnarok Online (a 3D game) for about four hours when I noticed the "click" noises were getting more and more frequent, until one of he clicks was followed by another sound that sounded a lot like something that had stopped turning. By then the game was frozen, and when I promted the start menu to pop-up, I got... whoa.. a winNT blue screen of death. I haven't seen ones of those screens on this machine, ever.

        I rebooted after the blue screen, hoping it was just a quirk, but the comptuer booted up making clicking noises from the inside of the machine, and then gave me a "No Operating System Found" error. I rebooted again, and this time when I heard the clicking, I tilted my box a bit and then let it land with thump. ...and then my computer booted normally.

        Naturally, I was sort of concerned so I looked online about hard drives clicking (assuming it IS my hard drive. Maybe other devices in the comptuer are also capable of making clicking noises?) and I found this:
    http://losangelescomputerhelp.com/computer_networking_news/hard-drive-clicking.html
    ...which of course sort of scared me, since I put all my useful computer stuff (including my spare crap computer) away in storage, and I really need my comptuer for tonight and tomorrow. It booted up for now though.. heh. ...But is this a serious problem? There are no clicking noises right now, and it seems like everything is OK, but I get the feeling the clicking noises will come back and, if that website isn't being too paranoid, that my hard drive might brake.

        Anyone have experience with clicking noises coming from the tower? My hard drives (I have two wester digital drives in there = an 80GB master and a 160GB slave/each are less than two years old) have never made this kind of clicking noise, although I do know that the clicking noise is common in older hard drives. ..but this clicking was sporadic and scattered, unlike the natural clicking of older hard drives. oo;; please advise.

    Source: http://www.livejournal.com/community/computergeeks/750567.html

  2. Amazon.com is now compatible with teh sex

    Date: 08/19/05 (Computer Geeks)    Keywords: html

    Yes it's true. Unless you've already found out, amazon.com now sells sex toys. And not just a few.

    http://www.amazon.com/gp/browse.html/ref=sc_bb_br_3760901_52/102-2150568-4588925?%5Fencoding=UTF8&node=3777371&no=3760901&me=ATVPDKIKX0DER

    http://www.amazon.com/exec/obidos/tg/detail/-/B0009OSCKM/sr=1-24/qid=1124469949/ref=sr_1_24/102-2150568-4588925?%5Fencoding=UTF8&n=3777781&s=hpc&v=glance

    Source: http://www.livejournal.com/community/computergeeks/752015.html

  3. nifty

    Date: 08/20/05 (Web Development)    Keywords: css, html, java

    drag and drop sortable lists with javascript and css.

    http://tool-man.org/examples/sorting.html

    Source: http://www.livejournal.com/community/webdev/235288.html

  4. UserJS fix for that annoying LJ comments bug.

    Date: 08/21/05 (Opera Browser)    Keywords: browser, html

    You know how quick reply all of a suddenly stopped working? I stumbled across this fix in the Opera forums... It was originally written by one of the Russian users (username unknown), but I've tweaked it a bit for efficiency.

    Save as a plain text file with a .js extension and use as you would any UserJS file. (some instructions here.)

    // ==UserScript==
    // @name Fix the LJ comments form.
    // @author Michael Xeningem
    // @description Fix problem with comments in LiveJournal
    // @ujs:category browser: enhancements
    // @ujs:published 2005-07-20 22:00
    // @ujs:modified 2005-08-21 09:25
    // ==/UserScript==
    
    
    /* 
     * public domain
     */
    
    if(window.location.host.indexOf('livejournal\.com') != -1){ 
      window.addEventListener('load',function(e) {
        if (!document.getElementById("qrform")&&document.getElementById("qrformdiv")) {
          var qe = document.getElementById("qrformdiv");
          var fe = document.createElement("form");      
          if (fe) {
            fe.id = "qrform";
            fe.name="qrform";
            fe.method="POST";
            fe.action="http://www.livejournal.com/talkpost_do.bml";         
            fe.innerHTML =qe.innerHTML;
            qe.innerHTML = "";
            qe.appendChild(fe);
          }
        } 
      },false);
    }


    Only works in Opera 8, of course.

    Source: http://www.livejournal.com/community/opera_browser/39880.html

  5. Question about scrolling tables

    Date: 08/22/05 (HTML Help)    Keywords: css, html

    Hiya! First time poster here

    I'm a paid user and I'm working on a custom style. It's pretty much working for me now, except for one tiny detail. I have my entries in a text box and I want the box to scroll over the background image, while the image remains stationary.

    I have this lovely coding, minus spaces (only a snippet of it because my lj-cuts aren't working for some reason)

    < STYLE type="text/css" media="screen" platform="livejournal">
    body {background-color:#F4AFA8; background-image:url('http:// home.cogeco.ca/~elfiepants/bgd.jpg'); background-repeat:repeat-y; margin-right:100%; margin-left:157px; overflow-x:hidden; overflow:-moz-scrollbars-vertical; margin-top:220px;}

    however, I'm not sure why it doesn't work. I'm no html wizard and most of the code I use is gacked from others.

    Do I need additional coding about the background repeat in the LASTN_ENTRIES box? I just don't know. This is part of the coding that appears in the LASTN_PAGE box. Any help would be appreciated.

    Cheers!

    Source: http://www.livejournal.com/community/htmlhelp/2121240.html

  6. Email form help.

    Date: 08/22/05 (Web Development)    Keywords: html, web

    Hey all,

    I need to make a simple email form for a client. The fields are Name [required], Email [required], Phone [not required]. I would like it to submit the results to her email address with a specified subject line. What is the easiest way to do this? Right now I'm hacking away at a PERL script and getting pretty frustrated. Is there a way to do this in HTML without employing PERL? If there are any sites you know of, please pass the urls along. I've been searching through many and there's just too much information. Any help would be greatly appreciated...

    cross posted in '[info]'webdesign

    Source: http://www.livejournal.com/community/webdev/237314.html

  7. Email form help.

    Date: 08/22/05 (WebDesign)    Keywords: html, web

    Hey all,

    I need to make a simple email for a client. The fields are Name [required], Email [required], Phone [not required]. I would like it to submit the results to her email address with a specified subject line. What is the easiest way to do this? Right now I'm hacking away at a PERL script and getting pretty frustrated. Is there a way to do this in HTML without employing PERL? If there are any sites you know of, please pass the urls along. I've been searching through many and there's just too much information. Any help would be greatly appreciated...

    cross posted in '[info]'webdev

    Source: http://www.livejournal.com/community/webdesign/961300.html

  8. iText, must-have document conversion library, Version 1.3.3 Released

    Date: 08/24/05 (Java Web)    Keywords: software, html, xml, java

    iText is a java software library which contains API to generate documents in the Portable Document Format (PDF), XML, HTML and RTF. It can also parse XML documents and convert them into any of these formats. Pages of existing PDF files can be imported and copied to new PDF documents. In short if you ever thought [...]

    Source: http://blog.taragana.com/index.php/archive/itext-must-have-document-conversion-library-version-133-released/

  9. Help needed

    Date: 08/25/05 (HTML Help)    Keywords: html, web

    My html questiohn is not a livejournal one sorry, but I thought maybe you could help? I recently made a html webpage. Where everything has got to be done in html. It currently has a image on it, that I want to make so that when clicked it will take you into the webpage. My site is www.love-is-life.tk. If you could help, I would be very thankful. Sorry if this question is irrelevant to your community.

    Source: http://www.livejournal.com/community/htmlhelp/2125421.html

  10. Exalead: a new search

    Date: 08/26/05 (Mozilla)    Keywords: html

    This new search does something more than the others: it categorizes your results by taxonomy. Kinda interesting how it works. I might have a new favorite search engine...


    http://beta.exalead.com/


    FF plugin here: http://mycroft.mozdev.org/download.html?name=exalead&submitform=Find+search+plugins

    Source: http://www.livejournal.com/community/mozilla/311266.html

  11. MySpaceBar

    Date: 08/27/05 (Mozilla)    Keywords: html, web

    Hello all, I was thinking of downloading the MySpaceBar as I just got a new MS account. Anyway, my main question is: does the toolbar help you customize MySpace webpages, like entering html code easier and whatnot? The profile page was easy, but I'm having more difficulty customizing the blog page.

    Source: http://www.livejournal.com/community/mozilla/311624.html

  12. css issues

    Date: 08/27/05 (WebDesign)    Keywords: css, html

    I've run into a bit of a brick wall with this css layout thing.

    the html

    the css

    I've only been cross checking firefox and IE for this, and I'm still very new to css so go easy on me *L*

    My problem is everything works fine in firefox, but not IE. It's only 2 little fiddly bits but I want to get it right.

    the

    for some reason isn't lining up properly on the left, the border is about 2px in. I put a float: left in which fixed that problem but messed up the right side of the div in both firefox and IE.

    the second problem might be a little more difficult. I've got a script punked from dynamicdrive.com which makes the drop down menus in the nav. Again, in firefox everything works just fine, but in explorer I've noticed that when you actually drop down the options it shifts the paragraphs in
    over to the right a bit. Not major but still annoying.

    Anybody have any suggestions? Constructive Criticism? Am I doing anything completely wacky? *L* Thanks!

    Source: http://www.livejournal.com/community/webdesign/964897.html

  13. hi, i jus joined

    Date: 08/28/05 (HTML Help)    Keywords: html

    **waves** hey there a friends reccomended this community XD
    but i'd just like to ask, how do you put scrollin lyrics on your journal? coz i got all the html stuff but when ever i try n put it in my overrides and refresh my journal page it isn't there o.0 and then i have a kool at my overrides the html isn't there anymore! =S

    Source: http://www.livejournal.com/community/htmlhelp/2130589.html

  14. XML

    Date: 08/30/05 (WebDesign)    Keywords: html, xml

    okay nevermind.. i had a question as to why i couldn't use html markup in my xml doc but i tried encoding the < and > and well it now works.. doh..

    Source: http://www.livejournal.com/community/webdesign/966387.html

  15. online html web editor

    Date: 08/30/05 (WebDesign)    Keywords: html

    I just found this and thought it was pretty cool. Now it just needs syntax highlighting, tabbing, find and replace....

    http://www.squarefree.com/htmledit/

    Source: http://www.livejournal.com/community/webdesign/966026.html

  16. javascript

    Date: 08/30/05 (Web Development)    Keywords: php, html, xml, java

    I shall start by saying that I really don't know much at all about javascript.

    I'm trying to send my xhtml as application/xhtml+xml wherever possible, which means I need well formed xml or I get lots of lovely errors.
    I'm usually a validation nut, so this hasn't been a problem with most stuff. However, I have several fanlistings on my site which use a script called phpfanbase.

    I've spent lots of time converting its html to xhtml, and removing lots of silly tables etc. Now the only thing stopping it from validating/being well formed is this bit of javascript:


    function submitonce(theform){
    //if IE 4+ or NS 6+
    if (document.all||document.getElementById){
    //screen thru every element in the form, and hunt down "submit" and "reset"
    for (i=0;ivar tempobj=theform.elements[i]
    if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
    //disable em
    tempobj.disabled=true
    }
    }
    }


    Can anyone explain what this does? If it's nothing too important then I'm just going to delete it I think.
    thanks :)

    Source: http://www.livejournal.com/community/webdev/240007.html

  17. Web Forms not submitting on server

    Date: 08/31/05 (Asp Dot Net)    Keywords: html, asp, web

    I have a web form i have build to submit to another page
    and it keeps trying to submit to the inital form page even
    though the action is set to pagetwo.aspx.

    I made a simple test form from the book and that doesn't
    submit either, here follows the code but it appears to just
    ignore the action command in the form and submit PageOne.aspx
    to PageOne.aspx? any thoughts?

    PageOne.aspx

    [%@ Page Language="vb" Debug="true" %]
    [script language="vb" runat="server"]


    [/script]
    [form action="test2.aspx" method="get" enctype="multipart/form-data" id="form1" runat="server"]

    [asp:TextBox ID="TG1" runat="server"/]

    [asp:DropDownList ID="TG2" runat="server"]
    [asp:ListItem Value="1" Text="Yes"/]
    [asp:ListItem Value="2" Text="No"/]
    [asp:ListItem Value="3" Text="Maybe"/]
    [/asp:DropDownList]

    [input type="submit" id="submit"]

    [/form]



    PageTwo.aspx
    [%@ Page Language="vb" Debug="true" %]
    [script language="vb" runat="server"]

    Dim TG1a As String
    Dim TG2a As String

    TG1a = Request.Form(TG1)
    TG2a = Request.Form(TG2)

    message.text = TG1a
    message2.text = TG2a



    [/script]
    [html]
    [head]
    [meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"]
    [title]Untitled Document[/title]
    [/head]
    [body]

    [asp:Label ID="TG1a" runat="server"/]
    [asp:Label ID="TG2a" runat="server"/]


    [/body]
    [/html]

    Source: http://www.livejournal.com/community/aspdotnet/42631.html

  18. Error page

    Date: 08/31/05 (Web Development)    Keywords: html

    We all have had to do error handling on our sites.

    i have however never seen error messages handled like this.

    http://www.rydot.com/error.html

    Source: http://www.livejournal.com/community/webdev/240729.html

  19. HTML before PHP?

    Date: 08/31/05 (WebDesign)    Keywords: php, programming, html, asp, java, web

    Hi!  I'm new to this community.


    I am currently a graphic designer taking classes at RISD (Rhode Island School of Design) for web design and development.  I've completed most of the DESIGN aspects of the certificate program and am working on the PROGRAMMING/CODING part.

    My only experience with programming of any sort comes from these classes... "Actionscript in Flash" and "Javascript for Non-programmers."  Any other HTML I know is what I've picked up from LJ and using the dual split screen in Dreamweaver.

    I am for sure enrollling in the HTML class.  But the PHP class I want to take (two in one semester would be ideal) has an HTML prereq.

    Can I handle it?
    How hard is learning PHP?
    Should I take the two classes simultaneously this fall semester?
    Or should I take the HTML class, let it soak in until next spring, and then do the PHP?

    Pros to PHP now...
    1) I know someone in the class
    2) I'd hopefully be able to incorporate what I learn into a website I'm supposed to create this fall...

    Cons to PHP now...
    1) Getting totally and completely lost and not learning anything from the class...

    Thanks for your help and opinions.  I'd really appreciate it!

    Source: http://www.livejournal.com/community/webdesign/967411.html

  20. Problem

    Date: 09/02/05 (Computer Help)    Keywords: cms, software, html, java, security, virus, antivirus, web, microsoft, google, ebay

    I'm having this wierd problem so I scanned with Hijack This! Here's the log. Which of these shouldn't be there. Please help me!

    Logfile of HijackThis v1.99.1
    Scan saved at 3:31:07 PM, on 9/2/2005
    Platform: Windows XP SP2 (WinNT 5.01.2600)
    MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180)

    Running processes:
    C:\WINDOWS\System32\smss.exe
    C:\WINDOWS\system32\winlogon.exe
    C:\WINDOWS\system32\services.exe
    C:\WINDOWS\system32\lsass.exe
    C:\WINDOWS\system32\svchost.exe
    C:\WINDOWS\System32\svchost.exe
    C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe
    C:\WINDOWS\system32\spoolsv.exe
    C:\WINDOWS\Explorer.EXE
    C:\Program Files\Common Files\Symantec Shared\ccApp.exe
    C:\Program Files\QuickTime\qttask.exe
    C:\Program Files\Common Files\Real\Update_OB\realsched.exe
    C:\Program Files\Java\jre1.5.0_04\bin\jusched.exe
    C:\WINDOWS\system32\rundll32.exe
    C:\Program Files\iTunes\iTunesHelper.exe
    C:\windows\system32\rlvknlg.exe
    C:\Program Files\Messenger\msmsgs.exe
    C:\Program Files\MSN Messenger\msnmsgr.exe
    C:\Program Files\Google\Google Talk\googletalk.exe
    C:\Program Files\Norton AntiVirus\navapsvc.exe
    C:\Program Files\Norton AntiVirus\AdvTools\NPROTECT.EXE
    C:\Program Files\Common Files\Symantec Shared\Security Center\SymWSC.exe
    C:\Program Files\iPod\bin\iPodService.exe
    C:\Program Files\Jasc Software Inc\Paint Shop Pro 9\Paint Shop Pro 9.exe
    C:\Program Files\iTunes\iTunes.exe
    C:\WINDOWS\System32\svchost.exe
    C:\Program Files\Mozilla Firefox\firefox.exe
    C:\Program Files\Internet Explorer\iexplore.exe
    C:\Documents and Settings\owner\My Documents\My Downloads\HijackThis.exe

    R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyServer = proxy1.emirates.net.ae:8080
    O2 - BHO: AcroIEHlprObj Class - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - C:\Program Files\Adobe\Acrobat 5.0\Reader\ActiveX\AcroIEHelper.ocx
    O2 - BHO: URLLink Class - {4A2AACF3-ADF6-11D5-98A9-00E018981B9E} - C:\Program Files\NewDotNet\newdotnet6_38.dll
    O2 - BHO: (no name) - {53707962-6F74-2D53-2644-206D7942484F} - C:\PROGRA~1\SPYBOT~1\SDHelper.dll
    O2 - BHO: ST - {9394EDE7-C8B5-483E-8773-474BF36AF6E4} - C:\Program Files\MSN Apps\ST\01.03.0000.1005\en-xu\stmain.dll
    O2 - BHO: Google Toolbar Helper - {AA58ED58-01DD-4d91-8333-CF10577473F7} - c:\program files\google\googletoolbar2.dll
    O2 - BHO: MSNToolBandBHO - {BDBD1DAD-C946-4A17-ADC1-64B5B4FF55D0} - C:\Program Files\MSN Apps\MSN Toolbar\01.02.3000.1001\en-us\msntb.dll
    O2 - BHO: NAV Helper - {BDF3E430-B101-42AD-A544-FADC6B084872} - C:\Program Files\Norton AntiVirus\NavShExt.dll
    O2 - BHO: (no name) - {D80C4E21-C346-4E21-8E64-20746AA20AEB} - (no file)
    O3 - Toolbar: Norton AntiVirus - {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} - C:\Program Files\Norton AntiVirus\NavShExt.dll
    O3 - Toolbar: MSN - {BDAD1DAD-C946-4A17-ADC1-64B5B4FF55D0} - C:\Program Files\MSN Apps\MSN Toolbar\01.02.3000.1001\en-us\msntb.dll
    O3 - Toolbar: &Google - {2318C2B1-4965-11d4-9B18-009027A5CD4F} - c:\program files\google\googletoolbar2.dll
    O4 - HKLM\..\Run: [ccApp] C:\Program Files\Common Files\Symantec Shared\ccApp.exe
    O4 - HKLM\..\Run: [Advanced Tools Check] C:\PROGRA~1\NORTON~1\AdvTools\ADVCHK.EXE
    O4 - HKLM\..\Run: [WeatherOnTray] C:\Program Files\Hotbar\bin\4.5.1.0\WeatherOnTray.exe
    O4 - HKLM\..\Run: [QuickTime Task] "C:\Program Files\QuickTime\qttask.exe" -atboottime
    O4 - HKLM\..\Run: [TkBellExe] "C:\Program Files\Common Files\Real\Update_OB\realsched.exe" -osboot
    O4 - HKLM\..\Run: [SunJavaUpdateSched] C:\Program Files\Java\jre1.5.0_04\bin\jusched.exe
    O4 - HKLM\..\Run: [navapp] C:\Program Files\NavExcel\NavHelper\v2.0.4d\navapp.exe
    O4 - HKLM\..\Run: [New.net Startup] rundll32 C:\PROGRA~1\NEWDOT~1\NEWDOT~2.DLL,NewDotNetStartup -s
    O4 - HKLM\..\Run: [oxmx] C:\WINDOWS\oxmx.exe
    O4 - HKLM\..\Run: [Symantec NetDriver Monitor] C:\PROGRA~1\SYMNET~1\SNDMon.exe
    O4 - HKLM\..\Run: [iTunesHelper] "C:\Program Files\iTunes\iTunesHelper.exe"
    O4 - HKLM\..\Run: [KernelFaultCheck] %systemroot%\system32\dumprep 0 -k
    O4 - HKLM\..\Run: [OSS] C:\windows\system32\rlvknlg.exe -boot
    O4 - HKCU\..\Run: [MSMSGS] "C:\Program Files\Messenger\msmsgs.exe" /background
    O4 - HKCU\..\Run: [msnmsgr] "C:\Program Files\MSN Messenger\msnmsgr.exe" /background
    O4 - HKCU\..\Run: [googletalk] "C:\Program Files\Google\Google Talk\googletalk.exe" /autostart
    O8 - Extra context menu item: &Google Search - res://c:\program files\google\GoogleToolbar2.dll/cmsearch.html
    O8 - Extra context menu item: Backward Links - res://c:\program files\google\GoogleToolbar2.dll/cmbacklinks.html
    O8 - Extra context menu item: Cached Snapshot of Page - res://c:\program files\google\GoogleToolbar2.dll/cmcache.html
    O8 - Extra context menu item: Similar Pages - res://c:\program files\google\GoogleToolbar2.dll/cmsimilar.html
    O8 - Extra context menu item: Translate into English - res://c:\program files\google\GoogleToolbar2.dll/cmtrans.html
    O9 - Extra button: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_04\bin\npjpi150_04.dll
    O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_04\bin\npjpi150_04.dll
    O9 - Extra button: eBay - Homepage - {EF79EAC5-3452-4E02-B8BD-BA4C89F1AC7A} - C:\Program Files\IrfanView\Ebay\Ebay.htm
    O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe
    O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe
    O10 - Hijacked Internet access by New.Net
    O10 - Hijacked Internet access by New.Net
    O10 - Hijacked Internet access by New.Net
    O10 - Hijacked Internet access by New.Net
    O10 - Hijacked Internet access by New.Net
    O12 - Plugin for .spop: C:\Program Files\Internet Explorer\Plugins\NPDocBox.dll
    O16 - DPF: {00B71CFB-6864-4346-A978-C0A14556272C} (Checkers Class) - http://messenger.zone.msn.com/binary/msgrchkr.cab31267.cab
    O16 - DPF: {15AD6789-CDB4-47E1-A9DA-992EE8E6BAD6} - http://static.windupdates.com/cab/MusicAccess/ie/bridge-c8.cab
    O16 - DPF: {2917297F-F02B-4B9D-81DF-494B6333150B} (Minesweeper Flags Class) - http://messenger.zone.msn.com/binary/MineSweeper.cab31267.cab
    O16 - DPF: {6E32070A-766D-4EE6-879C-DC1FA91D2FC3} (MUWebControl Class) - http://update.microsoft.com/microsoftupdate/v6/V5Controls/en/x86/client/muweb_site.cab?1124631707093
    O16 - DPF: {8E0D4DE5-3180-4024-A327-4DFAD1796A8D} (MessengerStatsClient Class) - http://messenger.zone.msn.com/binary/MessengerStatsClient.cab31267.cab
    O16 - DPF: {E154E3CC-0C3A-4101-91D8-6B4876F0FD64} (PrintScreen Class) - http://www.mydisplayimage.com/create/Flash2Image.cab
    O16 - DPF: {F6BF0D00-0B2A-4A75-BF7B-F385591623AF} (Solitaire Showdown Class) - http://messenger.zone.msn.com/binary/SolitaireShowdown.cab31267.cab
    O23 - Service: Symantec Event Manager (ccEvtMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe
    O23 - Service: iPod Service (iPodService) - Apple Computer, Inc. - C:\Program Files\iPod\bin\iPodService.exe
    O23 - Service: Norton AntiVirus Auto Protect Service (navapsvc) - Symantec Corporation - C:\Program Files\Norton AntiVirus\navapsvc.exe
    O23 - Service: Norton Unerase Protection (NProtectService) - Symantec Corporation - C:\Program Files\Norton AntiVirus\AdvTools\NPROTECT.EXE
    O23 - Service: ScriptBlocking Service (SBService) - Symantec Corporation - C:\PROGRA~1\COMMON~1\SYMANT~1\SCRIPT~1\SBServ.exe
    O23 - Service: Symantec Network Drivers Service (SNDSrvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe
    O23 - Service: SymWMI Service (SymWSC) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\Security Center\SymWSC.exe

    Source: http://www.livejournal.com/community/computer_help/479940.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home