9,050 reputation
22864
bio website
location Bangalore, India
age 27
visits member for 3 years, 11 months
seen 2 hours ago
stats profile views 778

Works as a software developer for Capillary Technologies. Lives in Bangalore, India. When not making software; reads books, plays drums, listens to music and browses Reddit.

Work language: Java

Quick-and-dirty language: Python

Current-trying-to-learn language: Haskell

LinkedIn

Github

Twitter


May
20
comment Examples of GoF Design Patterns
Now that this post is closed I wonder if it will be deleted soon. The answer is just too good to be lost.
May
4
comment @PreDestroy method of a Spring singleton bean not called
@DmitriPisarenko The best place would be where you initialize your spring application context.
May
3
comment Algorithm to calculate how much of text A is in text B?
Try diff match patch?
Mar
31
comment Exception : java.lang.ClassCastException: [B cannot be cast to java.io.ObjectStreamClass
What is the type of the output1 object?
Mar
31
comment Would it make sense to specify complexity as O(fibonacci(n))?
If the "process" step is of equal length then this algorithm will finish asymptotically in log n steps.
Mar
31
comment autowiring in executable jar file
Are you adding all the required components in the classpath of your executable when you run it from the command line?
Mar
31
comment How to make thread-safe HashMap without locking `get()` method?
You could just use a ReadWriteLock. Take the write lock for the put operation and a read lock for get operation. Write locks are exclusive while the read locks are not.
Mar
28
comment reaching elements of tuple by index number in Haskell
Related (maybe duplicate) Haskell - Accessing a Specific Element in a Tuple
Mar
28
comment Hibernate: migrating from 3.6.9 to 4.2
Why don't you use the JPA EntityListener annotation? I believe they serve the same purpose.
Mar
26
comment Parsing String to Date without using SimpleDateFormat?
Why can't you use SimpleDateFormat?
Mar
20
comment Eclipse not seeing configs inside a folder inside src
Can you post a screenshot of the package manager pane in eclipse?
Mar
16
comment Connecting to SQL via JDBC to an IP hosting MySQL Server
Try to connect to the mysql server using the mysql command line client from the machine you are running this code on and see if it works.
Mar
15
comment Is there any good dynamic SQL builder library in Java?
@TimoWestkämper can you point me to the methods to do that? I went through the javadocs and the code but couldn't find anything.
Mar
14
comment Is there any good dynamic SQL builder library in Java?
The problem with QueryDsl is that you can't use it as a pure query generator as it does not give you the generated query itself. It will generate the query and execute it for you too. You can't get one without another.
Mar
14
comment Eclipse automatic create new functions/methods
I know for sure that the Java IDE in eclipse provides this feature. Not sure about the php IDE though.
Mar
14
comment I am wondering why this small program takes O(N) to proceed
What is the N here?
Mar
14
comment How to cache data in Spring MVC web application within more HTTP requests?
Well, it is equivalent to storing data in javax.servlet.http.HttpSession which is also session scoped. Spring caching does not have a scope bound to it. You can decide the scope for yourself.
Mar
12
comment Spring @Cacheable Not Working
I think something is wrong with your ehcache.xml. Please post it too.
Mar
6
comment Specifying the distribution section outside the pom.xml
Run mvn deploy-file directly from command line. See this for details.
Mar
6
comment split on string
try: split(" & ")