Jumat, 01 April 2011

0

Game Prelauncher 3.1.1

  • Jumat, 01 April 2011
  • Nurkholish Ardi Firdaus
  • Game Prelauncher 3.1.1 | 2 Mb

    Game Prelauncher optimizes your system for gaming sessions by automatically disabling unnecessary startup programs, services, Explorer Shell, registered DLLs, sound themes and other Windows components; on average about 120 - 160 processes, depending on your system. You can create individual profiles for each game and also specify additional programs that you want to launch along with the game to make sure that these remain enabled. Once you are ready to play a game, simply click on the provided shortcut and Game Prelauncher will restart your computer in optimized gaming mode and automatically launch the game (and any other applications) you configured in the profile. After your gaming session, you can simply restart your computer into normal mode with the click of a button.

    The program does not affect the quality of the graphics in the game (does not impair it); the graphics remains the way it is specified in user's preferences. The utility has an intuitive user interface.

    Features:
    -Disable programs from Run sections from HKCU and HKLM registry keys (and other startup sections)
    -Disable programs from the Startup folder
    -Disable most Windows services (~ 90-92%), except for necessary
    -Disable the current shell ( Explorer, Aston, Litestep etc.)
    -Ability to disable selected drivers
    -Disable sound themes
    -Unload unused libraries (DLLs)
    -Ability to disable programs, reboot and run the game with a single click (shortcut)
    -Simple and safe
    -Support for Windows XP, Windows Vista and Windows 7, including x64 editions

    Download Here :

    Password Mediafire :
    andystonecold

    1

    Migo Recover Lost Data 3.1.2.2C Full

  • Nurkholish Ardi Firdaus
  • Migo Recover Lost Data 3.1.2.2C Full | 5.05 Mb

    Ensure all of your important office files, documents, emails, photos, music, videos and more are easily retrievable in the event of an accidental deletion.

    Migo Recover Lost Data is an easy-to-use application which allows users to recover their deleted data and emails.

    Here are some key features of "Migo Recover Lost Data":
    · Recover Deleted Photos, Music and Videos
    · Recover Deleted Microsoft Office files, Tax Documents and More
    · Restore Deleted Email Messages and Attachments from Windows Mail, Outlook Express, Outlook and Thunderbird Email Programs
    · Recover Deleted Outlook Calendars, Tasks, Notes, Journal Entries, Addresses and More
    · Recover Files Deleted After the Recycle Bin has Been Emptied
    · Search for Recoverable Files by Name, File Type, File Extension and More
    · Preview Files Before Performing a Recovery
    · Recover Multiple Files at the Same Time (Batch Recovery)
    · Recover Files from PCs, External Hard Disk Drives, USB Flash Drives, SD Cards and More
    Requirements:
    · Intel® Pentium® (or equivalent) 350MHz processor
    · 32MB of RAM (256MB recommended)
    · 800 x 600, 16-bit color Graphics Card
    · 10MB of Available Disk Space
    · CD/DVD ROM drive


    Download Here :
     
    0

    Hot MP3 Downloader v3.1.6.6

  • Nurkholish Ardi Firdaus
  • Hot MP3 Downloader v3.1.6.6 | 7.26 Mb

    Hot MP3 Downloader a program that will give you an easy and effective way to download unlimited free music!

    Nice interface does not cause the slightest inconvenience in use. You do not need now is climbingon the Internet or the site in the search for the desired favorite music. Mostly used to download music search engine.

    According to their keywords in the number of results exist, all of the songs and artists. Results are displayed in a list when you click on a track, it is buffered and played in the embedded player.

    If you click on the button Download, opens a window to specify the path and name of boot, and then track will automatically become a part of downloads.

    Key Features :

    * 100 MILLION MP3 Available
    Over 100 million mp3 waiting for your discovery and download.

    * Show You the Top 100 HIT SONGS
    Recommend USA AIRPLAY HOT 100 every week.

    * 14 Catalogs, Versatile Styles
    Various catalogs for your favorites, such as Jazz, R&B, classical, pop, indie, etc. Quick search supports.

    * Shut out Any Malware
    Guaranteed to eliminate any form of malware (viruses, spyware, adware, etc). Only safe and clean files.

    * Higher Bitrate, Better Sound Quality
    Provide you better music at a higher bitrate of up to 320kbps.

    * Support iPod, iPhone and All Other Digital Players
    Hot MP3 Downloader is compatible with any digital players: iPod, iPhone, PSP, PDA, cell phone, etc.

    Download Here :

    Password Mediafire :
    andystonecold

    0

    Password Recovery Bundle 2011 1.70

  • Nurkholish Ardi Firdaus
  • Password Recovery Bundle 2011 1.70 | 1.46 Mb

    Password Recovery Bundle 2011 is a handy toolkit to recover all your lost or forgotten passwords in an easy way! Recover passwords for all popular instant messengers, email clients, web browsers, FTP clients and many other applications.

    Over 60 types of passwords can be cracked instantly. The program automatically finds and decrypts the passwords stored on your local computer, even novice users can use it to recover lost passwords in minutes.

    Key Features & Benefits :
    * 100% recovery rate.
    * Wide compatibility - Designed to recover passwords for a wide range of applications such as email clients, instant messengers, FTP clients, web browsers, etc.
    * Unique abilities - Allow to recover passwords for more than 60 programs.
    * Save you time and money - Find your lost passwords easily! No need to call in an expensive PC technician. Never worried about losing your important ***s again.
    * Instant recovery - Passwords will be recovered in no time.
    * Super easy-to-use interface.
    * FREE technical support.

    Download Here :

    Password Mediafire :
    andystonecold

    Sabtu, 26 Maret 2011

    0

    [VB.NET] Mari Kita Belajar Encoding String ke Hexadesimal

  • Sabtu, 26 Maret 2011
  • Nurkholish Ardi Firdaus
  • Awalnya saya penasaran dan ingin mempelajari tentang heksadesimal dalam pemrograman pada VB.NET. Bagaimana caranya mengkonversi string kedalam heksadesimal?. Ternyata setelah dipahami tidak terlalu sulit. Heksadesimal itu sendiri adalah sistem bilangan yang menggunakan 16 simbol (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F), oleh karena itu heksadesimal disebut dengan sistem bilangan base16 (berbasis dari 16 simbol). Untuk bisa mengkorversi string kedalam heksadesimal kita bisa melakukannya dengan sederhana seperti dibahwah ini:

    Pseudo Code pada VB.NET:

    Fungsi StringToHex(txt:String)
    1. Variable txt = String yang akan kita konversi
    2. Array bytes() = Array bertipe byte
    3. bytes=System.Text.Encoding.ASCII.GetBytes(txt)
    4. Kembalikan nilai Replace(BitConverter.ToString(bytes), "-", "")


    Bingung memahaminya?, mari kita implementasikan saja kode tadi ke VB.NET

    Buatlah: 1 Form, 2 TextBox, 2 Button


    Atur seperti ini:


    Atur Seperti Ini Sesuai Nomor:
    1=TextBox
       Name: txtStr
       MultiLine: True
    2=Button
       Name: cmdToHex
       Text: Convert >>>
    3=Button
       Name: cmdToStr
       Text: <<< Convert
    4=TextBox
       Name: txtHex
       MultiLine: True
    
    Nah, tinggal masukin Source Code berikut:
    Public Class Form1
        ' coded by nurkholish af
        ' http://www.cr0wja.co.cc
    
        Private Sub cmdToHex_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdToHex.Click
            txtHex.Text = StrToHex(txtStr.Text)
        End Sub
        Private Function StrToHex(ByVal txt As String) As String
            Dim bytes() As Byte
            Dim strHex As String
            bytes = System.Text.Encoding.ASCII.GetBytes(txt)
            strHex = Replace(BitConverter.ToString(bytes), "-", "")
            Return strHex
        End Function
        Private Function HexToStr(ByVal txt As String) As String
            Dim bound As Int32 = (txt.Length / 2) - 1   ' menentukan upper bound array
            Dim bytes(bound) As Byte
            Dim sDecode As String
            For i As Int32 = 0 To bound
                bytes(i) = Convert.ToByte(txt.Substring(i * 2, 2), 16)   ' mengubah 2 byte string dari hex menjadi byte berdasarkan base16
            Next
            sDecode = System.Text.Encoding.ASCII.GetString(bytes)   ' mendapatkan string dari array byte
            Return sDecode
        End Function
        Private Sub cmdToStr_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdToStr.Click
            txtStr.Text = HexToStr(txtHex.Text)
        End Sub
        ' Help
        ' kenapa kita pakai base16??? karena ini sesuai dengan kombinasi karakter yg dipakai hexadesimal (A,B,C,D,E,F,0,1,2,3,4,5,6,7,8,9) berjumlah 16
        ' hanya itu yang ku tahu
        ' 2011 Crowja
    End Class
    Source code bisa di download disini:
    Crowja-Coderz

    Subscribe