9/10/11

SlySoft AnyDVD HD Full | Aplikasi Buat Remove Proteksi CD/DVD

Pada kesempatan kali ini saya akan share aplikasi yang berfungsi untuk meremove/bobol/menghilangkan proteksi CD/DVD/Blue Ray, yakni SlySoft AnyDVD HD 6.8.50 Full. Buat yang sudah request, silahkan langsung di cek.

AnyDVD HD AnyDVD, but with additional features for full Blu-ray and HD DVD support, including decryption of Blu-ray (BD+ and AACS) and HD DVD (AACS) movies.




Features Blu-Ray :

  • Same features as regular AnyDVD
  • Removes encryption (AACS) from Blu-ray media.
  • Removes BD+ copy protection from Blu-ray media.
  • Removes region codes from Blu-ray media.
  • Watch movies over digital display connection, without HDCP-compliant graphics card and without HDCP-compliant display.
  • The "must have" utility for the serious home theater enthusiast using a media center / home theater PC.
  • Provides its own Universal Disk Format (UDF) reader, no need to install 3rd party filesystem. Discs which cannot be read by Windows can be copied using the AnyDVD ripper.
Features HD DVD :
  • Same features as regular AnyDVD
  • Removes encryption (AACS) from HD DVDs
  • Watch movies over digital display connection, without HDCP-compliant graphics card and without HDCP-compliant display.
  • Playback of discs on the PC with PowerDVD Ultra which otherwise do not run.
  • Removes user prohibitions, you can select the language and subtitle track without going through the disc's menu.
  • Removes parental restrictions.
  • Allows you to remove or skip Studio Logos and warning messages.
  • With "magic file replacement™" you can remaster any commercial movie disc using simple XML scripts.
  • The "must have" utility for the serious home theater enthusiast using a media center / home theater PC.
  • Provides its own Universal Disk Format (UDF) reader, no need to install 3rd party filesystem. Discs which cannot be read by Windows can be copied using the AnyDVD ripper.
System Requirements :
  • IBM-compatible PC with a minimum 2 GHz Pentium-class microprocessor and 512 MB RAM
  • Windows 7, Vista, XP, 2000 (32 & 64 bit)
  • 4 MB hard disk space
  • For Blu-ray or HD DVD media, a Blu-ray or HD DVD compliant drive is required.
  • For HD decryption and ripping, the minimum OS is Windows 2000 (latest SP).
  • PC player software usually requires Windows XP SP2 as minumum OS.
silahkan download disini


Cara install :
Aplikasi AnyDVD HD yang saya share ini sudah full version dan silent install (tidak ada proses/step next, next, and finish), anda tinggal klik 2x file .exe nya dan jalankan aplikasi via shortcut yang ada di desktop, untuk lebih lanjut silahkan anda baca file info.txt. Jangan lupa di uncheck automatic updatenya di bagian setting
.
Read more

Recuva (Tools Balikin File Yang Udah Di Hapus Permanen)


Adalah sebuah software gratis untuk Windows untuk mengembalikan file-file yang tanpa sengaja terhapus dari komputer elo-elo sekalian. So, silahkan di coba


- Added support for Windows 7 SP1.
- Added support for BartPE recovery CD.
- Improved file recovery from Apple iPods.
- Improved error handling on drives >1TB.
- More efficient memory usage when >1M files are found.
- Better handling of files that have lost file type.
- Added support for Kurdish language.
- Minor bug fixes.

silahkan di download :
Disini
atau
Disini
Read more

9/7/11

Membuat MP3 Player di Web dengan PHP

