Friday, 30 June 2017

Cover Thumbnailer Now Supports Nautilus 3 x

Cover Thumbnailer Now Supports Nautilus 3 x


From its website: Cover Thumbnailer is a small Python script which displays music album's covers and a preview of pictures which are in a folder in Nautilus, the GNOME's file browser. Cover Thumbnailer generates the folder's thumbnail automatically, like any other thumbnailer; you don't have to generate thumbnails manually.


Version 0.8.3 of Cover Thumbnailer was released just recently, with support for Nautilus 3.x.

Continue Reading �
{ Read More }


CorelDRAW Graphic Suite X5 Final

CorelDRAW Graphic Suite X5 Final


Corel Draw adalah editor grafik vektor yang dibuat oleh Corel, sebuah perusahaan perangkat lunak yang bermarkas di Ottawa, Kanada. Versi terakhirnya versi 15 yang dinamai X5 dirilis pada tanggal 23 Februari 2008. CorelDRAW pada awalnya dikembangkan untuk dijalankan pada sistem operasi Windows 2000 dan yang lebih baru. Versi CorelDRAW untuk Linux dan Mac OS pernah dikembangkan, tetapi dihentikan karena tingkat penjualannya rendah.

Versi CorelDRAW X5 memiliki tampilan baru serta beberapa aplikasi baru yang tidak ada pada CorelDRAW versi sebelumnya. Beberapa aplikasi terbaru yang ada, di antaranya Quick Start, Table, Smart Drawing Tool, Save as Template, dan lain sebagainya

Download : http://www.corel.com/akdlm/6763/downloads/trials/GraphicsSuiteX5/3in1/CorelDRAWGraphicsSuiteX5Installer_EN.exe
Crack : http://bebasupload.com/479nec5melq4/CrackCDX5.rar.html
{ Read More }


Crackle Movies TV v2 3 8 Version 2 3 8 Android Application Apk Free Full Mediafire Latest

Crackle Movies TV v2 3 8 Version 2 3 8 Android Application Apk Free Full Mediafire Latest


f-1024-5 (1024�500)

Watch full-length Hollywood movies & TV shows on your phone. Free and on demand.

Watch FREE movies on your Android phone.
PINEAPPLE EXPRESS. MEN IN BLACK. BAD BOYS. GRIDIRON GANG. GLORY. THE PATRIOT. JERRY MAGUIRE and hundreds more: full-length, uncut and FREE. Plus, top rated TV series like SEINFELD.
~With over two million downloads on iTunes in less than a month, Crackle is now available for free on Android phones~
*** If you experience sound or video issues (slow-motion, etc.), try updating to the newest version of Flash from the Android Market***
* Watch full-length Hollywood movies and TV series* FREE to download app, FREE to watch* Unlimited, on demand viewing* 20 new movies and TV episodes added monthly* Genres including: action, comedy, crime, horror, thriller and sci-fi* Browse Movies, TV, Originals, Collections and Genres - or search by keyword * Build and manage your queue for viewing on the app or online at Crackle.com.* Stream HQ video via 3G or Wi-Fi* App only works in US, Canada, UK and Australia
* Android 2.2+ with Flash 10.1+ required, supported phone list below. (Tablet version coming soon)
CURRENT MOVIES AND TV*:
MOVIES
Hundreds of movies including: PINEAPPLE EXPRESS, MEN IN BLACK, BAD BOYS, GRIDIRON GANG, GLORY, THE PATRIOT, JERRY MAGUIRE, QUARANTINE, REC, SO I MARRIED AN AXE MURDERER, THE MOTHMAN PROPHECIES, EIGHT MILLIMETER and more
TV
Thousands of full-length episodes; series include: SEINFELD, SPIDER-MAN, SAMURAI X, MARRIED� WITH CHILDREN, THE THREE STOOGES and more
**************************FAQ*************************** If you experience sound issues (slow-motion, etc.), try updating to the newest version of Flash from the Android Market* To use this app, you must be in US, Canada, United Kingdom or Australia. Available movies and TV series vary by territory.* Yes, the app is free. To cover our costs we include some short video ads. Data charges may apply (unlimited data plan recommended.)
* Currently, Crackle is supported on the following phones:

ss-480-1-4 (480�800)ss-480-0-4 (480�800)ss-480-2-2 (480�800)

Download Crackle - Movies & TV Android Game

Android Market

1. Open Android Market on Your phone

2. Go to "Search" or click here

3. And download the game
for free from android market


{ Read More }


Create Your Own Customized Run Commands

Create Your Own Customized Run Commands



