Wednesday, November 23, 2011

Manchester United F.C.

,
Manchester United
Logo Manchester United
Nama lengkap Manchester United Football Club
Julukan The Red Devils[1]
Didirikan 1878, dengan nama Newton Heath LYR F.C.
Stadion Old Trafford
(Kapasitas: 75.957[2][3])
Pemilik Bendera Amerika Serikat Keluarga Glazer
Wakil ketua Bendera Amerika Serikat Joel dan Avram Glazer
Manajer Sir Alex Ferguson
Liga Liga Utama Inggris
2010–11 Liga Utama Inggris, ke-1
Situs web Situs web resmi klub

Manchester United F.C. (biasa disingkat Man Utd, Man United atau hanya MU) adalah sebuah klub sepak bola papan atas di Inggris yang berbasis di Old Trafford, Manchester,
Dibentuk sebagai Newton Heath L&YR F.C. pada 1878 sebagai tim sepak bola depot Perusahaan Kereta Api Lancashire dan Yorkshire Railway di Newton Heath, namanya berganti menjadi Manchester United pada 1902.
Meski sejak dulu telah termasuk salah satu tim terkuat di Inggris, barulah sejak 1993 Manchester United meraih dominasi yang besar di kejuaraan domestik di bawah arahan Sir Alex Ferguson - dominasi dengan skala yang tidak terlihat sejak berakhirnya era Liverpool F.C. pada pertengahan 1970-an dan awal 1980-an. Sejak bergulirnya era Premiership di tahun 1992, Manchester United adalah tim yang paling sukses dengan dua belas kali merebut trofi juara.
Meskipun sukses di kompetisi domestik, kesuksesan tersebut masih sulit diulangi di kejuaraan Eropa; mereka hanya pernah meraih juara di Liga Champions tiga kali sepanjang sejarahnya (1968, 1999, 2008).
Sejak musim 86-87, mereka telah meraih 22 trofi besar - jumlah ini merupakan yang terbanyak di antara klub-klub Liga Utama Inggris. Mereka telah memenangi 19 trofi juara Liga Utama Inggris (termasuk saat masih disebut Divisi Satu). Pada tahun 1968, mereka menjadi tim Inggris pertama yang berhasil memenangi Liga Champions Eropa, setelah mengalahkan S.L. Benfica 4–1, dan mereka memenangi Liga Champions Eropa untuk kedua kalinya pada tahun 1999 dan sekali lagi pada tahun 2008 setelah mengalahkan Chelsea F.C. di final. Mereka juga memegang rekor memenangi Piala FA sebanyak 11 kali.[4] Pada 2008, mereka menjadi klub Inggris pertama dan klub Eropa kedua yang berhasil menjadi Juara Dunia Antarklub FIFA.
Pada 12 Mei 2005, pengusaha Amerika Serikat Malcolm Glazer menjadi pemilik klub dengan membeli mayoritas saham yang bernilai £800 juta (US$1,47 milyar) diikuti dengan banyak protes dari para pendukung fanatik.
Read more

Wednesday, November 9, 2011

Snow Leopard Transformation pack

,

 

Features

Snow Transformation Pack comes with the following main features below:
  • Add applications to emulate Snow Leopard features like Dock, Spaces, Shadow, etc.
  • Change default logon screen background to default Snow Leopard wallpaper
  • Change system branding logo to Snow Leopard
  • Change system configuration such as taskbar position to look close to Snow Leopard
  • Change system icons and graphics to Snow Leopard
  • Change system theme to Snow Leopard
  • And much more
Changes in Version 1.5
-Changed Dock application from RK Launcher to RocketDock with older StackDocklet for performance/stability (new configuration)
-Fixed Desktop Theme Enhancements being checked even they aren't checked from configuration
-Fixed FontSmoothingGamma value that breaks some applications like jDownloader
-Fixed reboot prompt to restore Windows Explorer shell if user choose not to reboot
-Fixed system files modification compatibilities with non-English edition OS
-Fixed x64 system files modification compatibilities


