Firewire is dead.  But what do you think about this idea?

I know that the firewire port is saudered onto the logic board on my computer and I use to use it all the time but I was connecting my 12" powerbook to a powermac G4 through target disk mode and I accidently plugged in the firewire end in the powermac upside down. I had the other end alreay plugged into my powerbook and since then I got my firewire port has been unresponsive. I also got the ozone smell of death which made me wonder if the smell is the computer chip that controls the throughput of the firewire port or the actual firewire port itself? Because I use to use firewire a lot and so I am very sad to see something that I did, kill the port.
I had 2 hard drives and dv camcorder and my ipod and of course a firewire hub so I could plug it all in simultaneously. So what I am willing to do is take apart the computer and try to sauder on a new firewire port but now we are back to my original question, is it the port or computer chip. One thing I do know is that my ipod will still get charged even when its directly connected to the computer but nothing will mount.
If anybody has an input on my dilemma please feel free to add to this.
Thank you, Kenny
12 PB 1.5 Ghz 100Gb 5400 rpm, 1.25Gb ram,8x superdrive, 40Gb ipod, 120Gb ext hd   Mac OS X (10.4.6)   B&W G3/350, 640 mb ram, 2/120Gb int hds,2*FW800 hds 240Gb, dvd-rw, 100mb zip

Hi!
I had coffe all over my 12" powerbook and was forced to resolder much of it to get back my ethernet, firewire and usb. Here is what you'll need to care about when you decide to open the machine:
The keyboard assembly is held by 4 screws, 2 of whose are hidden under function keys F1/F2 and F11/F12. Remove caps by gently lifting up their LEFT side.
Heatpipe assembly must be removed too. I managed overtighten one of screws, and part of it which is soldered to the mainboard got loose. Don't do that.
Almost everything else must be removed, which involves many different screw lengths. Keeping track of them somehow helps later when you put everything together.
Don't start the machine with any components (such as hard drive or screen) disconnected. Hardware identification takes ages to perform and will confuse you, because machine appears to be dead most of the time.
Soldering: Use antistatic iron, lead-free tip and solder. Residue-free flux-pen helps a lot. Almost everything you'll find onboard is SMD, which means that removing components with improper tools or using force will damage the board.
Using camera to document how components were placed before you remove them gets handy later.
Good luck!
powerbook g4 12"   Mac OS X (10.3.9)  

