GIT Version Control

Many scientists write code as part of their research. Just as experiments are logged in laboratory notebooks, it is important to document the code you use for analysis. However, a few key problems can arise when iteratively developing code that make it difficult to document and track which code version was used to create each result. First, you often need to experiment with new ideas, such as adding new features to a script or increasing the speed of a slow step, but you do not want to risk breaking the currently working code. One often-utilized solution is to make a copy of the script before making new edits. However, this can quickly become a problem because it clutters your file system with uninformative filenames, e.g., analysis.sh, analysis_02.sh, analysis_03.sh, etc. It is difficult to remember the differences between the versions of the files and, more importantly, which version you used to produce specific results, especially if you return to the code months later. Second, you will likely share your code with multiple lab mates or collaborators, and they may have suggestions on how to improve it. If you email the code to multiple people, you will have to manually incorporate all the changes each of them sends.

Fortunately, software engineers have already developed software to manage these issues: version control. A version control system (VCS) allows you to track the iterative changes you make to your code. Thus, you can experiment with new ideas but always have the option to revert to a specific past version of the code you used to generate particular results. Furthermore, you can record messages as you save each successive version so that you (or anyone else) reviewing the development history of the code is able to understand the rationale for the given edits. It also facilitates collaboration. Using a VCS, your collaborators can make and save changes to the code, and you can automatically incorporate these changes to the main code base. The collaborative aspect is enhanced with the emergence of websites that host versioncontrolled code

A Short History of Git
As with many great things in life, Git began with a bit of creative destruction and fiery controversy.

The Linux kernel is an open source software project of fairly large scope. For most of the lifetime of the Linux kernel maintenance (1991–2002), changes to the software were passed around as patches and archived files. In 2002, the Linux kernel project began using a proprietary DVCS called BitKeeper.

In 2005, the relationship between the community that developed the Linux kernel and the commercial company that developed BitKeeper broke down, and the tool’s free-of-charge status was revoked. This prompted the Linux development community (and in particular Linus Torvalds, the creator of Linux) to develop their own tool based on some of the lessons they learned while using BitKeeper. Some of the goals of the new system were as follows:
  • Speed
  • Simple design
  • Strong support for non-linear development (thousands of parallel branches)
  • Fully distributed
  • Able to handle large projects like the Linux kernel efficiently (speed and data size)
  • Since its birth in 2005, Git has evolved and matured to be easy to use and yet retain these initial qualities. It’s amazingly fast, it’s very efficient with large projects, and it has an incredible branching system for non-linear development

The basic Git workflow goes something like this:
  • You modify files in your working tree.
  • You selectively stage just those changes you want to be part of your next commit, which adds onlythose changes to the staging area.
  • You do a commit, which takes the files as they are in the staging area and stores that snapshot permanently to your Git directory.



Kotlin Programming Language

Kotlin is a new open source programming language like Java, JavaScript, etc . It is a high level strongly statically typed language that combines functional and technical part in a same place. Currently, Kotlin targets Java and JavaScript. It runs on JVM.

Kotlin is influenced by other programming languages such as Java, Scala, Groovy, Gosu, etc . The syntax of Kotlin may not be exactly similar to JAVA, however, internally Kotlin is reliant on the existing Java Class library to produce wonderful results for the programmers . Kotlin provides interoperability, code safety, and clarity to the developers around the world.

Advantages & Disadvantages 
Following are some of the advantages of using Kotlin for your application development.
  • Easy Language: Kotlin is a functional language and very easy to learn. The syntax is pretty much similar to Java, hence it is very easy to remember. Kotlin is more expressive , which makes your code more readable and understandable.
  • Concise: Kotlin is based on JVM and it is a functional language. Thus, it reduce lots of boiler plate code used in other programming languages.
  • Runtime and Performance: Better performance and small runtime.
  • Interoperability: Kotlin is mature enough to build an interoperable application in a less complex manner.
  • Brand New: Kotlin is a brand new language that gives developers a fresh start. It is not a replacement of Java, though it is developed over JVM. It is accepted as the first official language of android development. Kotlin can be defined as - Kotlin= JAVA +extra updated new features. Following are some of the disadvantages of Kotlin.
  • Namespace declaration: Kotlin allows developers to declare the functions at the top level. However, whenever the same function is declared in many places of your application, then it is hard to understand which function is being called.
  • No Static Declaration: Kotlin does not have usual static handling modifier like Java, which can cause some problem to the conventional Java developer