The Run command on Microsoft Windows operating system allows you to directly open an application or document with just a single command instead of navigating to it�s location and double-clicking the executable icon. However, it only works for some of the inbuilt Windows programs such as Command prompt (cmd), Calculator (calc) etc. So, have you ever wondered how to create your own customized Run commands for accessing your favorite programs, files and folders? Well, read on to find out the answer.

Creating the Customized Run Command

 
Let me take up an example of how to create a customized run command for opening the Internet explorer. Once you create this command, you should be able to open the Internet explorer just by typing �ie� (without quotes) in the Run dialog box. Here is how you can do that.
1. Right click on your Desktop and select New -> Shortcut.
2. You will see a �Create Shortcut� Dialog box as shown below
Create Shortcut
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3. Click on �Browse�, navigate to: Program Files -> Internet Explorer from your Root drive (usually C:) and select �iexplore� as shown in the above figure and click on �OK�.
4. Now click on �Next� and type any name for your shortcut. You can choose any name as per your choice; this will be your customized �Run command�. In this case I name my shortcut as �ie�. Click on �Finish�.
5. You will see a shortcut named �ie� on your desktop. All you need to do is just copy this shortcut and paste it in your Windows folder (usually �C:/Windows�). Once you have copied the shortcut onto your Windows folder, you can delete the one on your Desktop.
6. That�s it! From now on, just open the Run dialog box, type ie and hit Enter to open the Internet Explorer.
In this way you can create customized Run commands for any program of your choice. Say �ff� for Firefox, �ym� for Yahoo messenger, �wmp� for Windows media player and so on.
To do this, when you click on �Browse� in the Step-3, just select the target program�s main executable (.exe) file which will usually be located in the C:Program Files folder. Give a simple and short name for this shortcut as per your choice and copy the shortcut file onto the Windows folder as usual. Now just type this short name in the Run dialog box to open the program.
I hope you like this post! Pass your comments.
{ Read More }


Creating your own loop structure in Java 8 lambda

Creating your own loop structure in Java 8 lambda


Java doesnt have an easy construct of repeat something N number of times. We can make a for loop of course, but many times we dont even care about the variable that we created in the loop. We just want repeat N times of some code and thats it. With the lambda available in Java 8, you may attempt something like this:

public class RepeatDemo {
    public static void main(String[] args) {

        // One liner repeat
        repeat(10, () -> System.out.println("HELLO"));


        // Multi-liners repeat

        repeat(10, () -> {
            System.out.println("HELLO");
            System.out.println("WORLD");
        });
    }
   
    static void repeat(int n, Runnable r) {
        for (int i = 0; i < n; i++)
            r.run();
    }
}



Probably not as eye pleasing or straight forward as the good fashion for-loop, but you do get rid of the unnecessary loop variable. Only if Java 8 would go extra mile and treat the lambda argument in method with sugar syntax, then we could have it something like the Scala/Groovy style, which makes code more smoother. For example:

        // Wouldnt this be nice to have in Java?

        repeat(10) {
            System.out.println("HELLO");
            System.out.println("WORLD");
        }


Hum....
{ Read More }


converter stick ps2 ke ps3

converter stick ps2 ke ps3




converter stick ps2 ke ps3

tahukah anda stick ps2 bisa di gunakan di konsol ps3???
jawabannya bisa asalkan pake converter stick
dengan satu syarat stick ps2 harus yg ori bawaan mesin ini supaya stick ps2 bisa bekerja maksimal di mesin ps3
Harganya cukup terjangkau antara Rp.80.000-Rp.95.000
berikut gambar stick converter


{ Read More }


Create Simple Login Form Using PHP Basic

Create Simple Login Form Using PHP Basic


Hello...
How are you.....

The post before, the writter has sharing How to Create Simple Comment Form Using PHP. That posting has been implemented the lesson of input output using PHP MySQL. For the next lesson, the writter will be share how to Create Simple Login Form Using PHP. This lesson is basic of login method in website.

Okay, prepare in this lesson is, Web Server and MySQL, you can use XAMPP on this condition.

Lets go to the Lesson,

First, you could create a Database on MySQL and one table. There are 3 field on the table. Follow this tutorial for simple Lesson.
Now, the writter create a Database with name is blog. Than create table with the name is user. Next, there are 3 fields on the user table, it is a id_user as Primary Key,  username char(32), and password char(32). For detail, look at below.


Thats a structure of Fields on the user table. After you create a Database, Table, And Fields. Now you must fiil the Fields. For expample look at below.


Okay, now we just need a 2 (Two) Pages, 1 (one) for Login Page, dan 1 (one) again for Checking Page.

Lets create a Login Page, this page we will give the name is login.html. Below is the simple script on login page.

