Saturday, March 16, 2013

Cold Air Intake CAI for my AE111

Hi all, long time I've not update any progress done to my car. So here is another mod. Cold Air Intake or CAI.

My engine still using normal air filter box, if i can avoid hot air goes into combustion chamber I can gain extra power from it. CAI is not use to eliminate hot air, but is use supply colder air to air filter.
The theory is, colder air contain more oxygen. With more oxygen, engine can get near to perfect combustion thus can produce more power.

I do not show how to remove the bumper in this thread.

First thing is remove the white part. Need to remove 2 screw and loosen 1 screw as per picture below.




Then make a mark as I need to make the hole larger to fit the CAI hose. I use stone bit and grind it until large enough to fit the hose.




I just drill the hole just fit enough the CAI hose. So, to fit the hose in, I turn around the hose like fastening a screw. 



My little assistance doing his job.



How it look like after fit back the bumper






Thursday, February 21, 2013

Reboot Script for Android

Hi all. Have you ever experience your android phone very lag and need to reboot? Then, you can use this script to schedule reboot your android phone. May require root previllage.

What you need is Script Manager app and Reboot Script. In case you can't download the reboot script, you can create one. Copy and paste this below into notepad and save it.

Then go Script Manager - Menu - Advance - Scheduler - Add New Task - Select File - (browse to file that you have save) - set schedule time - Save

#! /system/bin/sh
reboot



Tags: Reboot Script for Android #! /system/bin/sh script manager smanager 


Saturday, February 16, 2013

Android Mods and Tweaks

My current phone is Galaxy Nexus aka GNex aka i9250. So maybe this thread mainly focus on this model.

 GPS

Sygic : If one of you have sygic not working properly (like stuck at sygic start), try install sygic ver. 11.2.6

Ever had a problem gps take long time to lock? Then you should try this solution.

1-Install 'GPS status &  toolbox', then go to Menu-Tools-Manage A-GPS state-then click reset and click download. Your GPS app should able lock faster after this step.

iGO PRIMO : Click Here


MTP

Wanna file transfer from android to ubuntu?
Then you should try this step. At least it work for me.

Reboot Script For Android






Tags : Android Mods and Tweaks gps mtp ubuntu

iGO Primo GPS for Glaxy Nexus

Hi all, lack of GPS app for Nexus? Here another GPS app insted of sygic. Work like charm on my nexus with full screen.

1-Download this file iGO_GNex.zip with Malaysia, Brunei and Singapore maps.
2-Extract his file into root of SD Card
3-Install iGO.apk and try this one first.
4-If not working with Jelly Bean (no sound) then install thin-v1.1+JB.apk. Install it over old app



Tags: galaxy nexus igo primo gps malaysia singapore brunei map maps jelly bean unfortunately has been stopped

Sunday, February 3, 2013

TUTORIAL : Galaxy Nexus Enable MTP File Transfer in Ubuntu Linux

 Many people have struggle to connect android phone to Ubuntu for file transfer. I've found it over the net and it's work like charm. Kudos to Lou from http://ohheyitslou.blogspot.com/




The packages for MTP in the Ubuntu 11.10 repos are built from outdated source and are the cause of most of the MTP file transfer woes. I've gone ahead and removed the updated packages from the Ubuntu 12.04 repos both 32 & 64 bit versions. These have to be installed in a certain order to avoid issues so install as follows:


sudo dpkg -i libmtp9_1.1.1-1_amd64.deb
sudo dpkg -i libmtp-common_1.1.1-1_all.deb
sudo dpkg -i libmtp-runtime_1.1.1-1_amd64.deb
sudo dpkg -i mtp-tools_1.1.1-1_amd64.deb

Final package that needs to be install:

sudo apt-get install -y mtpfs

*After install make sure that the following packages are installed 
mtp-tools libmtp-runtime libmtp9 libmtp-common mtpfs

  • First we must create a mount point for your Galaxy Nexus:
sudo mkdir /media/Nexus
  • Now we must assign the proper read/write privileges to the directory:
sudo chmod 775 /media/Nexus
  • We have to create a file the enables your Linux system to see your Galaxy Nexus:
sudo gedit /etc/udev/rules.d/99-android.rules
  • Copy & Paste the following into the file then save and close:
#Acer
SUBSYSTEM=="usb", SYSFS{idVendor}=="0502", MODE="0666"
#Dell
SUBSYSTEM=="usb", SYSFS{idVendor}=="413c", MODE="0666"
#Foxconn
SUBSYSTEM=="usb", SYSFS{idVendor}=="0489", MODE="0666"
#Garmin-Asus
SUBSYSTEM=="usb", SYSFS{idVendor}=="091E", MODE="0666"
#Google
SUBSYSTEM=="usb", SYSFS{idVendor}=="18d1", MODE="0666"
#HTC
SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666"
#Huawei
SUBSYSTEM=="usb", SYSFS{idVendor}=="12d1", MODE="0666"
#Kyocera
SUBSYSTEM=="usb", SYSFS{idVendor}=="0482", MODE="0666"
#LG
SUBSYSTEM=="usb", SYSFS{idVendor}=="1004", MODE="0666"
#Motorola
SUBSYSTEM=="usb", SYSFS{idVendor}=="22b8", MODE="0666"
#Nvidia
SUBSYSTEM=="usb", SYSFS{idVendor}=="0955", MODE="0666"
#Pantech
SUBSYSTEM=="usb", SYSFS{idVendor}=="10A9", MODE="0666"
#Samsung
SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666"
#Sharp
SUBSYSTEM=="usb", SYSFS{idVendor}=="04dd", MODE="0666"
#Sony Ericsson
SUBSYSTEM=="usb", SYSFS{idVendor}=="0fce", MODE="0666"
#ZTE
SUBSYSTEM=="usb", SYSFS{idVendor}=="19D2", MODE="0666"

  • Now we must make the file executable:
sudo chmod +x /etc/udev/rules.d/99-android.rules
  • Download and unzip the mount/unmount scripts I've written for you in your home directory:
  • Make the scripts executable:
sudo chmod +x mount-nexus.sh unmount-nexus.sh
  • Enable MTP transfer on your Galaxy Nexus by entering into Settings-Device-Storage select Menu in the bottom right hand corner then "USB computer connection" make sure "Media device (MTP)" is selected.
  • Connect the Galaxy Nexus to your computer:  *USB Debugging must be disabled*
  • With the mount and unmount scripts in your home directory execute the mount command by typing the following (please wait for a while, it take time to load files from android) :
./mount-nexus.sh
  • Execute (IS A MUST) the unmount command by typing the following:
./unmount-nexus.sh 


 




Tags : TUTORIAL : Galaxy Nexus Enable MTP File Transfer in Ubuntu Linux mtpfs mtp-tools libmtp-runtime libmtp9 libmtp-common mtpfs ./mount-nexus.sh ./unmount-nexus.sh, 

Friday, December 28, 2012

Green colour Wind screen and side screen glass replacement

Actually it been thought of changing to new windscreen for a couple years ago but until now I can make it come true. After bought insurance cover for it, then I went to his shop located at MWE Commercial Park, Kepong to replace it. This shop not only can replace a windscreen, but also a supplier for windscreen workshop around Malaysia.


They mark the crack area for insurance claim purpose.


After windscreen been remove, I'm not there when they took out the windscreen.




This is replacement for my windscreen with greenish colour on the top. Double layer of course.


Details of the windscreen. 


 Sandblast Printed on the windscreen




They put a masking tape to make sure the windscreen not moving down for about 24 hours until silicon glue harden.


At last but not least, I also replace greenish side glass (darker glass on rear) with UVS (people said it can filter 99% UV) to lower cockpit temperature during hot evening. With the new windscreen, I also notice great temp reduce inside the car than before.

Saturday, December 8, 2012

Ae111 BZR Double Deck armrest modified

Original BZR armrest only have a single deck armrest. Becoz I need more space for a storage, it is good to have double deck armrest.
Since I still kept my double deck from local AE111, it's time to mod it!

1- Mod the screw holes to make wider.

2- Remove the stopper coz it did not fit


3- File the edge of the hinge to make it fit into armrest base

4- Cut the upper drawer coz it also did not fit into the base

5- Here is the side view of the double deck with bzr base armrest

6- View after fit back into car


Expand storage for Openwrt router

If he router has very low storage, in my case router is DIR-842. Here is tutorial to expend storage using USB flash drive.  Original guide i...