Tuesday, 29 November 2016

Published 01:13 by with 1 comment

7 Koleksi Ebook Belajar Data Mining Untuk Mahasiswa

Data mining adalah suatu proses ekstraksi atau penggalian data dan informasi yang besar, yang belum diketahui sebelumnya, namun dapat dipahami dan berguna dari database yang besar serta digunakan untuk membuat suatu keputusanbisnis yang sangat penting. Data mining menggambarkan sebuah pengumpulan teknik-teknik dengan tujuan untuk menemukan pola-pola yang tidak diketahui pada data yang telah dikumpulkan. Data mining memungkinkan pemakai menemukan pengetahuan dalam data database yang tidak mungkin diketahui keberadaanya oleh pemakai.
Berikut beberapa koleksi Ebook tentang Data Mining yang bagus untuk dibaca dan dipelajari mahasiswa :

1. Data Mining and Statistics for Decision Making by Stéphane Tufféry

Description :
Data mining is the process of automatically searching large volumes of data for models and patterns using computational techniques from statistics, machine learning and information theory; it is the ideal tool for such an extraction of knowledge. Data mining is usually associated with a business or an organization’s need to identify trends and profiles, allowing, for example, retailers to discover patterns on which to base marketing objectives.

Link Download


2. Data Mining For Dummies by Meta S. Brown

Description :
Data mining is quickly becoming integral to creating value and business momentum. The ability to detect unseen patterns hidden in the numbers exhaustively generated by day–to–day operations allows savvy decision–makers to exploit every tool at their disposal in the pursuit of better business. By creating models and testing whether patterns hold up, it is possible to discover new intelligence that could change your business′s entire paradigm for a more successful outcome.
 Link Download

3. Data Mining: Practical Machine Learning Tools and Techniques,3rd Edition by Ian H. Witten

Description :
Data Mining: Practical Machine Learning Tools and Techniques offers a thorough grounding in machine learning concepts as well as practical advice on applying machine learning tools and techniques in real-world data mining situations. This highly anticipated third edition of the most acclaimed work on data mining and machine learning will teach you everything you need to know about preparing inputs, interpreting outputs, evaluating results, and the algorithmic methods at the heart of successful data mining.
 Link Download

4. Data Mining With Decision Trees : Theory and Applications by Lior Rokach

Description :
Decision trees have become one of the most powerful and popular approaches in knowledge discovery and data mining; it is the science of exploring large and complex bodies of data in order to discover useful patterns. Decision tree learning continues to evolve over time. Existing methods are constantly being improved and new methods introduced.

Link Download




5. Encyclopedia of Data Warehousing and Mining (2 Volumes) by John Wang

Description :
Data Warehousing and Mining (DWM) is the science of managing and analyzing large datasets and discovering novel patterns and in recent years has emerged as a particularly exciting and industrially relevant area of research. Prodigious amounts of data are now being generated in domains as diverse as market research, functional genomics and pharmaceuticals; intelligently analyzing these data, with the aim of answering crucial questions and helping make informed decisions, is the challenge that lies ahead.

Link Download


6. Mining the Social Web: Data Mining Facebook, Twitter, LinkedIn, Google+, GitHub, and More by Matthew A. Russell

Description :
How can you tap into the wealth of social web data to discover who’s making connections with whom, what they’re talking about, and where they’re located? With this expanded and thoroughly revised edition, you’ll learn how to acquire, analyze, and summarize data from all corners of the social web, including Facebook, Twitter, LinkedIn, Google+, GitHub, email, websites, and blogs.
 Link Download


7. R and Data Mining: Examples and Case Studies by Yanchang Zhao

Description :
This book guides R users into data mining and helps data miners who use R in their work. It provides a how-to method using R for data mining applications from academia to industry. The book  helps researchers in the field of data mining, postgraduate students who are interested in data mining, and data miners and analysts from industry. 
 Link Download
Read More
      edit

Monday, 14 November 2016

Published 13:07 by with 3 comments

Offcloud.com : Download Torrent Langsung ke Google Drive dan Dropbox


Offcloud adalah layanan download manager berbasis cloud yang dapat digunakan untuk mendownload file torrent dan menyimpannya di server cloud. Offcloud menawarkan layanan gratis yang dapat Anda gunakan untuk  mendownload hingga 100 link termasuk 2 cyberlocker & BitTorrent.

Offcloud.com memungkinkan kita untuk mendownload file dari web dan mentransfernya langsung ke beberapa layanan cloud storage diantaranya, yaitu Dropbox, Box dan Google Drive. Offcloud juga menyediakan akses file melalui web publik HTTP, HTTPS, FTP atau BitTorrent serta layanan streaming dan file hosting.


