Welcome to Techy Tunes !

Follow Me

Mongo DB 3.x with Java

With the introduction of the new 3.x drivers mongodb team introduced new methods for good reasons. This includes db authentication too. If you are writing a new application it is always better to use the latest apis. Also, it is always good to upgrade for the latest api for the sake of maintainability. Lot's of articles explain how to connect to mongo db with java driver with deprecared methods


Continue Reading

Execute Custom Shell Script as a Command Using Aliases

As a developer you might want to work with different development environments. As an example, I had to work with Java 1.4, 1.5, 1.7 and 1.8 :D . When JDK changes all other stuff such as maven will also have to change. One thing you can do is have everything in you bashrc or bash_profile and comment and uncomment the required environment variables. Believe me, I did that for a long time. du


Continue Reading

[SOLVED] USB Dongle not Detected in Ubuntu 16.04

Below are the steps to follow. I found these steps from a forum (which I cannot find the link now) and they have missed one important thing. So, this is how I got my huawei dongle working in Ubuntu 16.04 Create a mobile broadband connection first. You can do it by Edit Connections option. In the terminal type lsusb having the dongle plugged in. Below is what I got Note the line "Bus 0


Continue Reading

Cron Expressions for Spring's CronTrigger

What is Cron ? Cron is a unix based job scheduler tool.  Can be configured to execute tasks at a specified time. We can use our java programs to make use of the Cron tool by configuring cron expressions.  Here we focus on writing cron expressions which is compatible with the Spring's CronTrigger.  Configuring these cron expressions with Spring is coming soon !!! Cr


Continue Reading

Integrate Prism Syntax Highlighter to Blogger

Prism is a really cool, simple and lightweight syntax highlighter. Prism supports bunch of languages and 6 different themes by today. First, see how prism looks. public class Main { public static void main(String[] args) { System.out.println("This is how prism looks"); } } Download Prism JS Hop into prismjs official website to download the required stuff Go to D


Continue Reading

Redirect Requests in Amazon Web Services (AWS) Platform with Apache2

I was developing some web apps with REST calls using Amazon Web Services. I did the initial stuff, such as registering and creating instances. But then , I was lost. I had some war files to deploy, so I installed Tomcat 7 and JDK to my host. Started the tomcat and called the url with the public ip that AWS gave me with the port 8080 in the browser (That's what we locally do right ? ;) ) . S


Continue Reading