Download

You can download Snow Transformation Pack at WinXSoft.com/stp

Awards/Mirrors

 
Read more

Analisis algoritma

,

1.      2. Tn = 1/3 + 2/3 + 1 + 4/3 + …… + 1/3n
a.       Tentukan kompleksitas waktu
b.      Tentukan big O
Jawab :

       a). Tn = 1/3 + 2/3 + 1+ 4/3+………….+ 1/3 n
    Tn = 1/3 (1+2+3+4+………………….+ n)
    1/3. ½ n (n+1)
    1/6 n (n+1)
    1/6 n2 + 1/6 n
    Tn = O (n2)
b). 1/6 n2 + 1/6 n ≤ 1/6 n2 + 1/6 n2
       1/6 n2 + 1/6 n ≤ 1/3 n2
       C = 1/3 ,  n0= 1 ,   n ≥ 1
===============================================================
1.      3. Terdapat persoalan berikut:
Terdapat sekumpulan array bertipe integer, kemudian tentukan total nilainya.
a.       Jelaskan operasi dasarnya
b.      Buat algoritmanya
c.       Tentukan kompleksitas waktu
Jawab:

        a). Menjumlahkan semua nilai dari masing- masing array
b). tot ← 0
     for i  ← 1 to n do
          tot  ← tot + A [i]    O(1)
     endfor
c). Tn = n . O(1)
          = O (n)

Read more

Saturday, November 5, 2011

FILE JOINER 2.01

,


File Joiner is a tool that combines (binds) unlimited files (no matter their type) into a single standalone executable (a Container). The Container (the final bound file) is a simple compiled program that, when opened, will automatically launch the included files.

File Joiner can run any type of file from the bound file without affecting its direct functionality. For instance, if you bind an executable, a text file and an image file, when the Container file is run, the executable will be run too while the other files will be opened with the default image file viewer (IrfanView, Paint etc.) and text file viewer (Notepad, Wordpad etc.).


