reset a blackberry smartphone

reset a BlackBerry smartphone to factory defaults, complete the following steps:

Warning: Back up the data from the BlackBerry smartphone to a computer first.

On a 32-bit Windows XP to Windows 7 operating system (OS), complete the following steps:

Connect the smartphone to the computer.
On the computer, click Start > Programs > Accessories > Command Prompt. (Note: For Windows Vista and Windows 7, right-click and run as Administrator.)
Type cd C:\Program Files\Common Files\Research In Motion\Apploader and press ENTER.
Type loader.exe /resettofactory and press ENTER.

On a 64-bit Windows XP or Windows 7 OS, complete the following steps:

Connect the smartphone to the computer.
On the computer, click Start > Programs > Accessories > Command Prompt. (Note: For Windows Vista and Windows 7, right-click and run as Administrator.)
Type cd C:\Program Files (x86)\Common Files\Research In Motion\Apploader and press ENTER.
Type loader.exe /resettofactory and press ENTER.
Note: BlackBerry Desktop Software 4.7 to 6.0 must be installed on the computer. The BlackBerry smartphone must be running BlackBerry Device Software 4.3 to 6.0.

On a Mac computer, complete the following steps:

Close the BlackBerry Desktop Software if it is open on the Mac computer.
Open Terminal.
Type cd /Applications/BlackBerry\ Desktop\ Software.app/Contents/MacOS/ and press Enter.
Type ./bbdm resettofactory
Note: In the Mac OS X environment, if the BlackBerry smartphone has a password set, you must specify that password within the command. For example: ./bbdm -password 12345 resettofactory (where 12345 is the BlackBerry smartphone password).
Read more

all about cfp dan javaloader

Usage: CFP [-p<port>|-u<port>] [-b<max BPS>] [-w<password>|-np]
[-v<verbosity>]
[-t<max connect timeout>]
[-c<max command timeout>] <command>
<command> is one of
HELP [<command>]
INFO
FILEINFO <filename>
LOAD <filename1> [filename2] [-v]
WIPE [-F|-I]
SAVEFS <filename>
CSAVEFS <filename>
NUKE [-A]
FRESH
ERASE <range>
READ <range> [-A] <filename>
CREAD <range> [-A] <filename>
WRITE <range> <filename> [<offset>] [-v]
WRITE <start address> <filename> [<offset>] [-v]
HIS
HOS
HASHBOOTROM [<bootromfile> [<hwvfile>]]
USBMS [-i<INFO> | -s<ENABLE> | -c<DISABLE>]
PATRIOT [-o] <subcommand> [<arguments>]
GETLOG [filename]

<range> is one of
<start address>-<end address> (start address < end address)
<start address>,<length> (length > 0)
All addresses, lengths, and offsets are expressed in HEX. Also,
<end address> is the address of the last byte in the range (e.g.
<length> = <end address> - <start address> + 1)

Verbosity Level:
-vd Display nothing at all (output disabled)
-v0 Display nothing other than progress
-v1 Display errors
-v2 Display errors and warnings (default)
-v3 Display procedural steps
-v4 Display protocol commands
-v5 Display everything. Lots of chatter!

Supported serial rates: 1382400, 691200, 460800, 345600, 230400, 153600,
115200, 76800, 57600, 38400, 28800, 19200, 14400
and 9600.

USB Ports: to use this feature, configuration with USBPortMapper.exe
is required. Please see 'USBPortMapper.exe HELP' for more information.

-------------------------------------------------------------------------------










INFO Usage
INFO

Description:
·         The INFO command extracts and then displays a wealth of information
about the device.

Examples:
·         The following command will display all known information about a device:
CFP INFO


FILEINFO Usage
FILEINFO <filename>

Where: <filename> is a list of one or more space separated filenames

Description:
·         The FILEINFO command extracts and then displays a wealth of information
about the specified files.
NOTE: specifying a verbosity level >= 3 will cause extra info to be displayed.

Examples:
·         The following command will display all known information about pcs1900.bin:
CFP FILEINFO pcs1900.bin


