bantu share litenya temen gan... moga bisa bermanfaat...


 

Silahkan, buat yg suka Windows XP Unattended Lite PlusATA Driver.
ini saya share Windows Kawean XP lite SP3. OS ini berasal dari Windows Xp. ukuran file kecil sangat, plus integrasi Firefox 5.0 dan antivirus Eset Smart Security.
Jika anda berminat untuk mencobanya, link downloadnya sudah ada dibawah tulisan.



Buat temen2 sekalian, semuanya pasti sudah mengetahui kegunaan dan keunggulan dari corel draw,,, dan ini saya share untuk download corel draw x5...thanks


Avira AntiVir Personal (07-02-2011) Free anti-virus and anti-spyware on-demand scanner, detects and removes more than 50000 viruses.
ComboFix (07-02-2011) Designed to cleanup malware infections and restore settings modified by malware.
CWShredder 2.19 Popular CoolWebSearch Trojan Remover tool.
Dr.Web CureIt! Antivirus (07-02-2011) a free standalone anti-virus and anti-spyware on-demand scanner.
GMER 1.0.15 Hidden services, hidden registry, hidden file scanner, Rootkit Detector and Remover.
Malwarebytes Anti-Malware 1.50.1 (07-02-2011) anti-malware application that can thoroughly remove even the most advanced malware.
Remove Fake Antivirus 1.72 a tool to remove virus/malwares which disguises itself to be an antivirus and produces fake alert/warnings and urge you to purchase a useless copy of the fake antivirus.
RootkitRevealer 1.7.1 Rootkit Revealer is an advanced patent-pending root kit detection utility.
Spybot - Search & Destroy 1.6.2 (07-02-2011) Application to scan for spyware, adware, hijackers and other malicious software.
SpywareBlaster 4.4 (07-02-2011) Prevent the installation of spyware and other potentially unwanted software.
SuperAntispyware 4.47.1000 (07-02-2011) Remove Malware, Rootkits, Spyware, Adware, Worms, Parasites (a must have tool).

Not Just Browsing is part of the "third generation" and is designed specifically to improve the usability of network content, and improve the way you access that content (the way you view it and organize it).

These are some of the most important characteristics:

berikut ini source code untuk mencari nilai modus (nilai data yang paling sering muncul) dari n buah data, silahkan dicermati : 
/**-----------------------------.
Program Modus dengan bahasa C   |
Diprogram oleh : pemrogram      |
------------------------------**/

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

#define _MY_DEBUG
#if defined(_MY_DEBUG)
    #define TRACE_LINE printf("\n1. Line : %d\n2. File : %s\n",__LINE__,__FILE__);
#else
    #define TRACE_LINE
#endif
#define MAX 20
#define DELAY 10000000
#define INPUT 'i'
#define OUTPUT 'o'
#define TRUE 1
#define FALSE 0

typedef struct {
    int number, sigma;
} Data;

typedef struct {
    int count;
    Data* data;
} List;

int InList(List, int),
    Modus(int*, int),
        ChoosePivot(int, int);
            void UpdateList(List*, int),
                AppendtoList(List*, int),
                    InputOutput(int*, int, const char),
                QuickSort(int*, int, int),
            // SelectionSort(int*, int),
        Swap(int*, int*),
    Delay(void),
FreeBuffer(int*);

int main(int argc, char *argv[]) {
    system("COLOR 5");
    int *buffer, n;
    printf("Masukkan banyak data : ");
    scanf("%d",&n);
    fflush(stdin);
    if((n > FALSE) && (n <= MAX)) {
        buffer = (int*)calloc(n,sizeof(int));
        InputOutput(buffer,n,INPUT);
        printf("\n1. Data yang anda masukkan : ");
        InputOutput(buffer,n,OUTPUT);
        QuickSort(buffer,FALSE,(n-TRUE)); // FALSE = 0;
        // SelectionSort(buffer,n);
        printf("\n2. Data setelah disorting : ");
        InputOutput(buffer,n,OUTPUT);
        printf("\n3. Modus : %d\n",Modus(buffer,n));
    }
    FreeBuffer(buffer);
    getch();
    return(EXIT_SUCCESS);
}

My Pictures