Using Kotlin for Android Development
Kotlin is a great Dt for developing Android applications, bringing all of the advantages of a modern language to the Android platform without introducing any new restrictions:
  • Compatibility: Kotlin is fully compatible with JDK 6, ensuring that Kotlin applications can run on older Android devices with no issues. The Kotlin tooling is fully supported in Android Studio and compatible with the Android build system.
  • Performance: A Kotlin application runs as fast as an equivalent Java one, thanks to very similar bytecode structure. With Kotlin's support for inline functions, code using lambdas often runs even faster than the same code written in Java.
  • Interoperability: Kotlin is 100% interoperable with Java, allowing to use all existing Android libraries in a Kotlin application. This includes annotation processing, so databinding and Dagger work too.
  • Footprint: Kotlin has a very compact runtime library, which can be further reduced through the use of ProGuard. In a real application, the Kotlin runtime adds only a few hundred methods and less than 100K to the size of the .apk Dle.
  • Compilation Time: Kotlin supports eIcient incremental compilation, so while there's some additional overhead for clean builds, incremental builds are usually as fast or faster than with Java.
  • Learning Curve: For a Java developer, getting started with Kotlin is very easy. The automated Java to Kotlin converter included in the Kotlin plugin helps with the Drst steps. Kotlin Koans oFer a guide through the key features of the language with a series of interactive exercises.

Android Operating System

Android is a software platform and operating system for mobile devices, based on the Linux kernel, and developed by Google and later the Open Handset Alliance. It allows developers to write managed code in the Java language, controlling the device via Googledeveloped Java libraries. Android is available as open source. Android is a freely downloadable open source software stack for mobile devices that includes an operating system, middleware and key applications based on Linux and Java. Google purchased the developer of Android in 2005, and Android was unveiled in 2007. Google released the Android code as open-source under the Apache License. Android has numerous developers writing applications (apps) all over the world. First of all the developers write their script in Java, and then download the apps from the third party sites or online stores.

In February 2012, 450,000 apps were available for Android but the estimated number of downloads since December, 2011 was more than 10 billion. There are over 300 million Androids in use and over 850,000 devices activated every day. Android is the one of the most used mobile operating system with a market share of 48% and Over 400,000 applications available in Google play store. Android apps have been installed over 10 billion times and cover a vast range of categories from games and entertainment to financial and business services. Android software development and the Google Play Market are relatively open and unrestricted. This offers both developers and users more flexibility and freedom, but also creates significant security challenges.

Android Versions
Major improvements in each release involve:
  • Cupcake – UI (User Interface) refinement updates of all core elements, accelerometerbased application rotations, on-screen soft keyboard, video recording and playback, stereo Bluetooth support;
  • Donut – quick search box, VPN (Virtual Private Network) and 802.1x support, battery usage indicator;
  • Éclair – Bluetooth 2.1 support, additional camera modes, multiple e-mail and account support;
  • Froyo – tethering and WiFi hotspot capability, JIT (Just In Time) compiler, Adobe Flash support;
  • Gingerbread – NFC (Near Field Communications), additional sensor support (gyroscope, rotation vector, linear acceleration, gravity, barometer), multiple camera support, large screen resolution support (tablets), Google Talk;
  • Honeycomb – tablet-only android update, connectivity for USB (Universal Serial Bus) accessories, high-performance WiFi lock;
  • Ice Cream Sandwich – WiFi Direct, Face Unlock, numerous improvements (stability, optimization, screen rotation, graphics);
  • Jelly Bean – Google Wallet, Google Now, USB audio, Photo Sphere panorama photos, multiple user accounts, Miracast wireless display support;
  • KitKat – NFC host card emulation, new experimental runtime virtual machine (ART), Bluetooth MAP (Message Access Profile) support;
  • Lollipop – Dalvik replaced with ART with AOT (Ahead-Of-Time) compilation, support for 64-bit CPUs, OpenGL ES 3.1 support, recent activities screen with tasks instead of applications, project Volta (battery life improvements), audio input and output through USB devices.

Java Programming Language

Java is an object-oriented programming language developed by Sun Microsystems as a core part of its Java platform which was released in 1995 (Lemay & Perkins, 1996; Java – Overview, n.d.). The development was led by James Gosling in 1991 (Horstmann, 2013; Java – Overview, n.d.; Java Fundamentals, n.d.). The language lets the developers to “write once, run anywhere” (WORA), and this gives Java the characteristic of being platform-independent (Java – Overview, n.d.; Java Fundamentals, n.d.). Its application to real world solutions ranges from personal computer up to mobile devices.