<html>
<head>
<title>Login Form</title>
</head>
<body>
<h2>Login Form</h2>
<br>
<form method="POST" action="check.php">
<table>
<tr>
<td>Username</td>
<td><input type="text" name="user" size="20"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="pass" size="20"</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="submit" value="Login">&nbsp;<input type="reset" name="reset" value="Reset"></td>
</tr>
</table>
</form>
</body>
And than, create the checking page with the name is check.php. Below is the simple script on checking page.

<?php

##### Connection to database #####
$hostname = "localhost";
$username = "root";
$password = "";
$dbname = "blog";
$link = mysql_connect($hostname,$username,$password) or die("Error Connection");
mysql_select_db($dbname,$link);
##### End #####

##### Receive Input #####
$user = $_POST[user];
$pass = $_POST[pass];
##### End #####

##### Checking input in table within database #####
$sql = "select * from user where username = $user AND password = $pass";
$hasil = mysql_query($sql) or die("wrong");
$row = mysql_fetch_array($hasil);
if($row == "0") {
echo "<h2>Sorry, username and password does not match</h2>";
}
elseif($row != "0"){
echo "<h2>Login is Successful....</h2>";
}
##### End #####

?>
If all scripts was created. The simple login form was already to use.
The explain of that script is below.

$hostname = "localhost";
$username = "root";
$password = "";
$dbname = "blog";
$link = mysql_connect($hostname,$username,$password) or die("Error Connection");
mysql_select_db($dbname,$link);

its script, are use to create connection between page to database.

$user = $_POST[user];
$pass = $_POST[pass];
its use to receive a input from html page (input username and password). After receive, the value will be include in the variables ($user and $pass).

$sql = "select * from user where username = $user AND password = $pass";
$hasil = mysql_query($sql) or die("wrong");
$row = mysql_fetch_array($hasil);
its use to checking value of $user and $pass on the Database. The basic of this process is on the query syntax. And than the query is executed with mysql_query(); syntax. And than will processed with mysql_fetch_array(); syntax. The result of it will be included on the $row variable. The value of the $row variable is one or zero.


if($row == "0") {
echo "<h2>Sorry, username and password does not match</h2>";
}
elseif($row != "0"){
echo "<h2>Login is Successful....</h2>";
}

Its to use to checking a value of the $row variable, is the value zero or one. If zero means username and password does not match. And if one means username and password does match.



Lets try it.
First. open the login.html page.

Than, fill username and password, than click "Login"
If, success you will look like below


if username and password does not match, you will look at below

Okay, that is Basic of Login Form Using PHP.
On the next time, the writter will share for Advanced Login Form Using PHP.

Happy Paper 4share !!
{ Read More }


Cowboys and Aliens gameloft

Cowboys and Aliens gameloft




(game)
Now whos going to be Daniel Craig! and whos the Harrison Ford! Lets be heroes!! yeah!
DOWNLOAD



{ Read More }


pan>

pan>
creating,your,own,custom,dsl,for,config,files,with,konf,example,looking,up,mesos,ports,or,docker,ports

{ Read More }


Thursday, 29 June 2017

Crime Life Gangwars Full RIP Crack

Crime Life Gangwars Full RIP Crack


Game Download Crime Life: Gangwars Full RIP Crack - The game is a fictionalized simulation of gang wars, with the game play focused on street fights involving many gang members at once. Free roam is also available as in the popular Grand Theft Auto series. Weapons include baseball bats, lead pipes, hammers and guns. The game includes over 25 story-mode missions, as well as some free-play missions. The areas are relatively small but can prove useful when trying to locate your fellow gang members. Crime Life: Gangwars Full torrent link, pc games download Crime Life: Gangwars Free. Now View All Other game Full version here

Crime Life: Gangwars game for windows


