Showing posts with label how to. Show all posts
Showing posts with label how to. Show all posts

21 Nov 2012

[Tutorial] How to make a simple form registration neatly

By Unknown | At 10:39 pm | Label : , , , , , , , | 0 Comments
I got a lesson from my lecturer about making a simple form registration.
Then, I modified the codes to look neatly :3, cause my lecturer said
that combine the simple codes with table element tag will make it look neatly.
So, I just followed his sayings',then applied or experimented it
to make it better to look. :D

It will look like this one for example

Nama
Alamat
Jenis Kelamin Pria Wanita
Hobi Sepakbola Computer Internet
Agama
Komentar



If u need the codes, here they are :

20 Nov 2012

[Tutorial] How to add Hex Color Generator to blog or web

By Unknown | At 8:51 pm | Label : , , , , , , , , | 0 Comments
I'd like to share tutorial about how to add hex color generator . .
So, these are the instructions :

U just, make a post to your blog or web as HTML post . .
Then, u add these codes below, before post or upload a webpages that ain't contain the codes



Credits & Thanks to for my references:
  • Macromedia
  • 2createawebsite
  • e-infotainment

23 Dec 2011

Custom splash screen on Android phone

Materials :
boot logo editor (credits to pratyush.creed)

After u downloaded it,
just extract files to a directory that u wanna place 'em.

and, take your image (.rle) or (.png) to the directory,
and go drag to a command prompt, like :
  • Converting .rle to .png
          "convert_rle_to_image.bat GIO.rle"
  • Converting .png to .rle
          "convert_image_to_rle.bat GIO.png"

U may wanna see ss for details :



30 Oct 2011

Building Android (Kernel) from source & Repo

By Unknown | At 3:28 pm | Label : , , , , , , , , , , , , , , | 3 Comments
Building kernel tools :
git
ARM Compiler Toolchain
Kernel Source Code
Python
Valgrin
Java

*git     : $ sudo apt-get install git
*java    : $ apt-get install java, 

then choose either of 'em, then type command again like this :
$ sudo apt-get install *java-version
*valgrind : $ sudo apt-get install valgrind
*python  : $ sudo apt-get install python

*ARM toolchain :
Do a web search on code.google.com
or
u can use this (For Gioers)