Beberapa fitur dari Offcloud :
1.) Download file menggunakan jaringan proxy yang cepat.
2.) Meng-upload file langsung ke akun penyimpanan cloud Anda.
3.) Akses file langsung di layanan penyimpanan cloud.
4.) Download file dari jaringan BitTorrent.
5.) Download file video dari layanan Streaming.
6.) Mengkonversi halaman web ke dalam dokumen PDF.
7.) Simpan artikel web seperti dengan Instapaper (Pocket HTML).
8.) Menghasilkan file musik MP3 dari streaming video.
9.) Unzip / unrar setiap arsip tanpa men-download.

Jika Anda tertarik,langsung daftar gratis disini : Offcloud.com
Read More
      edit

Tuesday, 8 November 2016

Published 23:15 by with 0 comment

Cara Install LAMP di Ubuntu 14.04

LAMP (Linux, Apache, MySQL, PHP) adalah istilah yang umum digunakan untuk instalasi Apache + MySQL + PHP di Server Linux. Seiring perkembangan software, MySQL kini sudah digantikan dengan MariaDB sehingga istilah LAMP menjadi Linux Apache MariaDB PHP.

Langkah 1: Install Web Server Apache 2
instalasi Apache webserver bisa dilakukan melalui perintah apt-get seperti dibawah ini:

sudo apt-get install -y apache2

parameter -y menandakan jawaban y (yes) di setiap pertanyaan Yes / No
setelah instalasi selesai, Anda bisa cek melalui browser dengan mengetikkan http://alamat-IP-VPS
Misal jika IP VPS Anda 192.168.1.2, anda bisa ketikkan http://192.168.1.2
Jika Instalasi berhasil, akan tampak hasil sebagai berikut:


Langkah 2: Install MariaDB
MariaDB merupakan platform database yang dibuat oleh Developer MySQL. Semenjak MySQL di akuisisi oleh Oracle, para Developernya kemudian beralih membuat Platform Database baru yang memiliki banyak kelebihan dibanding MySQL. karena MariaDB merupakan Project lanjutan yang dibuat oleh developer MySQL, maka semua perintah dan syntax mySQL sepenuhnya compatible dengan MariaDB.

Cara Install MariaDB cukup dengan mengetikkan Command Line berikut di terminal:

sudo apt-get install -y mariadb-server mariadb-client

setelah instalasi selesai, jalankan MariaDB dengan mengetikkan perintah berikut:

sudo service mysql start

Kemudian, check status mariaDB dengan mengetikkan:

sudo service mysql status

kemudian, untuk pengamanan MySQL, ketikkan perintah berikut:

sudo mysql_secure_installation

Langkah 3: Install PHP
untuk menginstall PHP, dapat dilakukan dengan menggunakan command line berikut:

sudo apt-get install -y php5 php5-fpm libapache2-mod-php5

setelah proses instalasi selesai, restart Apache dengan perintah berikut:

sudo service apache2 restart

DONE

Read More
      edit
Published 22:53 by with 0 comment

Daftar Kode Status Respon HTTP


HTTP memiliki beberapa kode status yang akan muncul apabila ada kejadian yang sesuai dan tidak semuanya tentang error kok. Nanti bisa dibedakan dengan mudah dari angka awalnya dan ini akan membantu kita melakukan diagnosa dimana letak masalahnya, di klien atau server.

1xx Informational
100Continue
101Switching Protocols
102Processing
103Checkpoint
122Request-URI too long
2xx Success
200OK
201Created
202Accepted
203Non-Au­tho­rit­ative Inform­ation
204No Content
205Reset Content
206Partial Content
207Multi­Status
208Already Reported
226IM Used
3xx Redirection
300Multiple Choices
301Moved Permanently
302Found
303See Other
304Not Modified
305Use Proxy
306Switch Proxy
307Temporary Redirect
308Resume Incomplete

4xx Client Error
400Bad Request
401Unauthorized
402Payment Required
403Forbidden
404Not Found
405Method Not Allowed
406Not Acceptable
407Proxy Authentication Required
408Request Timeout
409Conflict
410Gone
411Length Required
412Precondition Failed
413Request Entity Too Large
414Reques­t-URI Too Long
415Unsupported Media Type
416Requested Range Not Satisfiable
417Expectation Failed
418I’m a teapot
420Twitter Rate Limiting
422Unprocessable Entity
423Locked
424Failed Dependency
425Unordered Collection
426Upgrade Required
428Precondition Required
429Too Many Requests
431Request Header Fields Too Large
444No Response
449Retry With
450Blocked By Windows Parental Controls
451Unavai­lable For Legal Reasons
499Client Closed Request
5xx Server Error
500Internal Server Error
501Not Implemented
502Bad Gateway
503Service Unavailable
504Gateway Timeout
505HTTP Version Not Supported
506Variant Also Negotiates
507Insufficient Storage
508Loop Detected WebDAV
509Bandwidth Limit Exceeded
510Not Extended
511Network Authentication Required
598Network read timeout error
599Network connect timeout error
Read More
      edit