Setting Up Python Development Environment In Your Windows Machine
Setting Up Python Development Environment In Your Windows Machine
Jul 7, 2016
There are some steps before build a Python application in your Windows. Let's start!
1. install Git
I thought almost everyone uses Git as a primary source code management. For Windows. You can download the installation file directly from their website:
https://git-scm.com/download/win.
With this tutorial, I will do everything in Git-Bash :)
Read More : Setting Up Python Development Environment In Your Windows Machine
How do we can start a Java application as a service in Linux Environment
How do we can start a Java application as a service in Linux Environment
Jul 13, 2015
Normally, if we want to start application as service. we can do it by creating a script in this path
/etc/init.d
Let's say, I would like to start my Java application. I will write a script like this.
Read More : How do we can start a Java application as a service in Linux Environment
Creating Spring Boot Application with Gradle
Creating Spring Boot Application with Gradle
Jul 4, 2015
Actually I heard about Gradle long time ago and I know Android application use it as a building system. So I think it's quite interesting to study it. how can we use it for building a normal Java application.
First of all , You have to install it (off course). you can download it directly from their website.
https://gradle.org
Read More : Creating Spring Boot Application with Gradle
(Just) Using Maven with Google AppEngine.
(Just) Using Maven with Google AppEngine.
Apr 28, 2015
It's shame to say that this website was build with very old school java style ... Previously , every libraries in this website have to be a jar file and put it together in the single directory. After that I have to do some of setting in Eclipse for using it.
Actually , it's a heritage from the early version of Google AppEngine on Java. At that time , it does not support Maven yet. I have another project that already build with maven but I don't have time to go back and fix it in this web (a little bit busy guy). But for now , it's very difficult (and pain) for me to introduce a new library or upgrade a version in this project. So I have to fix it 😄 . Google AppEngine in maven plugin is handy for a java developer like me.
But one more thing, A new version of java is coming (words of my house). Currently , Google AppEngine only supports Java 7. It would be a great success , if we can use a new version of Java in the future (I wish). 😄
TAIS : Thailand Amphibian Information System (when I was yong 😄)
TAIS : Thailand Amphibian Information System (when I was yong 😄)
Nov 30, 2014
I just realized that I had a project when I was a student in the university. I thought it was created for 3 years ago. The project named TAIS (Thailand Amphibian Information System). I created this project because I wanted to created a system that can search relation between the animal by using information from Biological Classification (Taxonomy) with W3C semantic technology.
This system used Java with Google AppEngine. I thought Google AppEngine was very good for scaling but it had a lot of limitation. This made this work more difficult than I expected. I had to used a lot of service from Google AppEngine to archive my goal such as Memcache , Task Queues , Backend , ETC ...
Read More : TAIS : Thailand Amphibian Information System (when I was yong 😄)