Finally… Private SVN Server

 Buat para penggiat koding atau programmer pasti udah ga asing sama istilah SVN atau GIT. Yap, itu merupakan salah dua dari managemen repositori. Apa itu repositori? silahkan googling :)) Intinya adalah alat untuk mengatur dan mengelola file bersama melalui penggunaan versi. Berikut penjelasan dari Wikipedia: Apache Subversion (often abbreviated SVN, after the command name svn)

Continue reading Finally… Private SVN Server

Multiplication and Division without ‘*’ and ‘/’ in Java

Okay, so I feel challenged to solve this problem. The problem is how to make program that can calculate multiplication and division without using ‘*’ and ‘/’ as usual. This is about algorithm and math of course. At first, I think about multiplication. It can be calculate using increased looping (number 1 is added by

Continue reading Multiplication and Division without ‘*’ and ‘/’ in Java