*Kernel source code :
download from github.com
(For Gioers, u can download on here (Hyriand source code) or here
or my source code


U can download kernel source code by typing this command on terminal :
$ git clone https://github.com/iksteen/android_kernel_samsung_galaxygio

----SKIP THIS STEP IF YOU JUST WANNA BUILD KERNEL-----

And, u need to repo first.
U can type these commands to do :

$ mkdir ~/bin
$ PATH=~/bin:$PATH

$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo

$ mkdir WORKING_DIRECTORY
$ cd WORKING_DIRECTORY

$ repo init -u https://android.googlesource.com/platform/manifest -b gingerbread

[for GB]

$ repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
[for ICS]

*Choose your name & e-mail, and colour.
after u're done,

type this command :

$ repo sync -j2 ( for bandwidth min 10kbps max 20kbps )
$ repo sync -j4 ( for bandwidth min 20kbps max 40kbps )
$ repo sync -j8 ( for badnwitdh min 40kbps max 60kbps )
$ repo sync -j16 ( for bandwidth min 60kbps max 80kbps )
$ repo sync -j32 & -j64 ( for fast bandwidth )


or u can use this command :
  
$ mkdir -p ~/bin 
$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo 

$ mkdir android-repo 
$ cd android-repo 
$ repo init -u https://android.googlesource.com/platform/manifest --mirror
 
And, type command for sync like above.
up to you to choose either of 'em. 

Wait till done.

---------------------------------------------------------------------------------
JUST CONTINUE DIRECTLY TO THIS BELOW STEP
---------------------------------------------------------------------------------
And, u do next steps (For Gioers):
$ mkdir android
$ mkdir sources
$ mkdir .Galaxy_Gio_Sources 


And if ya have downloaded all tools that they're needed,
u can do these steps :

Hold ctrl+H on your home.
Move your kernel source code to folder u created that it named .Galaxy_Gio_Sources

And, copas your ARM toolchain to source code folder.
Before do to the next step, u find the following lines on "Makefile" in source code folder :

#ARCH         ?=   $(SUBARCH)
CROSS_COMPILE     =

change them to

#ARCH        ?= arm
CROSS_COMPILE   = ./arm-2009q3/bin/arm-none-linux-gnueabi-

After that,

type these commands :

$ cd android
$ cd sources 



Then, type command on terminal :
$ ln -s /home/*name of your desktop/.Galaxy_Gio_Sources/android_kernel_samsung_galaxygio

U can grab config.gz on your HH with root explorer.
location >> proc/*config.gz
copas to sdcard.
Move to /android/sources/android_kernel_samsung_galaxygio/arch/arm/configs

Then, type these commands on terminal :
$ cd ~/android/sources/android_kernel_samsung_galaxygio/arch/arm/configs
$ gunzip config.gz

and rename it to be gio_rev03_defconfig
or

copy boot.img or zImage that u want to extract its config to root folder kernel sourse tree.
then, type this command from kernel source tree :
$ ./scripts/extract-ikconfig boot.img > gio_rev03_defconfig

this command means that it extracts config from boot.img to gio_rev03_defconfig file


Command before do compile :
$ export CCOMPILER=~/arm-2009q3/bin/arm-none-linux-gnueabi- or
$ export CCOMPILER=/home/*name of your desktop/arm-2009q3/bin/arm-none-linux-gnueabi-


next,
$ make ARCH=arm CROSS_COMPILE=$CCOMPILER gio_rev03_defconfig
then,
$ make ARCH=arm CROSS_COMPILE=$CCOMPILER


or directly w/o use export commands. Like these :

$ cd android
$ cd sources
$ cd android_kernel_samsung_galaxygio

$ cd arm-2009q3
$ chmod ugo+rwx bin

$ cd ..

then,
$ make
ARCH=arm CROSS_COMPILE=$CCOMPILER gio_rev03_defconfig
$ make ARCH=arm CROSS_COMPILE=~/android/sources/android_kernel_samsung_galaxygio/arm-2009q3/bin/arm-none-linux-gnueabi-

[Example}


compiled kernel location > arch/arm/boot/*zimage

And, if u wanna know how to repack your kernel image (zImage), go check to this thread!
just change a kernel image (boot.img-kernel) with your kernel image (zImage).
wanna clean?
try this command
:

$ make ARCH=arm CROSS_COMPILE=~/android/sources/cm-kernel/CodeSourcery/Sourcery_G++/bin/arm-none-eabi- clean
and you'll get log like these

  CLEAN   arch/arm/boot/compressed
  CLEAN   arch/arm/boot
  CLEAN   /home/delano/android/sources/cm-kernel
  CLEAN   arch/arm/kernel
  CLEAN   drivers/char
  CLEAN   kernel
  CLEAN   lib
  CLEAN   usr
  CLEAN   .tmp_versions
  CLEAN   vmlinux System.map .tmp_kallsyms1.o .tmp_kallsyms1.S .tmp_kallsyms2.o .tmp_kallsyms2.S .tmp_vmlinux1 .tmp_vmlinux2 .tmp_System.map


Thx to
Hyriand
Andika Edo Prabowo
Waqas
tj_styles
and
Yanuar Harry for their support

19 Oct 2011

How to upgrade your Samsung Galaxy Gio to GB KS2 2.3.5

Hey, guyz!
I wanna tell ya bout how to upgrade your Galaxy Gio GT-S5660 to Gingerbread Official KS2 2.3.5.

Ok, let's to the case!
:D

First, u need to download GB DXXKS2 Stock ROM from here.
wait till finish downloaded.
After that, u open the file, extract to folder u wanna.
Open Odin 4.42 that u can download it from here
Fill Select OPS with GIO OPS.
and,
Fill other files like these :

BOOT : APBOOT........
PHONE : MODEM......
PDA : CODE......
CSC : MULTI-CSC........
Let EFS & One Package blank

If u done,
u'll need to do just like below.

Turn off your phone.
Then, connect your phone to PC/Laptop
Click Start, and wait till "pass" seems.

Good Luck!
CMIIW ^_^

Install CWM recovery to your Galaxy Gio GT-S5660

By Unknown | At 8:17 pm | Label : , , , , , , , , | 0 Comments
First, u need Odin Multi Downloader v4.42 that u can download here

After downloaded it, u extract to a directory that u wanna.

And, Operate Odin Multi Downloader, then get Gio OPS v1.0 into Select OPS column,

Then, check list one package on left side.
And, Get CWM recovery file into one package column that u can download download here

Click start. Wait till "pass" appears.

CMIIW ^_^

Activate CRT Animation

By Unknown | At 8:06 pm | Label : , , , , , , , , , , | 0 Comments
I wanna share about Activate CRT Animation on my blog :D
Your HH has been rooted.


Go to system, there's build.prop
Tap and hold on the file. Then, Open in Text Editor.
*Don't forget to mount r/w system on right side.

Find :

debug.sf.hw=1

Give # into it

So, it can be like this :

#debug.sf.hw=1


Up next,
U need to decompile framework-res.apk with APKTOOL that u can download here
*Don't forget to backup your data, if there something that u don't want it happens :D

After u downloaded it, go extract it into a directory that u wanna, and name it APKTOOL.
Then, u use command prompt.bat file on the folder.
Type these commands :

apktool if framework-res.apk
apktool d framework-res.apk


After u decompiled it, u find bools.xml on folder res/value, u search line :

<bool name="config_animateScreenLights">true</bool>

Change true to false
<bool name="config_animateScreenLights">false</bool>
After u edited the data, u go back to operate command prompt.bat

Then, type :

apktool b framework-res
Have a look folder build.

U'll find file resources.arsc and other folders (Go to folder res, find file u edited).
Drag it into framework-res.apk

May this help ya!
CMIIW ^_^

How to unpack, repack, split, mkboot edit boot.img

By Unknown | At 7:22 pm | Label : , , , , , , , , , , , , , | 6 Comments
Hello, I wanna share on this blog about How to unpack, repack, split, mkboot boot.img

First, u need a file names Bootimgutils that u can download here.
After u done, u extract the file into a directory that u wanna and give it name (Like, Bootimgutils for the example)
.
Then, U grab boot.img file (U can grab it directly on onepack ROM. U can find boot.img on Code, if u use fullpack ROM)
*Don't forget to check the file permissions as executeable programs. Right-click, properties. Click on permissions tab

Go to terminal (Linux) or Cygwin (Windows)
Type these commands :

cd Bootimgutils
./split_bootimg.pl boot.img
mkdir ramdisk
cd ramdisk
gzip -dc ../boot.img-ramdisk.gz | cpio -i
cd ..

O.K. Up to ya to edit boot.img.
And, don't forget!
If u have done to change files.
U need to repack it anymore.

For that, u can type :

./repack_bootimg.pl boot.img-kernel ramdisk bootnew.img

or u can replace it.
U just need to change a command to be like this :

./repack_bootimg.pl boot.img-kernel ramdisk boot.img

*If u have backup of an original boot.img


Tips for unpack XZ compressed type:
./split_bootimg.pl boot.img
mkdir ramdisk
cd ramdisk

change your bootimg-ramdisk.gz > bootimg-ramdisk.xz.
And, then open its ramdisk content,
Drag to ramdisk directory u made before.

And, repack it
./repack_bootimg.pl boot.img-kernel ramdisk boot.img

Happy packing!

CMIIW
^_^

12 Oct 2011

How to partiting your sdcard

By Unknown | At 6:19 pm | Label : , , , , , , , , , | 0 Comments
Hi, everyone!
OK, I wanna tell ya bout hpw to partiting your sdcard.
Let's go to the case!

First, u need to download MPW program from here.
Go install it.
and then, U find your sdcard location (drive).
Do copy your sdcard files first to a directory u wanna!
Delete your sdcard, so u can see "unallocated space." Click apply on left sidebar.
And, do format it.
First, for your saving files (music, videos, etc), u can set the space into size that u wanna.
Set to primary, fat32, and cluster 4kb

Second, for your apps installed.
Set the space into size that u wanna.
Set to primary, ext2, and cluster 4kb.
And, click apply.

Wait till finish partiting. :D

Good Luck!
CMIIW ^_^

Notes : not makes partiting over than 1GB for apps installed space.

Upgrading galaxy gio s5660 to GB Indo dxxkp6

Hey, guyz!
I wanna tell ya bout how to upgrade your galaxy Gio gt-s5660 to Gingerbread Official Indo.

Ok, let's to the case!
:D

First, u need to download GB INDO Stock ROM from here.
wait till finish downloaded.
After that, u open the file, extract to folder u wanna.
Open Odin 4.42 that u can download it from here
Fill Select OPS with GIO OPS.
and,
Fill other files like these :

BOOT : APBOOT_S5660DXKP6_CL561540_REV03_user_low_true.tar.md5
PHONE : MODEM_S5660DXKP6_CL561540_REV03.tar.md5
PDA : CODE_S5660DXKP6_CL561540_REV03_user_low_true.tar.md5
CSC : GT-S5660-MULTI-CSC-OLBKP6.tar.md5
Let EFS & One Package blank

u can see a preview below
















Turn off your phone.
Then, connect your phone to PC/Laptop
Click Start, and wait till "pass" seems.

Good Luck!
CMIIW ^_^

9 Oct 2011

How to cook on UOT kitchen

By Unknown | At 1:33 pm | Label : , , , , , , , , , | 0 Comments
I will tell ya bout how to cook on uot kitchen.



U need to wait for people queueing up.

After u have got into the kitchen,

U can cook what u want to.



U do from battery till bootanimation,

but the first step u should do is uploading your files (systemUI.apk & framework-res.apk)



After u have edited all of that, click submit work to kitchen.

And, u need to wait for the files u got cooked, finished.

U can see the files u cooked on pickup tab on UOT



CMIIW ^_^

23 Sept 2011

How to unroot & root Gingerbread on your Android Phone

By Unknown | At 11:52 pm | Label : , , , , , , , , , , , , | 0 Comments
This is a tutorial about how to root & unroot Gingerbread

[Root]
First, connect your phone to PC/Laptop.
Then, copy root.zip to your SDcard.
Turn your phone off.
Then Get into recovery mode (press Home+Power on/off button).
Choose "apply update from sdcard" by pressing volume down at once.
and choose update.zip that u saved on sdcard by pressing home button.
wait for 5mins (MAX).
Reboot now.

Your phone is rooted :)

[Unroot]
The ways same as how to root. But, the different is about the file.
If u wanna unroot your device, u need to download unroot.zip and rename to update.zip.
Then, u copy it to sdcard.
Do just like to root your phone.
Follow the instructions above.

Your phone is not rooted anymore
CMIIW ^_^

How to make Apple ID for free

By Unknown | At 11:31 pm | Label : , , , , , , , | 0 Comments
This is tutorial about how to make App ID for free payment.
First, u need to download iTunes program. U can download it here.
After that, u open the file. And, u go to store on menu bar.
Then, choose either of free apps. U can see just like on here.










After u have chosen it, App ID request to login will appear.
Go to create account.
Like here.









Click continue.









Read the terms & conditions till finish,
and check "I have read....," ok, next.









U fill these data that u suppose to.
Fill correctly. And, next.









When u be commanded to choose a payment card, u choose "none."
And, u fill the blanc correctly. And, next.









Account verifying will appear just like on a pic below.
And, u go to your e-mail to verify an Apple ID.









After u verify your account by e-mail.
U will see a pic like this.









And, now, u have an Apple ID.
Enjoy it!

CMIIW ^_^
Older Post ►
 

www.technomonde.blogspot.com. © 2012. Delano's Blog. Powered by blogger.Theme Mod by Delanoister