Skip to main content

How to reanimate dead Leonovo u430 touch

So I opened up my Lenovo Ideapad 430 touch today because I wanted to check whether my new SSD drive would fit in. When I reassembled it to transfer the data, I connected it to power and nothing happened. Not even the A/C light came on.

Since I didn't screw back all the screws, I opened it up again and put everything back into place (suspecting it was something to do with anti static precautions, but what do I know of physics...)

Well, it didn't help, and I got kind of freaked out. I googled and found nothing, except a fairly old entry about ThinkPads mentioning the Power Button.

Out of some kind of weird thought I pressed the Power Button for like 15 seconds - and a light came on. Pressed it again, and the machine came alive. [I'll spell the Power Button with Caps from now on since it is the HOLY Power Button obviously.]

Tech guys will most likely laugh at me now, but since I read nothing about this (and since I'm really glad I don't have to get a new Laptop or go ask some guys for help) I decided to share.

Comments

Popular posts from this blog

Joomla! 2.5: Multiple views, one model

Here goes MVC again: I was a bit confused that every time I created a second or third view for a component, I had to create a separate model for it. Did not make sense to me - I had the necessary algorithms in the model for the first view, did I really need to do copy & paste? I hate it! Redundancy, redundancy, redundancy. That case occurred in my current project - I created user profiles and needed an "edit" view. The data is the same, but I need to have the data in editable text fields instead of fixed labels, and maybe some other buttons here and there...  Well, some time later I realized that I just did not quite understand what Joomla! acutally means by "view".  And that there is something called "layout". Long story short: If you have a model that provides all necessary information and you just want to have a different presentation of it, just add a new .php file to your views/<yourviewname>/tmpl folder - let's call it "layo...

Win 7 / App Data Folders Empty

Some time ago, I observed something strange happening to my laptop: all of my menu entries in my start menu (and "all programs" menu) vanished, the task bar icons changed into a "unknown file type" icon, and nothing but Firefox was working any more. My personal files didn't seem to be affected, except for the folder "App Data". It still had all of its folders, but they were left empty. I could literally watch the menu items disappear. I could do nothing against it. A virus? A bug? I have no clue. Very nice: all of my emails were gone, too. Of course. Including all of my vacation plans, confirmation emails etc. A very good friend of mine pointed to a free tool called " Shadow Explorer ". I learned that Windows 7 creates " Shadow Copies " of nearly everything on the computer. This tool enables you to see these copies (up to about 2 or 3 weeks in the past) and recover the files. I was able to recover most of my missing app da...

Using opOSSum with ScanCode Output - How to Convert ScanCode Output JSON to Opossum JSON

 opOSSum is a nice Open Source compliance tool which can be found on GitHub . ScanCode is another nice Open Source compliance tool which can be found on GitHub , too. While the latter provides extensive code scanning functionality, the former can create comprehensive reports and visualize scan results. One just has to figure out how to get opOSSum to read ScanCode output.  This is not really an issue, but - as far as I can tell - has not yet been documented anywhere on the internet. opOSSum does read ScanCode json output, but it reqires some transformation beforehand. Good news: opOSSum also provides the tool to perform said transformation.  As usual, this is more of a step-by-step-guide for noobs such as myself for future reference, but I figured maybe this can be of use for the community as well.  Prerequisites:  1. Get ScanCode Just get it from https://github.com/nexB/scancode-toolkit...