Skip to main content

Now to prevent Samsung Galaxy Note 7 from exploding

Even if Samsung branches in some countries would like to keep it so*, it's no secret that some Note 7 devices have been sold with a faulty battery and can catch on fire and even explode while charging or shortly thereafter. Samsung plans to replace all the devices sold to ensure our safety even though particular procedure is not always clear (in some countries, anyway).

But it will definitely take a few weeks to replace those batteries and deliver everything so what can and should you do meanwhile?

First of all, if you can, simply do not use the device at all. It's definitely the safest even though I'm pretty sure Samsung would replace it for you even it's caught on fire. Just turn it off, put it into the box, and wait for replacement. Samsung will probably appreciate its unused condition when refurbishing and restocking.

Second, if you still want to use it, make sure it does't overheat. Don't charge overnight, don't leave unattended while charging, don't Gear VR, don't do anything that can make it hot. When charging, keep it close to your body (like, in hand) and quickly unplug if you feel it getting hot. Probability of ending up with a faulty device is low to begin with and with measures like these you can minimize probability of anything fatal even further.

Third, you can get creative. You can tremendously enhance your safety when charging Note 7 if you put it into a glass of ice water.



Phone is water-resistant so why not use that? It will cool it off if it gets hot and even if it catches on fire or explodes, water will not allow fire to spread. There is some possibility of short-circuiting so still be careful. Make sure to keep USB port dry as it will refuse to charge otherwise. Leave phone in water for a few minutes after unplugging to make sure it does not explode and, after charging, wipe it dry with a paper towel.

* Samsung Russia is yet to publish any news about this even though mass-texting and follow-up calls did happen.

Disclaimer: Information in this post is not endorsed or sponsored or approved in any way by Samsung or any of its subsidiaries or partners and represents only author's personal opinion on subject. Use any advice on your own risk, some actions can void your warranty or put you in danger.

Popular posts from this blog

「この番組は、ご覧のスポンサーの提供でお送りします」Inference Labs

It's official, I have corporate sponsors now (which will hopefully be closer to strategic partnership soon, at least I'd like that). Thanks for the steaks and wine and equipment and all other resources for my distributed hacker team (I'm hoping for a cool demo for ETHOnline hackathon), and local Web3 meatup group I facilitate in Tbilisi (steaks and gas money for everyone participating in the ecosystem), and my Web3 community support army in training. A large bag of kudos for our general sponsor: Inference Labs! If anybody needs help onboarding into the decentralised world, reach me privately and we'll help you navigating the options, we have the expenses covered and good people for this (better points of contact are being established, things are being worked on, stay tuned). I should probably tell a few words about what we actually do at Inference Labs but things change so often I hope we're still bringing decentralized AI to the Web3 world when you read this (maybe...

New horizons

I originally started this blog with ideas of reviewing devices and services and hoping that eventually if it gets popular enough somebody starts sending me stuff to review. A lot has changed since, I stopped obsessing that much about new gadgets and got into vintage electronics, many of things that were new and interesting a few years ago are a commodity now. I thought about reviewing the phone I finally got to refreshing last year (S23 Ultra is ok upgrade for Note 8, I'm glad that new ultras will finally have flat screen again, I might upgrade next year or so just for that) but I don't really feel like it or think it would mean much for the readers. Most of my vintage electronics is at home where I haven't been for a couple years and it's not something I can currently do something about, I touched a soldering iron like once or twice this year. I might post something work-related once I get the hang of what I'm actually doing there and have some rough ideas wen dece...

Using virtualenv for more than Python projects

Sorry, it's not a complete instruction, just a thought. It occurred to me (some time ago) that Python's virtualenv is, essentially, a simplified version of system "prefix", it has bin, lib, include, and can have more stuff when needed. If you're willing to experiment (you'll probably have to set a few additional environment variables and/or build flags but that's no big deal), you can install various other tools there up until you have a complete system with its own compiler and complete set of libraries although it's much simpler to keep using system compiler and libraries only complimenting them when needed. Granted, prefixes are nothing new, people were using /opt (and their home directory) this way since the beginning of time. But with little help of virtualenv-wrapper or pyenv you can easily switch between them and isolate environments better. Binaries and stuff installed in virtualenv would override system defaults but only when venv is activat...