Posts

How to fix a pair of old running shoes with contact adhesive

Image
This is an attempt to give my 3 years old pair of ASIC running shoes a new life by re-gluing the sole and also fixing the worn off heels section of the sole. I could throw away this old pair of running shoes but it would be interesting to see if I could fix them and re-purpose them for other uses. There are also other reasons that encourage me to fix them. First, this pair of running shoes are still in good condition, other than the worn off sole and worn off glue that sticks the top part and the sole. Second, ASIC make really good running shoes with their GEL technology. Wearing them running were comfortable and I could run slightly longer without my legs feeling fatigue compare to other pair of shoes. Third, this was an expensive pair of running shoes when I bought them and a new pair of ASIC running shoes are still expensive now. Preparation As I mentioned above, there are basically two things for me to fix, which are re-gluing the sole to its top and fix the worn off heels se...

Wake up your Samsung Galaxy Note 4 without pressing any buttons

Image
You can wake up or turn on your Samsung Galaxy Note 4 screen without pressing the power button or even the home button. All you need to do to, is to wave your hands over your Samsung Galaxy Note 4 and the screen will then wake up to show your the time and awaiting for you to unlock the screen. Video Tutorial Screenshots Tutorial To do the hand waving magic, you will need to enable a built-in feature of "Air wake up" in your Samsung Galaxy Note 4. This feature basically sense your hands gesture of waving upwards to wake up the screen. Here is how you can enable the feature: 1. Go to "Settings". 2. Go to "Accessibility". 3. Go to "Dexterity and interaction". 4. Go to "Air wake up". 5. Turn on the "Air wake up" feature. After you have turn on the "Air wake up" feature, put your Samsung Galaxy Note 4 flat on a table and try waving your hands over it to get the hang of it. I find this feature is really useful whenever I j...

How to force only 4G or LTE network connection for Samsung Galaxy Note 4

Image
This is how to enable Samsung Galaxy Note 4 to force use only 4G (LTE) network connection for high speed internet data. There is a built-in switch in the smartphone that will enable the smartphone to force use only either 3G (WCDMA) or 2G (GSM) network connection but, there is no switch at all to enable the smartphone to force use only 4G (LTE) network connection. Video Tutorial This is screen video record to show you how to do it. If you prefer screenshots, please skip this video and scroll after the video. Screenshots Tutorial If you are clueless about the existing settings that enable you to switch network mode, goto “Settings > More networks > Mobile networks > Network mode”. Steps: Step 1 : From the phone dialer, dial *#2263# and the smartphone will bring you into the “Service Mode” screen like below. Step 2 : Select “[4] LTE BAND PART1 []” and the smartphone will bring you into a screen to select the types of LTE mode. Step 3 : Select “[1] LTE ALL []” to force the smartp...

How to boot Asus EeePC 1005px from USB drive

Image
I keep forgetting how to boot my Asus EeePC 1005px from USB drive whenever I need to reinstall my Ubuntu Linux into the netbook. This is how to do it. During the BIOS boot-up screen, press ESC button and you will be presented with a boot device menu. Select the USB drive that you have already plugged in to your netbook and press enter. The boot device you selected is temporary and it's good for the purpose of reinstalling OS into the netbook. You don't have to change the boot order from the BIOS setup as the change is going to be permanent. By using the boot device selection menu, you can temporary set the boot device for that boot up only.

D-Link DNS-320L ShareCenter Useful Links

Image
A list of useful links about D-Link DNS-320L ShareCenter Network Attached Server. DNS-320L at D-Link Forum D-Link DNS-320L at nas-tweaks.net D-Link UK Product Page D-Link DNS 320L Support Download Page

How to securely erase or wipe disk drives using bootable Ubuntu Live USB thumb drive

Image
If you are planning of selling off your old hard disk drive (HDD) or even USB drive, you might need to do a secure delete of the contents of your old HDD. This will ensure all your personal data in your HDD is unrecoverable using data recovery software. The idea behind this secure deletion or erasure of your HDD content is basically overwriting every bytes of your disk drive with either zeros or random data. This way, whoever that tries to recover the data, they will only see zeros or gibberish data (random data). I like to have a thumb drive preloaded with bootable Live Ubuntu USB thumb drive ready to perform tasks like this. For this post, I am not going to cover the topic of how to setup your USB thumb drive with Ubuntu Live OS. The tutorial is ready available at official Ubuntu website . Once the Ubuntu Live OS is booted up on your PC, there are already built-in commands you can use to perform such secure deletion or erase of your HDD content. There 2 commands that you can use from...

How to combine text from 2 cells into 1 cell in Ms Excel

Image
This is how you can combine text contents from 2 cells into 1 cell using formula. You can even insert your custom text in between, before or after the combined text. To combine text contents from 2 cell into 1 cell, use the "&" to join them together: A1&B1 If you want to insert a space in between the 2 combined text: A1&" "&B1 If you want to insert a hyphen in between them: A1&" - "&B1 If you want to add your custom text before the combined text: "custom text "&A1&B1 If you want to add your custom text after the combined text: A1&B1&"custom text" You can also combine the text together using "CONCATENATE" function: CONCATENATE(A1,A2) CONCATENATE(A1," ",A2) via ( http://office.microsoft.com/en-001/excel-help/use-formulas-to-edit-correct-and-proofread-text-RZ006183133.aspx?section=12 )