View RSS Feed

Irfan_A

  1. UPX vs Antivirus

    by , 07-18-2010 at 01:03 PM
    Do you know UPX? Ultimate Packer for Excutables is excellent file compressor. See UPX: the Ultimate Packer for eXecutables - Homepage for details. But, this tool is often used by virus makers to create their virus as small as possible.

    I am InstallSimple user and its setup module packed with UPX. So, many antivirus report this software as virus or trojan, but in actually this software is free from any viruses or trojans. Read on their forum for details : Install Simple forum - View topic - InstallSimple contains Trojan-Virus ?. ...
    Categories
    Personal
  2. Run to Web Programming

    by , 07-18-2010 at 11:27 AM
    I plan to run my programming knowledge from desktop programming to web programming. I usually use Liberty BASIC for desktop programming and still learning very hard about C/C++/JAVA to tackle Assembly (I'm not sure,). Along that time, i will also try Run BASIC (web programming from Shoptalk Systems, powered by Liberty BASIC). I confused, am i use home based operation or buy VPS hosting? I don't have enough money if fee is very expensive, except i ask for my parent to pay hosting fee, . ...

    Updated 07-23-2010 at 10:38 AM by Irfan_A

    Categories
    Personal
  3. Ubuntu on my laptop

    by , 06-24-2010 at 07:18 PM
    Last night i have downloaded Ubuntu live CD (699mb) with free version of DAM (Download Accelerator Manager). It can download three times faster than WIndows. And this morning just have finished. Oh, maybe i must purchase DAM Ultimate in my good time for twenty times faster than Windows.

    After downloaded, i immediately burn image that ISO to DVD with InfraRecorder. I just trial Ubuntu and not install it, i afraid my current OS Windows can affecting because this is my first experience ...
    Tags: linux, ubuntu Add / Edit Tags
    Categories
    Linux
  4. My two books in computer and programming

    by , 03-05-2010 at 06:53 AM
    At February 28, 2010 I went to book store. I bought some books about computer and programming. Two of them are :

    1. Computer Science:an Overview 7th Edition from J. Glenn Brookshear.
    This book translated from English to Indonesian. Although this book only an overview, i can learn basic about software engineering, programming language, algoritma, computational theory, and so on as i want.

    2. Mastering Java.
    This book in Indonesian. I usually programming ...

    Updated 08-13-2010 at 03:42 PM by Roger

    Tags: book, computer Add / Edit Tags
    Categories
    Personal
  5. Produce time output in 12 hour format

    by , 01-28-2010 at 10:03 AM
    In Liberty BASIC, and maybe in other BASIC language, time$() command will output current time of the system clock in 24 hour format.

    Code:
    print time$()  'time now as string "23:59:46"
    In order to produces output in 12 hour format, we must do manipulating character. We have many ways to do these. I only submit only three.

    #1. IF THEN
    If hours smaller than or equal with 12, we set to AM time. Otherwise, we subtract hours with 12 and set to ...