Similar Messages

  • What do you think about this software? Reliable?

    What do you think about this software? Reliable?
    http://www.macupdate.com/info.php/id/23023/filesync
    Or maybe Carbon Copy Cloner is better?
    Thanks a lot!

    I don't know Filesync, but to simply sync one folder to its backup I use SyncTwoFolders:
    http://www.versiontracker.com/dyn/moreinfo/macosx/30727
    To clone the entire hard drive to an external bootable hard disk I use SuperDuper, but CCC has an equally good reputation.

  • What do you think about this article?

    What do you think about this article?
    +"A lithium-ion battery provides 300-500 discharge/charge cycles. The battery prefers a partial rather than a full discharge. Frequent full discharges should be avoided when possible. Instead, charge the battery more often or use a larger battery. There is no concern of memory when applying unscheduled charges"+
    Seems to make sense..
    I knew that lithium-ion batteries have no memory concerns, but still I thought that it was a good idea to charge and discharge the battery of a new iPod (or laptop) at least the first time..
    Any thoughts?
    Message was edited by: acidbahia

    The reason it's sometimes recommended to do a full discharge/charge cycle on a new device is to calibrate the battery indicator. It doesn't do anything for the battery itself.
    The quote you've given agrees with everything I've been taught about lithium-ion batteries.

  • What do you think about this product ?

    Hi,
    I want to have access to SAP ECC 6.0 for personnal use, so I find a hard drive in the following web site :
    http://www.erpselftraining.com/product/SAP-server-MCOD.html
    Please can you tell me what do you think about this hard drive ? has anyone already tried it ? do you advise it ?
    Your answers will be appreciated.
    Kind regards.

    is it for learning purpose ? then why dont you just download the demo versions of SAP!!

  • I know this is a creative board, but what do you think about the iriver h10 2

    Iri'ver just came out with a 20GB version of it's h0 jukebox player, as well as a GB flash version and a 6 GB version. This thing has all the features of the micro, voice recording, no line in, but fm radio etc, etc... and it views photos on a color screen. It's priced 50 bucks less than the ipod photo, although it doesn't have the ability to display slideshows on regular tv with music in the background, and, if it's the same as the h0 5 GB, it's going to be compatible with subscription music services... any thoughts?

    First thing I think of when I hear iRi'ver: $$
    And I'm pretty sure it will support PlaysForSure which is needed in all subscription based services...

  • What do you think of this Design for Multiple Threads

    Hi Java Experts ;
    I'm curious to know what you think about this design for a multhreaded app i'm working on.
    I have a controller thread that (a.) creates threads and (b.) keeps a reference to threads that it creates (by sticking them in a hashtable along with the generated Id for that thread).
    When a created thread completes its job, it decrements the thread counter and removes its reference from the hashtable before it finishes its run method.
    Now here's the interesting part in my controller thread i'm creating new threads on the fly with this infinite loop
         public void run(){
              while(true){
                   try{
                        Thread.sleep(500);
                   }catch(InterruptedException e){
                   if(threadCounter<maxThreadCount && moreJobsToDo.size()>0){
                        createDomainThread();
              }//end while
    what do you think about this pattern ? My goal is to maintain about 200+ created threads running at all times with this pattern.

    jeff kesslerman's book says about threads
    "5.2.3 Threads
    The impact that threads have on RAM footprint isn't a problem for most programs, but running threads do need space to store their stack state, and the system- specific data structures do consume memory.
    Because runtime implementations vary widely in how threads are handled, you might encounter situations where the impact threads have on footprint is significant. For example, some ports of the JRE create a heavyweight OS process for each running thread. In an application that uses many threads, this means that thread costs, rather than class or object costs, can become the dominant factor in the program's memory consumption.
    You shouldn't avoid using threads-they're necessary in many cases, and generally don't have a large impact on footprint. However, you should be aware that the impact can be very different across runtimes. This is one of the reasons it's a good idea to measure performance characteristics under your program's different target environments. "
    Question #1: how does garbage collection go about clearing the stack state, and the system- specific data structures that consume memory.
    Question #2: in my situation, each worker thread's activity is not as brief as a simple server request. Each thread does a lot work and does a lot of network connections. on average I would say 100 http request - each of which can be easily blocked or delayed significantly. Therefore each worker thread may operate for between 2 - 10 minutes.
    Do you think thread pooling is useful in this situation ?
    stev

  • What do you think about asset group?

    Hi,
    My client ask me to configure asset group functionality. It's well explained in SAP documentation but there is many SAP OSS note to correct some bugs.
    What do you think about this functionality? Do you have any suggestion regarding asset group?
    Thanks and regards
    Karim

    Hi,
    What do you think about the forum rules?
    Before you post: Rules of Engagement
    Thanks,
    Srinu

  • Adobe, what do you think about that ?

    - one day I was demoing DPS to 35 people in Paris. The whole day the servers were barely accessible. For the reputation and reliability of DPS that was wonderful.
    - another day I was doing a little DPS demo for Adobe. Again the same problem.
    - another day, the demo was ruined because the servers were so slow.
    - this Monday morning, I open my iPad and I can see my latest Folio in ACV.
    In the afternoon I join Adobe reps and partners and other VIPs in London for the launch of CS6. There I go with my iPad and what a surprise when I want to show the Folio to an Adobe representative ?
    Despite being signed in, all my folios where archived and all in Download state. I could not access a WiFi and even if I could I think that downloading 500 Mb would be impossible.
    Many people where asking me :
    —"And are you teaching DPS ?"
    – I said "Yes, I'm even working on it for real projects."
    — "Do you have one to show us ?"
    – "No, because Adobe's software, for a reason that I don't understand, deleted all my folios a few moments ago and I would have to redownload them again. ACV sucks".
    People to who I have talked to where Adobe people, chiefs of graphic studios (newspaper, agency,...), potential clients for DPS,...
    There was even of Adobe person that told me : "We are receiving a lot of complaints about the technical model of DPS, and you're right, it's terrible".
    There are so many problems with this app and with the servers.
    DPS's reputation will may be better when one day we just play offline with the folios like a PDF in GoodReader for instance.
    DPS is exploding my bandwidth.

    Peter, that is sad. If a publisher decides to pull the issue from the
    server, that's like burning down their own library of things.
    Apple wanted adobe to stop downloading such large data into the storage
    that will be backed up. So issues now go into the cache, that will not be
    uploaded to the Icloud storage.
    Because you buy a 64gb iPad, but get only 2Gb of online storage.
    —Johannes
    (mobil gesendet)
    Am 26.04.2012 18:35 schrieb "Peter Villevoye" <[email protected]>:
       Re: Adobe, what do you think about that ?  created by Peter Villevoye<http://forums.adobe.com/people/Peter+Villevoye>in
    Digital Publishing Suite - View the full discussion<http://forums.adobe.com/message/4363125#4363125

  • I would like to have a solar panel on my iPhone so I can have a constant state of charge what do you think about that?

    I would like to have a solar panel on my iPhone so I can have a constant state of charge what do you think about that?

    I am among this community since I invested much into this corporation. I rather go to the consumers just to discuss an idea I would like for this corporation to achieve. I do not like to purchase third party accessories as they seem to fail my expectations or the fact that it is not worth it when i finally see what they have made. Yes they are good products but there is much disappointment when I look to third-party products that say they are engineering products for the iPhone or other Apple device I have purchase. Just a thought no need to be so hostile.

  • What do you think about IPlanet 6.x Application server?

    Hi,
    Right now our company is developing an important project with J2EE. Our customer has IPlanet 6.5 application server. So far, we have had lots of problems with it.
    What do you think about it?.
    Would we consider to change the application server?.

    We also have had a lot of problems, although to be fair we have got it running reasonably reliabily now but only after disabling some of its features such as clustering. Make sure you have the maintence pack 1 installed. Ask Sun about the problems you are having often we would get a reply saying it was a known bug etc, unfortunatly no bug list is made available by sun...

  • What do you think about the html5?

    I've been seeing developers philosophizing about the future, and I want to know what do you think about the brand new html5?
    mainly because the html5 can take out of the market technology ( flex ).
    thanks for the opinion!!!
    [email protected]

    Yep this is most definitely not just a rumor, I've found plenty of sources talking about this.
    Here's someone's take on HTML5, a non-Adobe perspective, from a Silverlight developer.  I thought this would be interesting to mention.  Not sure I agree 100% with everything said (IE may not be most used browser and I don't believe in DRM), but it's an interesting read anyway:
    Yes, you can do a LOT of stuff with HTML5 + JS that Silverlight is good for. But HTML5 will only reach Candidate Recommendation status in 2012 - if Silverlight keeps the current pace, it will be at V7 by then.
    HTML5 will only get you approximately what Silverlight had at V1.0. A Canvas element, some video playback capabilites, and a Javascript programming model. Can you imagine how further advanced Silverlight 4 is at the moment?
    Actually, scratch that - the video quality and availability of HTML5 is a lot worse than what Silverlight has to offer. There is no DRM, no Smooth Streaming, not even full screen! No GPU acceleration either. Even the codec HTML5 has to support is not standardized! This results in Firefox 3.6 having only Theora decoder, and Youtube experimenting with HTML in H.264 (on the same day FF3.6 launched), only playable in approx. 4-5% of the world's browsers.
    Internet Explorer is still the most widely used browser on the web, and does not have HTML5. Currently, there are more Silverlight capable browsers browsing the web than HTML5 compatible ones. I don't think that in the next 3 years you will be able to create an HTML5 app and hope that at least 50% of the world's population can view it without switching browsers. (and remember: installing a plugin is a lot less hassle than switching to a new browser!)
    HTML5 will not be truly cross-browser standard for quite a long time, if ever. There are too many things that the browser developer can do as they wish - just think about the aforementioned video codec issue. There are too many little differences in each browser's Javascript implementation to make it really portable.
    The developer story: nothing in the HTML + JS world comes close to the awesome Visual Studio and Expression Blend tools. Javascript is cool for small apps, but cannot hold a candle to C# when it comes to serious development. Fighting with browser and OS incompatilities takes up a huge amount of time for any HTML website or web app - with Silverlight you don't have this.
    Just compare what the best HTML / Ajax company in the world (Google) did with maps, and what MS did to see the difference. Go tohttp://maps.google.com/ (watch out - the Streetview part is in Flash, not Ajax), and compare it to http://www.bing.com/maps/explore/. That is the difference I am talking about.
    Of course he means (or should have meant) Flex/Flash rather than just Flash.  As for the GWT and other AJAX fanboys who I guess think browser compatibility problems are going to be a thing of the past (or won't be a drag on corporate bottom lines - haha), it makes you wonder what other wild fantasies they're envisioning for the future.  Next they'll come and tell us XML-based protocols are going to be as fast as AMF...

  • What do you think about BIOS 1.8 for KT4V

    What do you think about BIOS 1.8 for KT4V?
    Is this version really better?
    CRC error- still  be occured?

    Hi
    This bios is catastrophic(k).I flashed bios and boot to win 98 and no one of my programs wont too work.Every time I try to start anything there is a note "this program performed illigal op...".So I re-installed win but problem remains.Now I'm back on bios 1.7.

  • What do you think about my site?

    What do you think about my site?
    www.linkx.ro
    This is my first site in flash8 so please be
    understanding:)

    I think it is pretty good. I like it. Although I have to
    agree that if you are looking for some serious business looks you
    have to go with more traditional design (HTML/CSS) and incorporate
    small flash bits that will make it look more dinamic. But that is
    just me. I have one suggestion - too much stuff man. I mean lots of
    links all over, moving things around. I understand you wanted to go
    for something dynamic and flashy but it is overwhelming to me! You
    might want to consider developing some sort of consistency and keep
    information/links/graphics bundled together so when one wants to
    find a link they would move to the link area and so on. Anyway
    looks great though for your first flash web.

  • What do you think about Quick Office for the IPad

    What do you think about Quick Office for the IPad

    You could also have a look at the following www.rollapp.com, I have only recently found it.
    You have access to the full OpenOffice and LibreOffice library of program's  and it syncs with Dropbox,google docs and others.
    You do require an Internet connection as it is cloud based.
    At present I have only used it for quick editing but I think it definitely looks promising and it is free

  • What do you think about using exceptions for something more than errors

    if you look the java.lang.Exception description at the JDK javadoc, you can see the following text:
    "The class Exception and its subclasses are a form of Throwable that indicates conditions that a reasonable application might want to catch."
    ... we can�t see "error" word anywhere!!
    What do you think about using exceptions for something more than errors? Can be possible use them as a way for send information to upper layers?
    Thankx in regards...

    it seems that what you say is a functional way of achiveing that, yes
    but Exceptions are generally reserverd for "Exceptional" situations ie program messing up or invalid data
    it does require a fair bit of processor time to actually generate and throw an Exception.
    so, all in all its "better" to use "normal" condition flow control to achive what you want.. you can always return early, break loops, call methods to pass information

Maybe you are looking for

  • Welcome to the new Oracle User Group Community

    Welcome to the new Oracle User Group Community. Whether you landed here via the redirect from the previous community site - IOUC.org - or navigated here directly, welcome. This new platform brings new community features to enhance the way you connect

  • Printer isn't showing up on iPhone 4S AirPrint

    When I first got the printer I knew I had set it up on my iPhone and iPad, but now it isn't on my iPhones AirPrint.  Printer is epson workforce 645 AirPrint capable.  I installed epsons  iprint app and the app found the printer fine.   I would like t

  • Create with Dynpro-Technology an  SAP Transaction

    Hello Experts! Imagine, I want to try create any SAP transaction lets say e.g. SalesDistribution's VA01 or any other transaction with the WebDynpro-Technology. In order to assure the 100 percent guarantee of correctly working of this transaction with

  • Abstract Background for SlideShows

    Several questions have come up on how to handle vertical images in a SlideShow. As our video Frame is a horizontal rectangle, to some degree, or another, what does one do with those vertical images - the ones that looked so good, printed and hanging

  • I cannot access "bridge" on my newly installed Photoshop CC.

    Need to access "bridge". Also unable to allow updates as says I need administrator password.