Like other computer programs, Java source codes are translated into a machine language – binary language. This binary language is a set of zero’s and one’s that the computer only understands. However, there is a distinction to a Java-written program. Yes, it is translated into binary codes but it does not run directly under the computer system. Java programs run under the Java Virtual Machine installed in a computer system (download and installation of Java Runtime Environment is needed).

Characteristics of Java
  • Object-oriented. Everything in Java is an object.
  • Simple. Easy to learn and use.
  • Platform-independent. Java can execute in any computer system provided there is a Java run-time system present in it (Horstmann, 2013; Java – Overview, n.d.; Java Fundamentals, n.d.).
  • Architecture-neutral. Java programs are not compiled for a specific processor and/or operating system (Java Fundamentals, n.d.). This is because Java programs run under the Java Virtual Machine or JVM (Java – Overview, n.d.).
  • Secure. It enables to develop virus-free programs or software (Horstmann, 2013; Java – Overview, n.d.).
  • High performance. Java uses Just-In-Time (JIT) compilers. A JIT compiler compiles code only if needed during an execution (Rouse, 2005).
  • Multi-threaded. Java programs can perform several tasks simultaneously (Java – Overview, n.d.).
  • Case-sensitive. In Java, “Name” is different from “name”.

Here is an example of a simple java program:

public class first {
    public static void main(String []Naufal) {
        System.out.println("Hello world, this is my first java program :D");
    }
}

To write your Java programs, you will need a text editor. There are even more sophisticated IDEs available in the market. But for now, you can consider one of the following: ·
  • Notepad: On Windows machine, you can use any simple text editor like Notepad (Recommended for this tutorial), TextPad. ·
  • Netbeans: A Java IDE that is open-source and free, which can be downloaded from here. ·
  • Eclipse: A Java IDE developed by the eclipse open-source community and can be downloaded from here.

Artificial Intelligence (AI)

Artificial Intelligence is the concept used to describe computer systems that are able to learn from their experience and solve complex problems in different situations  (Authority, 2018). Abilities we previously thought were unique to mankind. And It’s data in many cases personal data, that fuels that systems, enabling them to learn and become inelligence.

The concept of AI  was known as far back as in the 1950s as a technology in which people had high hopes of success (Dahria, 2008). The Initial progress was made was however followed by many decades that are often called the AI winter because the early expectations were not made.

Today we see that AI is used to solve specific tasks such as for example image and speech recognition, self driving cars, boston dynamics, navigation system, ASIMO, chatbots, human and computer games and many more. Also AI can make everyday life easier by helping with the task such as cleaning, shopping, and transportation.

In application of AI there are many achievements using AI techniques surpass human capabilities – in 1997, a computer programme defeated the reigning world chess champion, and more recently, in 2016, other computer programmes have beaten the world’s best Go [an ancient Chinese board game] players and some top poker players. Computers are proving, or helping to prove, mathematical theorems; knowledge is being automatically constructed from huge masses of data, in terabytes (1012 bytes), or even petabytes (1015 bytes), using machine learning techniques (Courier, 2018). As a result, machines can recognize speech and transcribe it – just like typists did in the past. Computers can accurately identify faces or fingerprints from among tens of millions, or understand texts written in natural languages. Using machine learning techniques, cars drive themselves; machines are better than dermatologists at diagnosing melanomas using photographs of skin moles taken with mobile phone cameras; robots are fighting wars instead of humans (see p. 25-28); and factory production lines are becoming increasingly automated. Scientists are also using AI techniques to determine the function of certain biological macromolecules, especially proteins and genomes, from the sequences of their constituents – amino acids for proteins, bases for genomes. More generally, all the sciences are undergoing a major epistemological rupture with in silico experiments – named so because they are carried out by computers from massive quantities of data, using powerful processors whose cores are made of silicon. In this way, they differ from in vivo experiments, performed on living matter, and above all, from in vitro experiments, carried out in glass test-tubes. Today, AI applications affect almost all fields of activity – particularly in the industry, banking, insurance, health and defence sectors. Several routine tasks are now automated, transforming many trades and eventually eliminating some and many advantages can describes about AI.