File Joiner features:


  • unlimited files can be bound (joined)

  • can bind any file type that is needed by the executable for a properly run

  • the joined files can be fully encrypted

  • the icon of the Host file (final bound file) can be changed either with one of the icons included in File Joiner or another one of your choice

  • small joiner "stub" size (~10 KB) - for instance, if you join a 100KB file with a 300KB file the size of the resulting bound file will be ~410KB

  • the joiner "stub" is undetected when scanned by most used antiviruses




  • download a Demo version here.
    Read more

    Thursday, November 3, 2011

    Coding Segitiga

    ,

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

    int main(int argc, char *argv[])
    {
      int n,i,j,k,l;
      l=1;
      printf("masukan : ");scanf("%i",&n);
      for (i=n; i>=1; i=i-2)
      {      for (k=1;k<=l;k++)
                  printf(" ");
          for (j=1; j<=i; j++)
          {
              printf("*");
          }
          l++;
          printf("\n");
      }
      getch();   
      return 0;

    }
    Read more

    SARDU - Multiboot creator DVD & USB

    ,

    SARDU enables you to create a multiboot device (USB stick or other removable) containing your Utilities, Antivirus, Windows PE and Windows XP, Vista, Seven Installers with all Windows Recovery Disks.
    You can also import customized menus and customized folders and / or ISOs not directly supported.
    This makes SARDU infinitely complete and customizable.

    Multiple Antivirus

    After downloading the ISO images, with SARDU you can use the engine of more than ten of antivirus (one at time) to remove malware, viruses or others malicious software. This multiple antivirus rescue disc utility considers a great computer troubleshooting tools if your computer can't be start or if is damaged.

    Hundreds of Utilities

    You can create, recover, repair, resize and merge partitions, clone a disk, make an image, recover or change lost passwords; run floppy-based diagnostic tools from a DVD or USB stick, recover and save lost photos and documents, and test hardware items such as RAM and hard disks, etc.
    All do you need for troubleshooting.

    Multiple Linux

    You can try the best Linux Live distro's by loading the file system images into RAM so nothing is written to your hard disk, so you can turn your PC to a Media Player, or test your LAN or Wi-Fi security using your USB pen-drive or DVD.
    You can use modular distributions such as Slax, xPUD, (K)Ubuntu, Fedora, Mint or others from the same USB Flash Drive or DVD.

    Multiple Windows installer or PE or Recovery Disk

    You can boot from DVD or USB using 'Windows Live' (Windows PE), so you can perform the recovery of your Windows XP, Vista or Win. 7 installations, install Windows XP and all Service Packs, Windows Vista or Windows Seven all from the one DVD or USB. Using the USB media for installation of an operating system takes advantage of greater speed compared to the slower DVD. You can install operating systems without needing a CD or DVD player. This is the best solution for netbooks.

    Downloads SARDU 2.0.3
    Read more

    Slackware

    ,
    What is Slackware Linux?
    The Official Release of Slackware Linux by Patrick Volkerding is an advanced Linux operating system, designed with the twin goals of ease of use and stability as top priorities. Including the latest popular software while retaining a sense of tradition, providing simplicity and ease of use alongside flexibility and power, Slackware brings the best of all worlds to the table.

    Originally developed by Linus Torvalds in 1991, the UNIX®-like Linux operating system now benefits from the contributions of millions of users and developers around the world. Slackware Linux provides new and experienced users alike with a fully-featured system, equipped to serve in any capacity from desktop workstation to machine-room server. Web, ftp, and email servers are ready to go out of the box, as are a wide selection of popular desktop environments. A full range of development tools, editors, and current libraries is included for users who wish to develop or compile additional software.

    The Slackware Philosophy
    Since its first beta release in April of 1993, the Slackware Linux Project has aimed at producing the most "UNIX-like" Linux distribution out there. Slackware complies with the published Linux standards, such as the Linux File System Standard. We have always considered simplicity and stability paramount, and as a result Slackware has become one of the most popular, stable, and friendly distributions available.

    Slackware Overview
    Slackware Linux is a complete 32-bit multitasking "UNIX-like" system. It's currently based around the 2.6 Linux kernel series and the GNU C Library version 2.7 (libc6). It contains an easy to use installation program, extensive online documentation, and a menu-driven package system. A full installation gives you the X Window System, C/C++ development environments, Perl, networking utilities, a mail server, a news server, a web server, an ftp server, the GNU Image Manipulation Program, Mozilla Firefox, plus many more programs. Slackware Linux can run on 486 systems all the way up to the latest x86 machines (but uses -mcpu=i686 optimization for best performance on i686-class machines like the P3, P4, Duron/Athlon, and the latest multi-core x86 CPUs).

    Download mirrors.kernel.org
    or
    Torrents for Slackware 13.37, 32-bit x86
    Slackware 13.37 x86 Install ISO disc 1 (A/AP/D/E/L/N, bootable installer, kernels, testing/, Slackbook)
    Slackware 13.37 x86 Install ISO disc 2 (F/K/T/TCL/X/XAP/Y, L source, /testing kernel source)
    Slackware 13.37 x86 Install ISO disc 3 (KDE, A/AP/E/F/installer source)
    Slackware 13.37 x86 Install ISO disc 4 (KDEI, /extra packages, source for D)
    Slackware 13.37 x86 ISO disc 5 (KDE/XAP source)
    Slackware 13.37 x86 ISO disc 6 (/pasture packages, K/N/T/TCL/X/Y source, USB and PXE installers)
    Slackware 13.37 x86 DVD ISO (everything)
    Torrent for Slackware 13.37, 64-bit x86_64 Slackware 13.37 x86_64 DVD ISO (everything)
     
    Read more
     

    cvbn45's Blog Copyright © 2011 -- Template created by O Pregador -- Powered by Blogger