2 Visitor Messages

  1. View Conversation
    Hey man,
    Should sign up for the tutorial contest!
  2. View Conversation
    im afk....lol I hope to start back into some programming soon...
Showing Visitor Messages 1 to 2 of 2
About Irfan_A

Basic Information


About Irfan_A
Location:
INA
Interests:
Desktop and web programming
Occupation:
Hobbyist programmer

Signature


nomainwin : open "CodeCall" for dialog_nf_modal as #whileTrue : wait

Statistics


Total Posts
Total Posts
180
Posts Per Day
0.23
Last Post
Hellooo! 12-01-2011 07:24 AM
Visitor Messages
Total Messages
2
Most Recent Message
08-08-2011 05:46 PM
General Information
Last Activity
Yesterday 11:29 PM
Join Date
12-24-2009
Referrals
0

15 Friends

  1. Alexander
  2. amrosama
  3. CommittedC0der
  4. Davide Davide is offline

    Programming God

    • Send a message via MSN to Davide
    • Send a message via Skype™ to Davide
    Davide
  5. gokuajmes gokuajmes is offline

    Programming God

    gokuajmes
  6. Guest Guest is offline

    Code Warrior

    • Send a message via MSN to Guest
    • Send a message via AIM to Guest
    • Send a message via Yahoo to Guest
    Guest
  7. Hignar Hignar is offline

    Programming Expert

    Hignar
  8. John John is offline

    Administrator

    • Send a message via MSN to John
    • Send a message via AIM to John
    John
  9. Roger Roger is offline

    Administrator

    Roger
  10. spyder spyder is offline

    Programmer

    spyder
Showing Friends 1 to 10 of 15
Page 1 of 2 12 LastLast
View Irfan_A's Blog

Recent Entries

UPX vs Antivirus

by Irfan_A on 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 ?.

Read More

Categories
Personal

Run to Web Programming

by Irfan_A on 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, .

Read More

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

Categories
Personal

Ubuntu on my laptop

by Irfan_A on 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

Read More

Categories
Linux

My two books in computer and programming

by Irfan_A on 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

Read More

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

Categories
Personal

Produce time output in 12 hour format

by Irfan_A on 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

Read More

Categories
Programming