Dengan menggunakan PHP, Anda dapat membuat MP3 player di web. Aplikasi ini
menggunakan standard playlist XSPF (http://www.xspf.org) yakni playlist disajikan
dalam format XML tertentu. Playlist adalah daftar lagu yang akan diputar di MP3 player.
Player untuk aplikasi ini telah dibuat menggunakan Flash dan skinnya dapat didownload di http://musicplayer.sf.net.
Untuk membuat aplikasi ini, langkah-langkahnya adalah sebagai berikut:
1. Download lah file skin player di http://musicplayer.sf.net.
2. Lalu buatlah code untuk halaman webnya sbb 
<html>
<body>
<h1>MP3 Player</h1>
<object classid=”clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″
codebase=”http://fpdownload.macromedia.com/pub/shockwave/cabs/fla
sh/swflash.
cab#version=7,0,0,0″
width=”400″ height=”153″ id=”xspf_player” align=”middle”>
<param name=”allowScriptAccess” value=”sameDomain” />
<param name=”movie” value=”http://localhost/mp3/xspf_player.
swf?autoload=true&playlist_url=http://localhost/mp3/playlist.php”
/>
<param name=”quality” value=”high” />
<param name=”bgcolor” value=”#e6e6e6″ />
<embed
src=”http://localhost/mp3/xspf_player.swf?autoload=true&playlist_
url=http://localhost/mp3/playlist.php”
quality=”high” bgcolor=”#e6e6e6″ width=”400″ height=”153″
name=”xspf_player” align=”middle”
allowScriptAccess=”sameDomain”
type=”application/x-shockwave-flash”
pluginspage=”http://www.macromedia.com/go/getflashplayer” />
</object>
</body>
</html>

Simpan code di atas dengan nama file index.html dalam folder bernama mp3
pada folder www atau htdocs Anda.
3. Ekstraklah file download dari langkah no.1 di atas ke dalam folder mp3 tersebut.
4. Lalu buat file playlistnya sbb
<?php
echo( “<?xml version=\”1.0\” encoding=\”UTF-8\” ?>” ) ?>
<playlist version=”1″ xmlns=”http://xspf.org/ns/0/”>
<title>My Songs</title>
<trackList>
<?
$dir = opendir( “.” );
while ($file = readdir($dir)) {
if ( preg_match( “/[.]mp3$/i”, $file ) ) {
?>
<track>
<location>http://localhost/mp3/<? print($file) ?></location>
<annotation><? print( $file ) ?></annotation>
</track>
<? } } ?>
</trackList>
</playlist>

Simpan file di atas dengan nama playlist.php dan ditaruh dalam satu folder
dengan index.htm di atas
5. Copylah beberapa file MP3 yang diinginkan ke dalam folder mp3 (satu folder
dengan file-file di atas)
6. Jalankan playernya dengan membuka halaman index.htm di browser
7. Nikmati MP3 nya
Catatan :
Anda dapat mengubah sendiri nama foldernya (dalam contoh ini, nama foldernya adalah mp3)
Aplikasi di atas hanya akan efektif pada koneksi internet yang cepat. Untuk koneksi yang lambat, lagu akan terputus-putus . Tapi minimal dapat dibuat pada jaringan LAN, sehingga teman-teman Anda sekantor dapat menikmati musik dari satu server yang sama dan tidak perlu menginstal MP3 player dan file MP3 di PC masing-masing.
Read more

Unlock Modem Huawei

tutorial unlock modem huawei pertama:
1.Pertama untuk membuka modem Huawei anda memerlukan sebuah unlock code.
Untuk mendapatkan kode unlock gratis untuk modem Anda posting nomor IMEI modem Anda di sini.
2.Download unlock modem huawei
3.Setelah Anda menghubungkan modem anda klik 'CHECK LOCK' tombol untuk memeriksa status dari modem Anda.
Sekarang lihat Apakah modem Anda terkunci atau tidak. jika LOCKED berarti modem terkunci
4.Jika modem Anda terkunci kemudian masukkan kode PEMBUKA di kotak di bawah tombol 'CHECK LOCK' dan TEKAN 'UNLOCK'
5.selesai. Modem Anda sekarang dibuka dan dapat digunakan dengan kartu sim pilihan Anda.

Supported Huawei Models:

E155, E156, E156C, E156G, E160, E160E, E160G, E161, E166, E169,
E169G,E170, E172, E176, E180, E182E, E196, E216, E219, E226, E230, E270, E271,E272,E510, E612, E618, E620, E630, E630+, E660, E660A, E800, E870, E880,EG162,EG162G, EG602, EG602G

Not Supported Models:

E1552, E1553, MF600, MF180, MF100, MF627, WM66A

sekian dulu semoga bermanfaat.......
Read more

9/5/11

Cara Membuat Blog Versi Mobile Di Blogspot

Apakah kamu ingin mencoba Membuat blog kamu menjadi versi Mobile ?

Saya beri contoh untuk membuat blog versi mobile di Bloggertouch.

Berikut Cara Membuat Blog Versi Mobile di Blogspot

Silahkan kunjungi http://bloggertouch.sopili.net/

Kemudian Sign in dengan akun Google kamu
Klik Mobile Edition Maker: create mobile edition/view









isi alamat blog yang akan dibuat mobile kemudian go







Akan muncul seperti gambar di bawah ini








Isikan nama di kolom yang sudah di sediakan, lanjut klik Next
Setelah itu akan masuk ke tahap penambahan gadget di blog

a>






Klik aja AddCode nanti akan di bimbing untuk menambahkan Gadget di blog
Pilih blog yang akan di jadikan versi mobile
Jika sudah selesai memasang gadgetnya, kembali lagi Step 2: Insert Code into the sidebar
Kemudian klik Next
Satu langkah lagi ke Step 3: Verification





Klik Next dan tunggu sebentar. jika sudah akan muncul seperti gambar di bawah ini







Selesai deh.
Read more
loading...