Now, how does artificial intellegence work? there are two mains aspects of artificial intelligence that are particular relevance (Authority, 2018). The first is that the software itself can make decisions and the second is that the system develops by learning from experience. In order for a computer to learn, it needs experience, and it’s obtains this experience from the informations that we feed into it. If system is sought that will only perform image recognitions and analysis, the experiental data input will naturally enough consist of images. For other tasks the input data will consist of text , speech, or numbers.

The AI spring has dawned thanks to the availability of huge amounts of data, coupled with an increase in processing power and access to cheaper and greater storage capacity. Big Data often refers to vast volumes of data, extracted from multiple sources, often in real time.4 These enormous data streams can be utilised for the benefit of society by means of analysis and finding patterns and connections.

This is where AI can make a difference. While traditional analytical methods need to be programmed to find connections and links, AI learns from all the data it sees. Computer systems can therefore respond continuously to new data and adjust their analyses without human intervention.

Sources

Authority, T. N. (2018). Artificial Intelligence And Privacy. Norwegia: Datatilsynet: The Norwegian Data Protection Authority.
Courier, T. U. (2018). Artificial Intelligence: The Promises and The Threats. The Unesco Courier, 9.
Dahria, M. (2008). Kecerdasan Buatan (Artificial Intellegence). LPPM STMIK TRIGUNA DHARMA, 187.


Tutorial Whaff Rewards Lengkap

Selamat datang gan di blog sederhana ane, waaah dah lama nih ane gak pesting di blog maklum sibuk dengan dunia :v :v. Oke kali ini saya akan berbagi tutorial menggunkan aplikasi yang bernama whaff rewards, sebelumnya siapa yang gk tau aplikasi ajaib ini ? Yak benaaar whaff atau whaff rewards mungkin sebagian orang sudah tau aplikasi yang satu ini. Whaff adalah aplikasi penghasil uang terbaik saat ini dan terbukti hasilnya bukan penipuan, hoax atau yang lainnya, aplikasi yang satu ini benar-benar memeberi hasil yang nyata gan . Aplikasi ini berjalan pada sistem operasi android, jadi bagi anda pengguna hp android anda termasuk salah satu orang yang beruntung. Kenapa saya katakan beruntung ? karena dengan hanya bermodal android anda bisa mengeruk uang hanya dengan memainkan jari di hp android anda. Lhaa kok bisa ? gimana caranya ? jawabannya adalah aplikasi ini (whaff), whaff ini cara kerjanya memberikan penghargaan atau hadiah dalam bentuk dollar untuk setiap tugas atau misi yang agan kerjakan, besar dollar yang di dapat untuk setiap misinya berbeda beda tergantung tingkat kesulitan dll. Dan di bawah ini saya jabarkan keuntungan menggunakan whaff reward :

Kelebihan 
  1. Aplikasinya gratis (anda malah dibayar)
  2. Banyak bonus yang di tawarkan
  3. Bonus di berikan setiap hari (bersyarat)
  4. Hasil yang di tawarkan besar
  5. Hanya dengan mengundang teman anda dapat bonus sebesar $0,3

Kekurangan
  1. Minimal pay out adalah $10 atau sekitar Rp 131.300 kurs hari ini
  2. Bonus hanya di dapat ketika pertama kali install pada satu perangkat (Sekali install)
  3. Metode pembayaran sudah di tentukan oleh whaff misalnya menggunakan pay pal dll

Syarat menggunkan whaff
  1. Harus punya android (wajib)
  2. Koneksi internet (wajib)
  3. Punya akun facebook (untuk login)
  4. Punya akun paypal (bagi yang belum punya bisa daftar DISINI)
  5. Punya kartu kredit visa atau mastercard,juga bisa kartu debit (jika di butuhkan)
  6. Mempunyai kapasitas penyimpanan yang besar, untuk menginstall aplikasi2 dari whaff (rekomendasi)

Larangan dari whaff
  1. Dilarang menggunakan koneksi internet VPN, proxy atau yang lainnya, lebih baik pakai koneksi dari provider atau koneksi wifi
  2. Dilarang menggunakan 2 akun dalam 1 perangkat atau 1 akun untuk beberapa perangkat (1 akun 1 perangkat)
  3. Dilarang melakukan spamming invitation code
  4. Dilarang memasang invitation code di review whaff rewards di play store atau sejenisnya