LOAD Usage
LOAD <file1> [file2]
Where: <file1> is a valid OS binary, SFI file, of FS image.

Description:
·         The LOAD command loads the specified file(s) onto a device.
If the new OS is larger than the the OS currently on a device, the entire
device will be erased and the contents of the file system will be lost.
If loading a new FS image any old data on the device is lost.
There must be a valid OS on the device.

Examples:
·         The following command will load the firmware onto a device:
CFP LOAD gsm.bin


WIPE Usage
WIPE [-F|-I]

Where:   -Fspecifies that only the filesystem should be wiped.
                -I specifies that only the installer partition should be removed.
                If no option is specified, both the filesystem and OS are wiped.

Description:
·         The WIPE command allows the filesystem
or all the filesystem and OS regions of flash to be irreversibly erased.

Examples:
·         The following command will wipe all data on device:
WIPE

This command should be used when initially upgrading to the new loader
to ensure that old (unrecognized) versions of applications are destroyed.


SAVEFS Usage
============
SAVEFS <filename>

Description:
·         The SAVEFS command saves the file system data from a device to
the specified file. There must be a valid OS on the device. Since this saves a
plaintext copy of the data, it is only supported on insecure devices. For secure
devices, use the CSAVEFS variant which will save an encrypted file.

Examples:
·         The following command will save the file system data from a device to the file
filesys.dmp:
CFP SAVEFS filesys.dmp


NUKE Usage
NUKE [-A]

Where: -A specifies that the OS should be erased as well (requires password).

Description:
·         The NUKE command erases all of the user's data off the device
including the filesystem and the password. This command is useful if a
password is lost and one would like to make the device usable again at the
expense of lost data.
CFP NUKE


FRESH Usage
FRESH

Description:
·         The FRESH command puts the device into freshness seal.
Namely, after sending this command, the battery will be turned off
and a manual reset will be required to turn the device back on.

Examples:
·         CFP FRESH



ERASE Usage
ERASE <range>

Where: <range> specifies the flash region to be erased.
Please type CFP alone for the definition of <range>.

Description:
·         The ERASE command erases flash sectors on a device.
The INFO will provide all of the address information required to use this
command. Note that address ranges must be sector size aligned.
Please BE CAREFUL! If you don't know exactly what you are doing, use WIPE
This command is not fully functional on secure devices

