Do you want to design website or a system?


Hi... My Name is Mohamad Fikri Bin Ramlan.

I'm a web designer and also a system developer.

If anyone want me to design a website or develop a system. You can send your request to my email: he.thumb@gmail.com or my facebook: Facebook.

My Work #1 - Kobemas System


This system use to store and update customer information. it also have search capability based on criteria inserted. it also provide report and statistical information

My Work #2 - Perpustam website

This screenshot show a library website front page which contain feature item column and other basic features of a website. This website also support multilingual and help features. Its develop using wordpress as platform.

My Work #3 - Micth website

This is a screenshot of a website that I and other staffs working on during my practical training At Micth. This the company website which build using wordpress as platform.

java base converter (incomplete)

/*
    This is a java program that convert a number in decimal to another base.
    Because it still incomplete, it can only convert to base 2 until 9.
*/

//Author: Muhammad Amir Zaki Bin Zainal Alam

import java.util.*;
public class Decimal_To_Converter
{
    public static void main(String args[])
    {
        String ans = "", ans2 = "A";
        int num, num2, num3=0, base, from;
       
        Scanner scanner = new Scanner(System.in);
       
        //System.out.print("Enter number's base : ");
        //from = scanner.nextInt();
        System.out.print("\nEnter number in base entered : ");
        num = scanner.nextInt();
        System.out.print("\nEnter base to convert to : ");
        base = scanner.nextInt();
        num3 = num / base;
 

C++ Mathematical operation

Sorry if there is some empty or wrong syntax because the post editor
is did not properly paste the intended contain.


/*
This a c++ program that calculate a single basic operation.
Build using Borland C++.

By: Mohamad Fikri Bin Ramlan
*/
#include <iostream>
#include <conio>

int main()
{

   double num1, num2, choice;
   char oprt;

   choice=0;

   cout<<"**************" <<endl;
   cout<<"* calculator *" <<endl;
   cout<<"**************" <<endl;


Java Mind Reader

Screenshot:



 Coding

/*
This is a GUI java program that show a magic where user need to follow the instruction
and wow... this program can read their mind.

By: Mohamad Fikri Bin Ramlan
      Muhammad Amir Zaki Bin Zainal Alam
*/

//Word of wisdom - Secret of math, where the magic come from logic
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
import java.io.*;
import java.util.StringTokenizer;
import javax.swing.*;

public class mindReader
{
    private action button = new action();
  
    private BufferedReader cmd;
    private JFrame frame;
    private ImageIcon iCredit, iSymbol[], iFixed[];   
    private JTextArea text, aSymbol[];
    private JTextField fName;
    private JLabel lSymbol[], lAns, lCredit, lName, lSpace, lResult, lDisplay;
    private JPanel pTable, pMain, pQuest, pResult, menu;
    private JButton bTry, bCont, bExit;
    private String sCmd = "";
    private boolean condition=false;
    private int no_fix = 0;
    private Color color;