NB : Syarat dan ketentuan berlaku, bagi yang melanggar peraturan akunnya akan di banned oleh whaff !!!
Jika masih kurang jelas agan bisa kunjungi situs resmi whaff di whaff.com

Okelah cukup segitu aja intronya kita lanjut ke pokok bahasannya saja cekidod gan :v :v

Install

  1. Untuk install whaff anda bisa search di play store dengan kata kunci whaff atau whaff rewards, juga bisa download apk nya di sini
  2. Jika sudah download dan tunggu hingga selesai cuman sekitar 10 Mb kok
  3. Lalu jika sudah buka aplikasi whaffnya kemudian tekan login yang ada di pojok kanan atas
  4. Lalu loginlah dengan akun facebook anda
  5. Jika sudah anda akan di minta untuk memasukkan invitation code, silahkan masukkan kode ini AW61152 (Huruf Kapital Semua) kemudian tekan OK, dan saldo awal anda akan menjadi $0,30
NB : Aplikasi whaff tidak bisa di install di emulator android untuk pc seperti, bluestack, windroye, memu dll (khusus android)

Naaah, sampai di sini agan udah bisa memulai mengumpulkan dolar melalui pilihan menu Invite Friends, Pick Premium, Pick Whaff ataupun Attendance (Kehadiran) dan berikut akan saya jabarkan pengertian dan fungsi dari masing masing menu tersebut :

Invite Friends : Pada menu ini anda bisa mengajak atau mengundang teman anda untuk bergabung dengan whaff. Setiap teman yang berhasil anda ajak dengan menggunakan invitation code milik anda, anda akan mendapat $0,3 atau sekitar Rp 3.929 (kurs hari ini) per orang. Bisa dibayangkan jika setiap hari dalam 1 bulan minimal anda dapat mengundang 3 teman berarti 0,3 x 3 x 30 = $27 atau sekitar 353.700 (kurs hari ini) gampangkan gk susah kok cuman ngundang orang aja


Premium Pick : Dalam menu premium pick anda akan ditawari multiple reward artinya anda akan mendapatkan bonus ganda jika mengikuti perintah atau tugas yang di sediakan. Contohnya anda di suruh download aplikasi kemudian buka aplikasi tersebut, atau mainkan aplikasi tersebut dalam beberapa menit setiap hari, aplikasinya jangan di uninstall dll. Masing masing tugas di beri tenggang waktu atau batas waktu sendiri jadi jangan sampai terlewatkan.


Pick Whaff : Pada menu ini anda akan di suruh menginstall, registrasi, membuka, memainkan game tertentu, menyelesaikan survey dll dengan nominal bonus yang berbeda-beda untuk setiap tugas yang di berikan.

Attendance : Pada menu ini anda akan mendapat $0,01 secara cuma-cuma hanya dengan menekan kehadiran setiap harinya selama anda menggunakan aplikasi whaff


Tips dan trik menggunakan whaff
  1. Gunakan facebook dengan teman yang banyak, kalau bisa 5000. Ini nanti sangat membantu untuk mendapatkan dolar dari whaff.
  2. Memasukan kode , dengan memasukan kode tersebut anda akan mendapatkan reward dolar dari whaff sebesar 0.3 dolar.
  3. Sukai atau like fanpage facebook whaff yang ada di sudut kanan atas (simbol jempol), maka akan mendapatkan 0.3 dolar
  4. Tambahkan google plus whaff kelingkaran mu, nanti akan mendapatkan 0.1 dolar.

Tips promosi
  1. Tips yang pertama membuat artikel tentang whaff seperti yang saya lakukan ini dan jangan lupa untuk menyertakan kode undangan anda
  2. Yang kedua maksimalkanlah fitur Invite friends dari whaff, di menu itu ada banyak pilihan cara mengundang teman baik melalui facebook, line, ig dll
  3. Gunakan fitur auto post ke grup, agar tidak menyita waktu anda, dan anda dapat menyetel setiap berapa jam muncul postingan anda. untuk menggunakan fitur ini cari aja di mbah gugel.

Mengambil pembayaran whaff
  1. Tekan menu atau lambang garis tiga di pojok kiri atas kemudian pilih pembayaran
  2. Setelah itu akan muncul beberapa pilihan penawaran cara pembayarannya dengan minimal nomilal masing-masing, di sini saya memilih paypal dengan minimal saldo $10.5
  3. Lalu akan muncul jendela baru, pilihlah sesuai dengan saldo yang anda miliki, jika sudah kemudian masukkan email paypal anda dan tekan permintaan
  4. Uang akan terkirim dalam waktu 1 sampai 4 hari (tidak termasuk hari libur)