Examples:
·         The following command will erase the OS & filesystem (depends on flash size:
CFP ERASE 0x01010000-0x13FFFFF
So will:
CFP ERASE 0x01010000,0x3F0000
READ Usage
READ <range> [-A] <filename>

Where: <range> specifies the flash region to be read.
-A specifies that the data should be appended to file <filename>.
Please type CFP alone for the definition of <range>.

Description:
·         The READ command reads data from flash on a device and writes
it to a file. The INFO should provide all of the address
information required to use this command. If not, you shouldn't be using
this command. Since this saves a plaintext copy of the data, it is only
supported on insecure devices. For secure devices, use the CREAD
variant which will save an encrypted file. This command is not fully
functional on secure devices.

Examples:
·         The following command will read a sector of the filesystem:
CFP READ 0x013F0000-0x013FFFFF dump.bin


CREAD Usage
Save an encrypted image of memory. See READ for usage details


WRITE Usage
WRITE <range> <filename> [<offset>]
WRITE <start address> <filename> [<offset>]

Where: <range> specifies the flash region to be erased.
If <start address> is specified, the length of file <filename> will be used.
<offset> specifies the data location offset from the start of file <filename>
Please type CFP alone for the definition of <range>.

Description:
·         The WRITE command writes data from a file to flash on a device.
The start address must be the start of a sector and the length must be a
multiple of 4 (for now). Each sector written will first be erased -- this
means that writing to the first byte of a sector will cause the sector to be
empty aside from the first byte.
Please BE CAREFUL!
This command is not fully functional on secure devices

Examples:
·         The following command will load data.bin, starting at first sector of the
OS:
CFP WRITE 0x01010000 data.bin
Assuming that data.bin is 145 bytes in length, so will:
CFP WRITE 0x01010000,0x91 data.bin
And so will:
CFP WRITE 0x01010000-0x0x01010090 data.bin

The following command will load 1024 bytes to flash (address 0x01023424),
starting 200 bytes into data.bin:
CFP WRITE 0x01023424,0x400 data.bin 0xC8






HIS Usage
HIS

Description:
·         The HIS puts the device into Head in Sand mode. Namely, after sending
this command, the device will reset on a catastrophic error instead of
displaying an error code.

Examples:
·         CFP HIS


-------------------------------------------------------------------------------

HOS Usage
HOS

Description:
·         The HOS takes the device out of Head in Sand mode. Namely, after sending
this command, the device will NOT reset on a catastrophic error and will display an error code.


Examples:
·         CFP HOS


HASHBOOTROM Usage
HASHBOOTROM [<filename1> [<filename2>]]

Description:
·         The HASHBOOTROM command connects to a device and calculates a SHA-1 hash
signature of the bootrom. Optionally it can hash a specified file.

Examples:
·         The following command will hash the file using the HWV from the connected device
CFP HASHBOOTROM bootromfile.bin
The following command will hash the file using the specified HWV file
CFP HASHBOOTROM bootromfile.bin hwvfile.hwv


USBMS Usage
USBMS [-i | -s | -c]

Where:   -i: Returns current USBMS mode
                -s: Enables USBMS mode
                -c: Disables USBMS mode

Description:
·         The USBMS command can be used to check or change USB Mass
Storage mode on USBMS-capable devices

Examples:
·         The following command will return the current USBMS mode
CFP USBMS -i
The following command will enable USBMS mode on USBMS-capable devices
CFP USBMS -s
The following command will disable USBMS mode on USBMS-capable devices
CFP USBMS –c




PATRIOT Usage
PATRIOT [-o] <subcommand> [<arguments>]

Where: -o specifies use of old-style Patriot communication (through the OS).
<subcommand> is one of the following Patriot commands:
INFO
LOAD [-f] <patriot binary file>
BERBUG <Berbug script file>
ERASE <range>
WRITE <range> <filename>
WRITE <start address> <filename>
READ <range> <filename>
LOCKSTATUS
RESETLOG
MEMTEST [<string>]

Description:
·         The PATRIOT command accesses a set of sub-commands for Patriot
operations. LOAD, ERASE, WRITE and READ behave similarly to
the standard CFP commands.
BERBUG accepts a text file of line-delimited Berbug command/response pairs.
LOCKSTATUS checks the status of Patriot's flash lock state for Baryon devices only.
INFO command reports info on the loaded Patriot binary.
RESETLOG command dumps the Patriot reset log.
MEMTEST command loads the memory test kernel and sends out each character in the string and prints the response.
If the string is not specified then MEMTEST enters interactive mode.

Use CFP HELP PATRIOT <subcommand> for help with specific subcommands.

Examples:
·         The following command will load a Patriot binary
CFP PATRIOT LOAD patriotbinary.bin


GETLOG Usage
GETLOG [filename]

Where: [filename] specifies that the bugdisp log should be written to file [filename].
If not specified then c:\log.bug is assumed.

Description:
·         The GETLOG command reads the bugdisp log for debug RAMImages.

Examples:
·         The following command will read the bugdisp log to file bug.bug:
CFP GETLOG bug.log







loader cfp :

mengakses satu set sub-perintah untuk system
operasi. seperti inject, erase,write dan READ berperilaku sama
perintah CFP standar layaknya MML ( mfi multiloader )


contohnya membuat command untuk load mfi,,sfi,,erase.dll

tutorial :

1.
simpen CFP.exe di C:\windows\system32 :

command read info :

-read info dari BB : membaca smua address dan isi yang ada di dalam BB
:START
loader -u info
pause
ganti extension file txt Notepad tsb jadi .cmd
hasilnya seperti ini :

membuat command untuk load mfi,,sfi,,erase.dll
siapkan file yang mu di inject ke bb dalam 1 folder lalu buatkan perintah menggunakan notepad sesuai perntah2 diatas, SAVE. Contoh :

:START
loader –u load MFI-13961-25
pause

ganti extension file txt Notepad tsb jadi .cmd
hasilnya seperti ini :

nuked :
mengosongkan OS dan reset password bisa juga menuju jvm error 513 untuk melakukan perintah berikutnya
:START
loader -u nuke
pause






Read more

Reset Search Engine Firefox Provider

Firefox Logo


Kali ini Saya akan share cara mereset ulang atau mengubah search engine bar pada mozilla firefox. Biasanya ketika kita mengetikan kata-kata pada address bar secara otomatis maka akan mencari ke Google Search Engine kan? Tetapi pada kasus ini kok bukan Google ya yang keluar melainkan provider lain.
Itu biasanya disebabkan karena ketika Anda menginstall software ‘biasanya’ cuma next-next doank . Saat Anda menginstall software, beberapa pembuat software biasanya menyertakan fitur untuk mengubah search engine default kita  menjadi punya mereka. Tapi, namanya kita install kadang males kan baca-baca lisensi dan perjanjian2nya? . So, gitu deh jadinya.
Contohnya begini

Firefox Reset Search Engine

Contoh ketika Anda mengetik di address bar
Firefox Reset Search Engine

Tetapi yang muncul malah seperti ini
Oke tanpa panjang lebar lagi , langsung saja kita bahas langkah-langkahnya :
  1. Pertama buka mozilla firefox Anda, lalu klik pada I’ll be careful, I promise!
    Firefox Reset Search Engine
    Firefox Reset Search Engine

  2. Kemudian pada field search ketikkan keyword.url
  3. Selanjutnya klik ganda, maka akan muncul popup seperti gambar di bawah ini. Ubah valuenya sesuai dengan search engine provider yang Anda inginkan, defaultnya Google.
    Firefox Reset Search Engine
    Firefox Reset Search Engine Step

Read more

CARA MASUK RECOVER SAMSUNG ANDROID

Cara Masuk Recovery Mode Handphone Android Samsung :
>Cara Masuk Recovery Mode Samsung Galaxy Y (Young) GSM :
Tekan tombol Volume Up + tombol HOME + tombol Power secara bersamaan selama beberapa detik.
>Cara Masuk Recovery Mode Samsung Galaxy Y (Young) CDMA :
Matikan hp dan nyalakan lagi dengan Menekan tombol Power, saat muncul logo Samsung kemudian tekan tombol VOL UP sampai masuk ke recovery Mode. Kalau handphone menyala normal masuk ke menu seperti biasa, matikan handphone lagi dan ulangi proses dari awal.

>Cara Masuk Recovery Mode Samsung Galaxy Gio :
Tekan tombol HOME + tombol Power Secara bersamaan.

>Cara masuk Recovery mode Samsung Galaxy Pro :
Tekan tombol T + tombol Power Secara bersamaan.

>Cara masuk recovery mode Samsung Galaxy 551 :
Tekan tombol huruf T + tombol Power. Untuk navigasi atas bawah dapat menggunakan tombol panah, sedangkan untuk melakukan pilihan menggunakan tombol Shift.

>Cara Masuk Recovery Mode Samsung Galaxy W (Wonder) :
- Matikan handphone
- Tekan tombol Volume Up + Tombol HOME + Tombol Power secara bersamaan dan tunggu sampai keluar logo “Samsung”, setelah itu segera lepas ketiga tombol tersebut, dimulai dari tombol Power terlebih dahulu.
- Bila muncul logo Android atau gambar kotak dan anak panah lanjutkan dengan menekan tombol MENU (tombol sebelah kiri dari tombol HOME). Bila tidak berhasil masuk ke recovery mode, ulangi lagi tahap pertama.

>Cara Masuk Recovery Mode Samsung Galaxy Tab 7? (P1000) / Tab 7 Plus (P6200) :
Matikan Tablet lalu Tekan tombol Volume UP + Tombol Power secara bersamaan sampai layar menyala
Read more

Customize Webmail Di Google Apps

google_apps_logo


Saya sudah pernah menulis tentang Cara Setup Domain ke Google Apps dimana tujuannya adalah me-routing jalan dari email website kita melalui servis dari Google. Sekarang Saya akan share sedikit cara kostumisasi url address pada mail/ webmail kita yang berpoint di Google Apps. Jika kita mendaftarkan domain kita dan menggunakan MX Records Google untuk webmail kita, Saat hendak mengecek email Anda harus masuk terlebih dahulu ke http://mail.google.com/a/domainkita bukan? Terasa capek atau kurang gimana gitu kan?
Cara yang akan Saya berikan ini berfungsi untuk mengubah http://mail.google.com/a/domainkita menjadi http://mail.domainanda.com. Berikut adalah caranya :
  1. Pertama, Anda perlu login terlebih dahulu ke Cpanel/ Dashboard Google Apps domain Anda dengan mengunjungi link http://www.google.com/a/domainkita. Kemudian pada tab Settings, Email, General, pilih Change URL.
    Mail Setup
    Mail Setup
  2. Pilih menu custom dan masukan url yang Anda inginkan, disini sebagai contoh saya menggunakan kata mail.
    Mail Setup
    Mail Setup
  3. Setelah itu akan muncul gambar seperti dibawah ini.
    Mail Setup
    Mail Setup
  4. Buka Cpanel hosting Anda, dan pilih menu DNS Editor, isi field name dengan url yang Anda isi di google apps sebelumnya, disini menggunakan mail. Lalu ubah tipenya menjadi CNAME. Isi nilai field CNAME dengan ghs.google.com
    Cname Setup
    Cname Setup
  5. Jika sudah Anda tambahkan, kembali ke tab Google Apps dan pilih “I’ve completed these steps”
  6. Ketika Anda ke Dashboard Anda, Anda akan melihat URL seperti gambar  dibawah ini. Pastinya dengan domain Anda masing-masing  dan Anda bisa langsung mengunjungi webmail Anda lewat http://mail.domain.com
    Google Mail
    Google Mail
Terima Kasih
 Silahkan dicoba

Read more

Tools dan Software Untuk Pengembangan Game

game maker standard


Saya sudah pernah posting tentang Jenis-jenis game dan opporrtunity penunjang creative industries dan tentang Game Teknologi. Sekarang Saya mau nulisa lagi tentang Tools dan Software untuk pengembangan game dan prebandingannya. Sebenarnya Saya sudah pernah menulisnya pada game teknologi, namun saat itu hanya Saya sebutkan saja. Nah sekarang Saya ingin menjelaskannya walau mungkin kurang begitu jelas.

RPG Maker XP/2000

RPG Maker
RPG Maker
RPG Maker 2000 adalah perangkat gratis yang memungkinkan Anda untuk membuat Super Nintendo / Playstation 1 RPG gaya konsol mirip dengan “Final Fantasy” dan “Dragon Quest”. Software ini cukup fleksibel dan mudah digunakan, memungkinkan Anda menyesuaikan antarmuka dan antarmuka scripting;  memungkinkan kontrol desainer lebih besar dan kebebasan dalam desain dalam pelaksanaan permainan. Ada fitur tileset yang tersedia dan pilihan musik pada game standar, dan ada komunitas yang berkembang dari pengguna untuk memproduksi konten baru bagi para pengembang yang lain.

Game Maker

Game Maker
Game Maker
Game Maker memungkinkan Anda untuk membuat segala sesuatu dari sisi-bergulir seperti Super Mario-esque, Doom-style first-person shooters, semua dengan antarmuka titik-dan-klik sederhana.  Pada situs resminya  ada beberapa tutorial tentang cara membuat berbagai jenis permainan. Ada juga sebuah komunitas yang sangat aktif memproduksi game dan source untuk download dan memainkannya. Di versi berbayar atau “Pro” nya perangkat lunak ini menyediakan lebih banyak fitur dan fungsionalitas.

3D Adventure Studio

3D Adventure Stidio
3D Adventure Stidio
3D Adventure Studio adalah alat pengembangan yang dirancang untuk memungkinkan Anda untuk membangun game petualangan 3D yang mirip dengan “Betrayal,” “Krondor” and “Gabriel Knight 3″. Perangkat lunak ini masih dalam tahap Alpha dan belum diperbarui sejak 2004, tetapi masih sedikit berguna.

Adventure Maker

Adventure Maker
Adventure Maker
Adventure Maker adalah pembuat game yang sangat serbaguna yang gratis dan memungkinkan Anda untuk membuat game petualangan point-and-click untuk PC Anda, PSP, Iphone dan Ipod Touch. Selain permainan, perangkat lunak ini memungkinkan Anda untuk membuat majalah interaktif, wisata virtual dan bahkan PowerPoint seperti presentasi. Sama seperti Game Maker ada edisi gratis serta edisi lengkap yang menawarkan lebih banyak fitur. Perangkat lunak yang dirancang untuk PSP dan Iphone / Ipod adalah legal dan dalam semua parameter yang berwenang.

Eclipse MMORPG Maker

Eclipse memungkinkan pengguna untuk membuat MMORPG 2D, mirip dengan “Maple Story”.  Seperti alat desain lainnya yang tercantum di atas, yang satu ini membutuhkan pengetahuan pemrograman sedikit atau tidak ada pun bisa, meskipun seorang programmer cerdas dan berpengalaman dapat memperluas fungsionalitas sebuah permainan dengan pemrograman fitur tambahan menggunakan built-in tools scripting. Seperti RPG Maker XP, ada tilesets banyak tambahan, grafik dan cara lain untuk mengembangkan permainan Anda, bisa Anda download di situsnya.

Read more

Jenis-Jenis Game dan Opportunity Untuk Menunjang Creative Industry

Jenis Game

Jenis-Jenis Game

Sekarang Saya akan menjelaskan kepada Anda jenis permainan tersedia dan Saya akan memberikan beberapa contoh dari jenis-jenis permainan itu. Mungkin Anda bisa melihat pada tulisan Saya kali ini , Saya seperti melihatnya dari genre game. Tetapi pada dasarnya yang akan Saya jelaskan dibawah ini adalah “Jenis-jenis Permainan” atau “Jenis-jenis Game”.
Role Playing Game (RPG):  Sebuah permainan bermain peran biasanya permainan yang sangat panjang dan kita dituntut masuk ke dalam alur cerita game tersebut. Ada beberapa game RPG di luar sana yang tidak memerlukan waktu Anda lebih dari 20 jam untuk memainkannya namun itu sangat sedikit. Beberapa contoh-contoh game RPG adalah Final Fantasy, Dragon Warrior, Breath of Fire, Secret of Mana dan banyak varietas lainnya. Biasanya RPG melibatkan sekelompok karakter yang Anda butuhkan untuk membangun atau mengembangkan sesuatu untuk mencapai tujuan akhir bersama. Untuk sampai ke tujuan tersebut, Anda perlu memperkuat karakter Anda dengan meneingkatkan level karakter tersebut atau mengumpulkan peralatan baru.
First Person Shooters (FPS): Game jenis ini lebih populer di kalangan dunia multiplayer daripada dunia pemain tunggal. Beberapa contoh baik dari sebuah permainan FPS diantaranya Half-Life, Counter-Strike, Doom, Castle Wolfenstein dan lain-lain. FPS menempatkan Anda ke dalam peran satu karakter membawa banyak senjata dan dengan tujuan bersama untuk mencapai suatu titik akhir, melarikan diri dari malapetaka dan semua hal menyenangkan. Ketika bermain dalam permainan multiplayer, Anda dapat bermain dalam FFA (Free For All), permainan Tim atau varietas lainnya.
Real Time Strategy (RTS):  Peran permainan strategi real time ini adalah dengan menerapkan bagian strategis dari pikiran Anda ke dalam pandangan dari lingkungan yang serba cepat. Catatan, tujuan Anda dalam permainan RTS ini adalah mengalahkan tentara lawan dengan tentara Anda bahwa Anda harus membangun dengan mendapatkan sumber daya. Contoh-contoh game RTS akan Starcraft, Warcraft, Total Annihilation, Command and Conquer dan lain sebagainya.
Permainan Olahraga (Sports Game):  Genre olahraga biasanya menunjukkan olahraga mana saja yang dapat Anda mainkan di kehidupan nyata. Olahraga seperti, skateboard, snowboarding, tenis, basket, sepak bola dan lain-lain. Biasanya game seperti ini lebih disukai  bagi mereka yang suka olahraga. Beberapa contoh yang dari game seperti ini diantaranya PES (Pro Evolution Soccer), FIFA, Madden NFL, asrama Cool, NBA Slam, dan banyak lainnya seperti PGA Tour Golf, Tiger Woods Golf, Brunswick Bowling.
Permainan Balapan (Racing Game):  Saya suka game balapan, ini benar-benar menyenangkan.  Biasanya permainan ini tidak jauh dari  stunts, kecepatan, trik, tabrakan, atau apapun hal-hal ekstrim lainnya. Off-road Racing dan Need for Speed ​​adalah contoh game yang seting kita jumpai. Balapannya juga bermacam-macam mulai dari truk, Snowboards, skateboard, balap kuda, mobil sport, pada dasarnya SEMUANYA! Beberapa game mengagumkan dalam topik ini antara lainnya Need for Speed​​, Moto Racer, Off-roadRacing dan lain-lainnya.
Puzzlers: Permainan Puzzle adalah jenis yang sangat populer. Permainan puzzle contohnya seperti catur dan dam (checkers). Game jenis ini biasanya menuntut kita untuk berpikir, memecahkan suatu masalah yang ada. Saya bisa bilang game jenis ini adalah game klasik yang menyenangkan
Mungkin masih banyak tipe atau jenis-jenis game yang belum Saya sebutkan. Tapi pada intinya, janis game yang Saya sebutkan diatas adalah permainan dasar yang umum dan ada pada saat ini.

Opportunity / Kesempatan penunjang Creative Industies

Sebelum membahas lebih lanjut tentang opportunity untuk menunjang creative industry, lebih baiknya kita tahu apa itu Creative Industry. Menurut Department for Culture, Media and Sport (DCMS), Creative Industry adalah industri-industri yang memiliki ide hasil sendiri, keterampilan, kreativitas dan bakat yang memiliki potensi untuk pekerjaan dan penciptaan kekayaan melalui generasi dan eksploitasi kekayaan intelektual (Creative Industries Mapping Document’, DCMS, 2001).
Melihat dari penegertian diatas kita memiliki sedikit gambaran bagaimana kesempatan game dalam kreatif industri. Seperti yang kita tahu bahwa begitu banyak manusia di bumi ini, Anda bisa membanyangkan seberapa banyak pula ide ada. Memang saat ini game yang ada sudah begitu banyak, tapi seiring berkembangnya teknologi pula pasti nanti akan ada game-game baru yang bermunculan.
Pada tahun 90-an hingga awal 2000-an misalnya, kita dahulu di manjakan dan dibuat ‘asik’ dengan game seperti pada nitendo dan playstation dimana mereka memiliki permainnan yang menarik dari berbagai jenisnya. Selanjutnya mulai lah muncul game desktop atau komputer yang semakin menjadi, game komputer dulu memang kurang banyak diminati, tetapi semenjak didukung dengan komputer yang memiliki kemampuan untuk merender kualitas gambar yang lebih bagus, game komputer memiliki daya tarik tersendri. Nah, baru-baru ini kita dihadapkan dengan dunia yang serba mobile. Mulai dari yang namanya handphone, smartphone, tablet pc dan mungkin nanti akan ada teknologi terbaru intel yang bernama Ultrabook (Saya pribadi belum tahu mau menyebut apa, bentuknya mirip seperti tablet, tapi kok speknya wah banget.. mungkin ada yang mau berkomentar nanti di kolom komentar dibawah? monggo ).
Jadi, kesimpulannya game tidak akan mati sampe kapan pun karena tidak munafik juga bahwa semua orang pasti ada saatnya butuh refreshing dari kejenuhan. Dengan adanya game (permainan), kita dapat mengurangi rasa jenuh tersebut
Read more

Archive