Minimum Requirements:

  • Operating System: Windows XP, Vista. -- > Download Now
  • Processor: Intel Pentium 4 With 1.5GHz
  • indownloads.com - RAM: 512MB
  • Graphic Card: 256MB
  • Hard Disk Space: Up to 3GB
  • Sound System: DirectX Compatible. -- > Download Now

    Screnshoot : (Click Image to View  Large)

    Crime Life: Gangwars Game Play free torrent link

    crack Crime Life: Gangwars full patch

    INFO
    Home Page :
    Price : / ( Discount Special Offer Click Home Page )
    Note : Buy It Original Software select one link
    Product Review by : indownloads.com
    Download : Crime Life: Gangwars Full RIP Full Version
    { Read More }


    Corpse Party

    Corpse Party



     
     
    Release Date: TBA 2015
    M for Mature: Strong Language, Blood and Gore, Partial Nudity, Intense Violence, Sexual Content
    Genre: Adventure
    Publisher: Xseed Games
    Developer: Team GrisGris
     
    A unique twist on horror action and a cult favorite in its native Japan when it was released, Corpse Party promises to deliver a tense and bone-chilling experience for all who dare step foot into situations they may not be prepared to survive.
    Corpse Party is an adventure game that uses hand-drawn 2D sprite and tile art to tell the story of a group of Kisaragi Academy High School students who are trapped in a haunted elementary school filled with the decaying corpses and tormented souls of countless children who�d mysteriously vanished from the Japanese countryside years, months or sometimes only days prior. Desperately trying to escape and survive, players will experience unnatural, unnerving and decidedly uncensored horrors through the eyes � and ears -- of these frightened teenaged victims. Detailed 2D sprite animations and art stills show the bloody and unsettling fates that await those who enter. Featuring more characters, more detailed interactions, darker story elements, over 5,000 lines of Japanese voice-acting from the original indie actors and dozens of shocking, gruesome endings, there�s much more to this survival horror adventure title than meets the eye. As players walk around examining objects and bodies in an atmospheric 2D environment, a horror tale spanning over 50 years begins to unfold, and player choices determine which of the tale�s dozens of endings is viewed, and who (if anyone) lives to see these horrifying events through to their conclusion. 

    armanto.gamessz.com/game.php?game=corpse-party/pc-20019549

     
    { Read More }


    Cowok Fobia Cewek Cantik

    Cowok Fobia Cewek Cantik






    Exfile4shared.blogspot.com, Wanita memang makhluk yang indah dan mempesona. Hampir setiap orang suka memperhatikan wanita yang cantik. Tapi tidak bagi penderita caligynephobia, paras wanita yang cantik justru membuatnya ketakutan alias fobia.

    Menurut American Psychological Association, fobia adalah salah satu gangguan mental yang paling umum, yang mempengaruhi lebih dari 11 persen pria dan wanita.

    Tapi mungkin tidak banyak orang yang tahu bahwa ada orang yang fobia dengan wanita berparas cantik, yang dikenal dengan caligynephobia atau venustraphobia.

    Seperti ketakutan atau fobia lainnya, caligynephobia diciptakan oleh pikiran bawah sadar sebagai mekanisme perlindungan. Hal ini mungkin disebabkan oleh peristiwa masa lalu yang menghubungkan wanita cantik dengan trauma emosional.

    Fobia wanita cantik ini juga bisa dipicu oleh berbagai peristiwa selain trauma pribadi, seperti kejadian di film dan televisi atau melihat pengalaman orang lain yang berhubungan dengan wanita cantik.

    Orang dengan caligynephobia akan menganggap wanita berparas cantik sebagai makhluk yang sangat berbahaya. Orang dengan kelainan ini akan sangat panik bila bertemu dengan wanita cantik.

    Gejala lain yang dialami penderita caligynephobia saat melihat wanita cantik baik langsung maupun di televisi, foto atau video adalah:

    1. Sesak napas, napas menjadi cepat dan pendek
    2. Detak jantung tidak teratur
    3. Berkeringat dingin
    4. Mual
    5. Ketakutan secara menyeluruh

    Meskipun gejala-gejala ini berbeda antara sesama penderita caligynephobia, tapi efeknya jelas akan membuat penderita tidak dapat berkonsentrasi dan kinerja menurun bila berada di dekat wanita cantik.

    Fobia ini tidak hanya kambuh bila berhadapan langsung dengan wanita cantik, tapi juga bisa terjadi bila si penderita melihat wanita cantik di televisi, foto atau video.

    Sekitar 6 persen penderita mengaku mengalami masalah yang cukup signifikan. Tapi belum ada obat yang pernah dikembangkan secara khusus untuk mengobati fobia wanita cantik, obat-obatan yang ada hanya mampu menekan ketakutan untuk sementara waktu.

    credit to http://wahw33d.blogspot.com/2011/11/kelainan-cowok-yang-takut-wanita-cantik.html

    { Read More }


    CorelDraw X3 Sampai X5 Portable Sudah Relase

    CorelDraw X3 Sampai X5 Portable Sudah Relase



    Bagi pengguna corel draw pastilah gak akan ngelewatin untuk mendapatkan software portable dari corel yang satu ini, langsung aja gan tanpa berlama - lama ini sedikit sharing aja beberapa software portable corel yang bisa di unduh disini

    Download CorelDraw X3, Portable Version :
    CorelDraw X3 Portable : Download

    Download CorelDraw X4, Portable Version :
    CorelDraw X4 Portable : Download

    Download CorelDraw X5, Portable Version :
    CorelDraw X5 Portable Part1: Download, Mirror, Mirror
    CorelDraw X5 Portable Part2: Download, Mirror, Mirror
    CorelDraw X5 Portable Part3: Download, Mirror
    { Read More }


    Create an executable JAR file using eclipse

    Create an executable JAR file using eclipse



    1. Right click on your project
    2. Select export from the context menu


    3. Select the Runnable JAR file
    4.Provide the destination path and launch configuration as mail class of the programme


    { Read More }


    Counter Strike Global Offensive v 1 35 2 2 NoSteam 5 35 GB

    Counter Strike Global Offensive v 1 35 2 2 NoSteam 5 35 GB


    An in-game screenshot in which three members of the Terrorist team are running down a hallway holding guns. The front-most player is under a bright light, with the other two behind in shadows. What appears to be a blood stain is stained onto the wall, with a gun laying on the ground nearby.Counter-Strike Global Offensive.jpgGameplay
    seperti permainan sebelumnya dalam seri, Global Offensive adalah berbasis tujuan multiplayer first-person shooter. Setiap pemain bergabung baik tim teroris atau Counter-Terrorist dan upaya untuk menyelesaikan tujuan atau menghilangkan tim musuh. Permainan beroperasi di putaran pendek yang berakhir ketika semua pemain di satu sisi mati atau tujuan tim ini selesai. Bagi sebagian besar mode permainan, setelah pemain mati, mere
    ka harus menunggu sampai putaran berakhir untuk respawn. Pemain membeli senjata dan peralatan pada awal setiap putaran dengan uang diberikan berdasarkan kinerja mereka. Melengkapi tujuan atau membunuh musuh mendapatkan uang pemain sementara tindakan negatif, seperti membunuh rekan satu tim atau sandera, mengambil uang dari pemain. Selain itu, ketika putaran berakhir semua pemain menerima sejumlah uang, dengan pemain di tim pemenang menerima jauh lebih.

    Counter Strike: Global Offensive menambahkan senjata baru dan peralatan tidak terlihat pada angsuran sebelumnya, terutama bom untuk setiap sisi (Molotov untuk Teroris dan granat pembakar untuk Counter-Teroris). Bandara sementara mencakup wilayah kecil dalam api, menangani kerusakan pada siapa pun yang melewati 

    Screenshoot

    imageimageimage
    System Requirenment:
    Minimum:

    CPU: Intel Core 2 Duo E6600 or AMD Phenom X3 8750 processor or better
    CPU Speed: Info
    RAM: 1GB XP / 2GB Vista
    OS: Windows 7/Vista/XP
    Video Card: Video card must be 256 MB or more and should be a DirectX 9-compatible with support for Pixel Shader 3.0
    Sound Card: Yes
    Free Disk Space: 7.6 GB

    Jika Tertarik Download Di Bawah Ini:
    Link Download Utorrent 
    Note: Jika ingin mendownload harus mempunyai Utorrent, Jika belum punya download dibawah ini:
    Download Utorrent
    { Read More }


    Cross Andromeda A20

    Cross Andromeda A20


    Harganya relatif terjangkau dan kinerjanya pun lumayan merupakan kombinasi oke untuk mereka yang mencari android yang dual SIM. Smartphone ini didukung dual-ON, jadi kedua kartu yang dipasang dapat aktif bersamaan. Kita bisa tentukan mana yang menjadi default untuk bertelepon maupun ber-sms. Sedangkan untuk akses data, salah satu SIM langsung dijadikan default oleh sistem. Kalau mau menyetel ulang, bisa lewat setting > SIM > Management.

    Pesaing yang paling dekat adalah Mito A322, banderol juga murah, menjadikan ponsel lokal ini kandidat rekomendasi di kelas sejutaan. Selain dual core, layarnya sudah bisa menampilkan video High Definition.

    Kinerja
    Hasil benchmark memperlihatkan skor yang lumayan bagus bahkan sempat tampak lebih baik dari Samsung Galaxy Tab generasi pertama.
    Tampaknya meski androidnya masih gingerbread, kombinasi prosesor 1 Ghz dan storage besar, cukup berhasil mendongkrak kinerja. Seberapa jauh iini bertahan, masih perlu pembuktian lebih lanjut, saat storage sudah pol diisi aplikasi.

    Ada aplikasi ekstra pendukung kinerja seperti:
    • Advanced Task Killer.
    • App 2 SD.
    • Backup master.
    • dan sebagainya.

    Cross A20 dimasuki juga aplikasi tambahan seperti:
    • Angry birds dan solo lite untuk game.
    • Ebuddy dan facebook untuk media sosial.
    • Mini lyrics untuk player musik.
    • QQ browser untuk browsing.
    • Keyboard dan wireless untuk kemudahan koneksi ke keyboard nirkabel.
    Tentu saja kita bisa dengan mudah menambahkan aplikasi lain yang diinginkan.

    Secara deafult, homescreen terdiri dari 5 jendela, dan 2 diantaranya berisi pintasan meski tak signifikan. Tak ada modifikasi khusus pada tampilan. Setting internet operator langsung dikenali. Oh iya, smartphone cross A20 ini maksimal hanya mendukung EDGE di jaringan.

    Sementara itu, untuk koneksi internet hasil terbuka dengan cepat rata-rata memerlukan waktu 16 detik.
    Koneksi internet dari handset bisa dishare dengan perangkat lain lewat Setting > wireless & networks > Tethering & portable hotspot.

    Musik player, Video dan Radio FM
    Earphone haru ditanjapkan agar radio bisa dipakai. Pengaturannya simpel saja, diantaranya adalah ada earphone dan speaker untuk opsi dengar. Power untuk menghidupkan atau mematikan radio. Meski simpel ternyata kita bisa merekam siaran radionya.

    Untuk memutar musik ada 2 pilihan, mau pakai music atau mini lyrics. Di music ada pengaturan sound effect, sementara di miini lyrics aplikasinya otomatis mencarikan teks lagunya. Serasa memiliki karaoke pribadi saja.
    Tak ada pengaturan tambahan di video player. Player ini bisa menjalankan format file populer namun ukurannya harus kecil.

    Kamera
    Kamera utama 3 MP dan silengkapi dengan flash. Kamera baru bisa akan berfungsi kalau ada microSD sudah terpasang. Pengoperasian kamera dengan memakai shutter sentuh. Perpindahan antara mode foto dan video dilakukan dari ikon di sisi jendela, begitu juga perpindahan antara kamera utama dan kamera depan.

    Pada kemera utama dan depan ada tambahan mode smile shot dan burst selain normal. Kemudian ada multi angle view, panorama dan auto scene detection selain camcorder dan normal untuk kamera utama. Face detection ada pada kamera utama maupun kamera depan.

    Hasil fotonya biasa saja, yang terbaik adalah saat obyek diam dan kondisi cukup cahaya. Cenderung banyak noise, kurang tajam. Video cukup mulus ketika di putar dan dibuka di komputer. Foto maupun video bisa dishare ke facebook, messaging, bluetooth dan email.

    Desain
    Desainnya tak banyak beda dengan beragam smartphone lain yang berlayar 5 inch yang sudah ada di pasar. Meski ukuran bodi terbilang besar, bobotnya ternyata lumayan ringan untuk ditenteng. Bisa jadi bahan plastiklah yang ada pada casing sehingga mengurangi bobot. Namun permukaan mengkilap seperti biasany mudah menyimpan sidik jari jemari.

    Pada sisi layar bawah diisi panel sentuh Menu dan Back diapit tombol HOME. Kaca 5 inch itu sendiri menyatu dengan panel sentuh sehingga terkesan sangat luas. Layar sentuh tergolong responsif sewaktu disapu atau ditotol. Ada opsi otomatis untuk brightness dan tak tampak setting untuk panel sentuhnya.

    Speaker letaknya ada di kiri bawah belakang. Tombol volume ada di kiri vodi dan jack audio 3,5 mm serta tombol power letaknya ada di atas bodi. Port micrUSB letaknya ada di bawah bodi sementara slot microSD disembunyikan di balik casing, begitu pula dengan SIM.

    Kelebihan
    Bayak fitur ekstra dan Dal SIM.

    Kekurangan
    Hasil kamera dan video biasa saja.

    Spesifikasi
    Rilis tahun 2012.
    Jaringan: Dual GSM.
    Baterai: 2000 mAh.
    Waktu siaga 3 hari.
    Waktu bicara: 5 jam.

    Layar
    5 inch kapasiti touchscreen WVGA, 480x800 pixel.

    Hardware dan Sistem Operasi
    Prosesor: 1 Ghz.
    Android 2.3.6 gingerbread.

    Multimedia
    Kamera: 3 MP, LED Flash dan 1,3 MP.

    Konektivitas dan memori
    Konektivitas: microUSB, bluetooth, wifi, jack audio 3,5 mm.
    Konetivitas internet: GPRS, EDGE. WLAN, GPS, A-GPS.
    Memori internal: ROM 4 GB (512 MB), RAM 2 GB (256 MB).
    Memori tambahab: MicroSD hingga 32 GB.

    Messaging
    SMS, MMS, email, IM.

    Lain-Lain
    Advanced Task Killer, Angry Birds, App 2 SD, Bakcup master, browser, calculator, calender, clock, compass, ebuddy, email, facebook, FM Radio, gallery, latitude, local, maps, mini lyrics, music, play store, QQ browser, search, solo lite, sound recorder, video player,, wireless, keyboard.

    Paket Penjualan
    Handset.
    Charger.
    Kabel data.
    earphone.
    Buku manual.
    { Read More }


    Cricket 2002 RIP 440MB Highly Compressed

    Cricket 2002 RIP 440MB Highly Compressed



    Cricket 2002 [RIP 440MB]


     Utilizing technology from our blockbuster sports games such as FIFA, NBA & Rugby, EA Sports Cricket  returns to the pitch. In addition to the international teams and bonus squads, you can now play with domestic teams and compete in England, Australia, New Zealand and South Africa. The all-new Twenty20 tournament will be fully licensed with season modes also on offer.

    Cricket will revolve around a TV style presentation including a full action replay mode, third umpire, animated ducks, TV style overlays, field position editor and much more. The field position editor will
    allow for auto or manual fielding. Over 35 dynamically lit stadiums will be modeled from all over the
    world, including Lords in England, Calcutta, Melbourne, Auckland, Cape Town, Barbados and Lahore...








    Minimum Configuration

    Operating System Windows(r) 95/98/2000/ME/XP
    Processor 300 MHz Intel(r) Pentium(r) II processor or comparable
    Memory 64MB RAM (128MB Minimum for Windows 2000/XP)
    Videocard 8Mb (PCI/AGP) VGA card
    HDD Space 500MB free hard disk space plus additional space for saved games
    CD ROM Speed 4x CD-ROM drive
    Soundcard DirectX 8.0a or higher compliant sound card
    DirectX DirectX 8.0a or higher (DirectX8.0a supplied with CD)
    Mouse Windows compatible mouse



     

     Mediafire:
     (Links:440 MB)  

    www.mediafire.com/?sharekey=5be4cda823dac2c37069484bded33bcd9d5477698d24efe4
    { Read More }


    Wednesday, 28 June 2017

    Crayon Shinchan

    Crayon Shinchan



    Sinopsis
    Crayon Shin-Chan  adalah seorang bocah berusia lima tahun, ia murid taman kanak-kanak yang sering membuat ulah, dan membuat repot semua orang di sekitarnya. Selain itu
    ia selalu bertingkah bodoh dan aneh dalam melakukan segala hal. Langsung ke TKP Anime lawas yang kocak  ini !!!!
    ray
    Type: TV
    Episodes: Unknown
    Status: Currently Airing
    Aired: Apr 13, 1992 to ?
    Producers: TV Asahi, FUNimation EntertainmentL, Shin-Ei Animation
    Genres: Comedy, Ecchi, Kids, School,Shounen, Slice of Life
    Duration: 21 min. per episode
    Rating: PG-13 - Teens 13 or older

    Credits By : AFEsub.com

    Download :


    • Crayon Shinchan : Ai datang ke rumah
    • Crayon Shinchan : Ai Cinta Shinchan
    • Crayon Shinchan : Ai VS Nene
    • Crayon Shinchan : Aku Pahlawan Orikoman
    • Crayon Shinchan : Antri Di Terik Panas
    • Crayon Shinchan : Aroma Makan Malam
    • Crayon Shinchan : Audisi Mari Chan
    • Crayon Shinchan : Ayo Main Dadu

    { Read More }


    Counter Strike 1 6 para usar com o pacth

    Counter Strike 1 6 para usar com o pacth


    (disponibilizei um patch no blog baixeo e jogue de gra�a!)

    Counter-Strike 1.6

    Saque sua Desert Eagle e corra para encontrar a bomba! Counter-Strike est� voltando ao Brasil!


    Ele est� voltando! Em janeiro de 2008, os f�s de Counter-Strike foram surpreendidos com a not�cia de que a venda do jogo estava proibida no Brasil. Na �poca, CS foi apontado como �nocivo � sa�de dos consumidores� pelo juiz federal Carlos Alberto Sim�es de Tomaz. Mas agora, mais de um ano depois, o Tribunal Reginal Federal da 1� Regi�o, em Bras�lia, autorizou a volta da comercializa��o deste que � simplesmente o jogo online mais popular do planeta!













    { Read More }


    Crack SMADAV PRO 8 1 dan CRACK KASPERSKY KEY ANTI BLACKLIST !!

    Crack SMADAV PRO 8 1 dan CRACK KASPERSKY KEY ANTI BLACKLIST !!



    Bagi pecinta antivirus smadav, sebelumnya Zatya Baja Item
    pernah posting tentang serial smadav, tapi serial itu hanya berlaku untuk smadav dibawah versi 8.0 dan 8.1. Dan artinya sudah tidak berlaku lagi di versi atasnya (8.0 keatas).
    Tentu ada yang bingung jika smadav yang dipakai sebelumnya (dibawah 8.0) sudah PRO terus diupdate ke versi 8.0 atau 8.1 terus PRO nya hilang.

    Wah pasti anda mikir: "bajigur, kok hilang ya..."

    Ya hilanglah, wong kamu aja gratisan..kkkkk..

    Tapi bagi pengunjung n pecinta gratisan blog ZATYA BAJA ITEM akan terus lanjut and berkibar dengan gratisannya SMADAV PRO 8.1!!! Antivirusnya orang Indonesia.. (walo gratisan gpp seh)..

    DOWNLOAD DULU CRACKNYA..KLIK

    Langsung ke caranya bro, jangan sampai keliru:

    1. Download dulu smadav 8.1, atau dari sumbernya, KLIK CROOT
    2. Install dong tentunya..
    3. Jika sudah terinstall, klik exit pada icon smadav di kanan bawah desktop kamu.
    4. Masuk ke partisi C >> Program Files >> Smadav
    5. Delete SM?RTP.exe nya
    6. Dan masukkan File yang sudah didownload tadi (SMdRTP.exe)
    7. Klik double pada SMdRTP.exe, jalankan. Dan pastikan di dalam folder smadav ada: smadav.loov dan SmadEngine.dll
    8. Selamat telah menjadi SMADAV 8.1 PRO tanpa serial.

    Nb:
    * Jika pada langkah ke-7 smadav kamu gagal atau belum berubah ke pro, exit pada icon kanan bawah, cari smadav.loov dan SmadEngine.dll (nyarinya pada folder bawaan download smadav 8.1) kemudian masukkan di directory C >> Program Files >> Smadav . Kemudian klik SMdRTP.exe. (Pastikan yang d klik SMdRTP.exe, BUKAN SM?RTP.exe.


    Sekarang bagi pengguna Kaspersky, ini bagi kalian yang memakai key, dan pengen key nya tidak terblacklist.

    DOWNLOAD DULU DATANYA...KLIK CRUUT

    Kemudian Caranya:

    1. Jangan di enable dan jangan aktifkan self defense. Kemudian klik exit di icon kaspersky bagian kanan bawah desktop.
    2. Buka directory C > pokoknya buka di program filesnya kaspersky dan harus menemukan folder "base"
    2. Jika sudah menemukan, copy data yang sudah didownload tadi dan paste masukkan di folder base.
    3. Kemudian aktifkan kembali kaspersky kamu, dan akan aktif full bro..

    Nb: Ini berlaku bagi kaspersky internet security 2010 dan kaspersky 2010

    Baca juga: Sebelumnya Zatya Baja Item juga memposting tentang Kaspersky Internet Security 2010, tentang mereset masa trial license, sehingga kaspersky anda serasa full, KLIK

    Silahkan kasih komentar, saran dan kritik, Blog dan posting ini sangat membutuhkan uneg2 dari anda...Jika ada yang lebih tau, silahkan share, tidak ada salahnya saling berbagi, OK BRO!!!


    UPDATE:
    BAGI KALIAN YANG INGIN UPGRADE KE SMADAV 8.2 PRO GRATIS....

    klik di sini
    { Read More }


    Tuesday, 27 June 2017

    Could this be the new more beautiful Moto 360

    Could this be the new more beautiful Moto 360



    As the first circular Android Wear watch the Moto 360 certainly impressed in terms of style, but a better successor was always inevitable. It looks like that successor might be here sooner rather than later, as an image of it has apparently been spied.
    The photo was posted to Weibo by none other than Lenovos own CEO Yang Yuanqing, so it seems likely that its the real deal.
    Its since been removed, but not before it was spotted by MyDrivers, alongside a quote which translates roughly to "Moto 360, matching the arrival of the era of freedom, in the future we want to increase the store features a watch shop."
    Well take answers on a postcard as to what that means, perhaps its hinting at more customisation options? Thats certainly what the image itself seems to show, with a watch that looks a lot like the Moto 360 but seemingly with two different sizes available.

    Small and colourful

    The larger one looks like its probably around the size of the current Moto 360 and then theres another slightly smaller option, a promising sign for anyone who finds the current model too chunktastic.
    As well as two size choices theres a wider variety of colours on show, with straps and watch faces in various gold, silver, black, brown and grey shades.
    The design of the watch appears slightly different to the current Moto 360 too, with lugs on either side of the face to connect the strap to, rather than attaching it underneath the body. That may also mean that it supports normal watch straps.
    There are enough changes here that it looks likely that this is an entirely new smartwatch, rather than just a variant on the existing Moto 360, but sadly one thing seems to have stayed the same: the black bar beneath the screen, leaving it as not quite a full circle.
    Hopefully the final version ditches that, as well as packing in a better processor and a bigger battery. With an image already in the wild we might know more soon.
    { Read More }