Mungkin banyak yang berpendapat bahwa whaff penipuan, whaff scam, whaff tidak membayar dan pendapat pendapat negatif lain yang saat ini tidak terbukti benar,termasuk saya ini yang baru mendaftar.Tapi tidak ada salahnya kita mencoba,yang membuat saya yakin ini membayar adalah kita tidak mengeluarkan modal duluan seperti bisnis online lainya dan di whaff semuanya masuk akal karena ini program periklanan..

Bagaimana aplikasi WHAFF Reward bisa membayar ?
WHAFF reward membayar dari pengembang aplikasi yang aplikasinya yang ingin di download dan dimainkan jadi pengembang aplikasi membayar kepada WHAFF reward untuk menaruh aplikasi nya yang kemudian akan kita download di smartphone android kita.

Apakah WHAFF Reward tidak berbenturan dengan google playstore
sebagai pengembang aplikasi android ?
jelas tidak, karena WHAFF reward juga akan mengalihkan link download nya ke google playstore, dan aplikasi WHAFF reward ini juga terdaftar dan dapat didownload di google playstore.

Apakah WHAFF Reward benar benar membayar ?
aplikasi ini terbukti membayar bisa di cek di pencarian google mengenai aplikasi whaff reward ini.
Sampai saat ini whaff memang sebuah program yang benar benar membayar penggunanya dan murni bukan program scam atau penipuan. Sudah ribuan atau mungkin bahkan jutaan dolar yang telah dibayarkan oleh pihak whaff kepada para penggunanya.

Bukti bukti pembayaran whaff juga sudah banyak dipublikasikan di Internet, ada yang sudah mendapatkan puluhan dolar, ratusan dolar, bahkan sudah ada yang tembus sampai ribuan dolar hanya dengan mengandalkan ponsel / tablet Android untuk menjalankan program Whaff. Jika diamati, sebenarnya cara kerja whaff sangat mudah dan simpel, cukup download aplikasi, jalankan, kemudian earning dalam mata uang dolar akan bertambah. Tentunya ini sudah terbukti dan bukan penipuan ataupun scam

Bagi kamu yang belum mencoba bisnis whaff dan ingin mencoba peruntungan dengan menjalankan Whaff Rewards, kamu bisa mulai mendaftar whaff, dan masukkan invite kode ini AW61152 (Huruf Kapital Semua) untuk mendapatkan dolar pertama secara Gratis, senilai 0,30 USD. Jika ingin dolar lebih banyak, cukup jalankan apa yang disarankan oleh whaff didalam akun whaff, mudah bukan ?

Masih berfikir jika whaff menipu, program scam atau tidak membayar ? Anda tidak perlu khawatir, sampai saat ini whaff masih membayar, dan semoga akan terus membayar. Inilah solusi bagi kamu yang ingin mendapatkan uang dengan mudah hanya bermodalkan hp Android.


Kesimpulan

Oke mungkin cukup sekian dulu yang dapat saya bagikan kepada agan-agan semua, untuk memulai bisnis dengan aplikasi whaff ini kuncinya adalah sabar dan terus berusaha agar membuahkan hasil yang maksimal gunakan semua daya upaya dan tenaga yang agan punya untuk benar-benar menekuni bisnis ini, saya juga masih belajar sama kayak agan-agan jadi mari kita saling berbagi karena berbagi sebagian dari iman :D

NB : Untuk keterangan gambar bisa menyusul di lain waktu, jika masih kurang jelas atau perlu bertanya silahkan komen saja di bawah akan saya jawab sebisa saya dan tentunya menggunkan bahasa yang baik dan sopan ya gan :v :v


Download Corel Draw X6 Full Version

Pengertian Dan Fungsi Corel Draw. Anda sudah mengenal program ini, software ini memiliki fungsi dasar untuk membuat sebuah gambar, jadi jika anda hobi menggambar atau mendesain dapat menggunakan softwere ini. Software ini yang dikenal dengan nama corel draw update terakhir versi X6. Corel draw ini memiliki feature seperti smart drawing tool, table, quick start, save as template dan sebagainya.

Dalam keunggulan corel draw di banding software lain adalah sebagai Berikut:

1. penggunaan tool-toolnya yang sangat mudah sehingga dapat dipahami bagi orang yang baru belajar mendesain.
2. Gambar yang dihasilkan berbasis vektor dapat ditekan hingga menjadi paling rendah.
3. Banyak pengguna dari software ini, sehingga memungkinkan bagi anda untuk belajar di sebuah blog karena sudah banyak yang menyajikan cara menggunkan program ini. 
4. Dengan mengguakan program ini anda dapat membuat atau mengkreasikan berbagai desain seperti logoo, banner, dan undangan.
Dan berikut screenshot Corel Draw X6 :
Menu-menu pada Corel Draw X6:
TITLE BAR
Memberi informasi tentang nama file dan aplikasi yang sedang dibuka. Pada ujung pojok kanan atas terdapat tombol Maximize Button untuk membuat tampilan CorelDRAW satu layar penuh, Minimize button untuk meletakkan program pada Taskbar menu, sedangkan Close button untuk mengakhiri program.
MENU BAR


Download VMware Workstation 10 Full Version

Assalamuallaikum WR.WB.
Apa kabarnya yang disana ? pastinya dalam keadaan sehat walafiat kan “amiin” hehehe :D
Pada kesempatan kali ini saya ingin berbagi sedikit mengenai software VMware workstation 10,yang terbaru ni ceritanya :v
Oke langsung saja kita simak penjelasan sedikit mengenai VMware workstation dibawah ini :
VMware Workstation adalah sebuah perangkat lunak mesin virtual untuk arsitektur komputer x86 dan x86-64 dari VMware,
sebuah bagian dariEMC Corporation. Perangkat lunak ini digunakan untuk membuat banyak x86 dan x86-64 komputer
virtual dan digunakan secara simultan dengan sistem operasi yang digunakan. Setiap mesin virtual tersebut bisa menjalankan
sistem operasi yang dipilih, seperti Windows, Linux,varian BSD dan lain sebagainya. Dalam arti yang sederhana, VMware


Download Eset Smart Security 7-64 Bit

Assalamuallaikum WR.WB. apakabar kalian semua,senoga masih dalam lindungan tuhan pastinya,oke kali ini saya akan berbagi sedikit mengenai ESET Antivirus termutakhir saat ini,weeew alay sekalee hahaha,.... pada posting kali ini saya akan berbagi link download Eset smart security 7-64 bit sebelumnya mari kita simak sedikit penjelasan mengenai Eset smart security berikut ini 

Eset memang merupakan salah satu antivirus idola para pengguna komputer di waktu sekarang ini. Banyak orang yang menyukai Antivirus ini karena memang Eset adalah salah satu antivirus yang sangat ringan, sehingga tidak terlalu membebani PC kita.
Kalau kebanyakan Antivirus yang lain hanyalah menambah berat PC kita, tetapi tetap saja virus pada masuk ke komputer kita, entah lewat flashdisk maupun lewat internet.

Menu-Menu Pada BIOS Beserta Penjelasannya

Oke kali ini saya akan berbagi sedikit mengenai fungsi menu pada BIOS,yaa walaupun gk begitu penting yang pasti saya hanya ingin sekedar berbagi,yaa gk ?
disini saya akan menjelaskan menu BIOS Lenovo G405s bererta sedikit penjelasannya,langsung aja simak dibwah ini :

Untuk mengoperasikan BIOS pada laptop saya berikut ini adalah tombol-tombol yang di gunakan beserta fungsinya yang pertama adalah tombol F1 digunakan untuk memanggil bantuan / panduan umum jika anda kebingungan sewaktu mengoperasikan BIOS ini,esc untuk keluar ke menu sebelumnya,anak panah di gunakan untuk memilih menu yang akan di buka,enter di gunakan untuk masuk ke menu yang telah dipilih,F5/F6 digunakan untuk mengganti Value berupa disable / enable,F9 digunakan untuk mengembalikan settingan BIOS pada semula,F10 di gunakan untuk keluar dan menyimpan settingan BIOS.Dan berikut ini adalah gambar menu-menu BIOS beserta penjelasannya :


Pada menu information kita dapat mengetahui informasi tentang PC / latop yang sedang kita pakai.Pada gambar diatas menunjukkan Product name adalah lenovo G405s,bios version 83CN16WW(v1.05),dan lain-lain.Pada menu ini informasi sederhana pada PC / Laptop anda dapat diketahui.