Sunday, March 14, 2010

Joomla and Instalation

Joomla, Well..talking about Content Management System or CMS, perhaps we know about Joomla, Perhaps, we already know about that, but sometimes without exercise, we forgot installing the programs, so I try to write this article :), Ge..before that, who haven't known about WEB these days, Yup..with Joomla we can easily to make CMS or content management system, here we are :

Firstly, what we need, of course we have to get a web server such as Apache, Xamp or others.., in this are suppose we use Apache, if we haven't gotten Apache, it's easy, just download because it's free software "at PhpGeek.Com" with PhpTried it's enough for building web like using PHP, we get Apache as web server, and Mysql as Database management system.

second, you install first that PhpTried, and then you have to active the winMysqlAdmin, it for accesing Mysql such as using command promt or DOS, OK, here is the ways : After installing PHpTried, We have to on Apache Web server, you can find at start-->program-->PhpTried-->ApacheConsole-->Start Apache, then we open the Browser (internet explorer or Firefox, etc), then type http://localhost (it appears ..."Welcome.." it means you correct, Cheer :).

NOW, how to install Joomla, You can download packed of Free Joomla (just find by your self at internet), copy it to drive C:>Apache>Htdocs> ....(Here You place thecopy), and then, rename the packet of Joomla (e.g Myitb), now you browse internet and type in address bar http://localhost/myitb

OK, You will go to next installation, follow them, for the first usually fill in by localhost and then user fill in with root, now you have to give the name of the database such ase (db_itb), Next, give the name of homepage, next give your main, Sucess....... (you will be given username and password) You have to keep them, right.

The last in, Delete the installation files at the directory of the name of your WEB, you can find at C:>Apache>myitb>installation (the installation files must be deleted),OK now you can manage by your self (practice it) by log in at http://localhost/myitb/administrator
You will be asked for username and password use admin as username and password as gven by the software, OK, have try it..!

would Read More..!

Sunday, March 7, 2010

Let's Learn Looping in C++

Looping is one of the basic Logarithms which can be fond in all software development program like C++, Pascal, Java or Visual Basic.Net. Actually many kinds of Looping in C++. But in this case, we are going to make a sample of Looping with Do..While in C++.

Well, here we are, type the code bellow in C++ Program of course :


#include<'stdio.h>
#include<'conio.h>
main()
{
int n; //Ammount of sum series number
int angka;
int jumlah;

printf("Entry amount of series = "); scanf("%i",&n);
jumlah=0;
angka=1;
do
{
jumlah= jumlah+angka;
angka= angka+1;
} while(angka<=n); printf("Amount of Series is = %i",jumlah); getch(); return 0; } Note : Like in the previous article in C++, Don't use ' before stdio.h. In This case, I write just have to appear in Javascript of the Blog. Just try it, remember, If we want to master program well, we have to practice much :). Created by Ader

would Read More..!

What is a Data Warehouse?

What is a data warehouse? well..talking about data warehouse is so interesting these days. Suppose that we have already mastered 'Database itself'. Data ware house looks like giant database that can support some principles for decision making. In Data ware house also contain of what we call Back room and front room.


I just wanna give a sample, one day we well have lunch at "Food restaurant of Institute of Technology Bandung", what should we do is of course we request for the food. we can say the food is data, and int the kitchen we call it staging area where the food is cooked by good chef. when we wanna know about the food that we requested we aren't allowed to get to the kitchen and there is another worker who explain us about the food which is still cooked, in the dining room we can say it's front room.

So, back room is a place for getting source from our system that we can get from such as transactional database or flat files and in this place there is also "staging area" where the place for extracting, cleaning, comforting and delivering ETL that stands for Extract, transform and Load also in this place. and the Front room we can say it's a place for serve our customer when our data is already being the good ones. To know about data warehouse is by practicing with DBMS which offer some future for data mining such as Oracle and Microsoft SQL Server 2005. Wanna interesting, just try them .. :)


would Read More..!

Balanced Scorecard for Intelligent Business

Well..Everybody, Intelligent Business this day is more interesting to conduct. As we know along time ago, some enterprises build their database in just such kind a DBMS, but these days many DBMS can be integrate together that build data warehouse. SO for Intelligent business, many kind of software are offered such as Balanced Scorecard designer, Oracle data mining and others.

What we can find in the software, actually we can easily export our file to Excell, HTML, even make Dashboard Report, some Graph or using chart. To run this program is so simple, we can just define weight of a strategy, as we know the first thing we have to do is defining the Vision and Mission and finally define some strategies.

Actually the software of balanced Scorecard Designer is licence, so..of course we have to buy it, or even we can just get trial for the moment, Ge.., shall we try it.

would Read More..!

  © Blogger template 'External' by Ourblogtemplates.com 2008

Back to TOP