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 780

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


Mar
14
answered How to cache data in Spring MVC web application within more HTTP requests?
Mar
13
revised php simple xml phrase multi-level tags
added 206 characters in body
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(" & ")
Mar
3
comment An algorithm to sort an array in linear time
@user2117772 get some coins of three denominations and simulate this algorithm yourself?
Mar
3
comment An algorithm to sort an array in linear time
@WillNess it will work if you don't increment current pointer in case of a red swap too, just a little less efficient.
Mar
3
answered An algorithm to sort an array in linear time
Mar
3
comment How to export jar file of a project that uses Gson jar
Use a build system like maven or ivy?
Mar
3
comment Hibernate auto Id generation with initial value
No. You can set it in your database though. Or you can set it while creating your database in the SQL script.
Mar
3
revised Maximum Entropy Models vs Maximum Likelihood in NLP
added 26 characters in body
Mar
3
answered Hibernate auto Id generation with initial value
Mar
2
comment How to return an array object without NullPointerException?
Please post the full code and the error stack trace.
Feb
26
comment How to persist large strings in a POJO?
Do you mean that instead of the whole string in the POJO, you want a sort-of-pointer to the string data in database?
Feb
26
awarded  Caucus
Feb
25
revised SockJS connection dies silently
edited tags; edited title
Feb
25
answered IndexError: list index out of range in python
Feb
21
comment Migration Spring 2.0 to Spring 3.0 , throwing Servlet Exception , Issue
Spring 2.0 to 3.2 migration is a jump of 5 years. There are so many things that could go wrong.
Feb
19
revised Joda time Hibernate : PersistentLocalDateTime.nullSafeGet
edited tags
Feb
14
comment How to structure information in classes when the information is in XML?
If you know the schema of the XML file, you can create classes mirroring the schema. If you don't know the schema and want to have a generic structure, just use the W3C DOM. Most XML parsers can directly parse to a DOM.