9,025 reputation
22864
bio website
location Bangalore, India
age 27
visits member for 3 years, 11 months
seen 5 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


Jan
16
comment How to get latest/top record from multiple similiar records using hibernate query methods
Does it work or not?
Jan
15
comment Get List of predefined size from RowMapper in Spring jdbcTemplate
If the select returns fewer elements than your predefined size, is it an error?
Jan
15
comment How to remove uncommon elements from two arraylist
Are the two lists sorted? Are there duplicate elements in the lists?
Jan
15
comment How to use Spring to mange mulitple “runtime noticed” database connection with different jdbc(or hibernate?)?
Do you intend to use the user entered data sources only once or store it for future usage too?
Jan
15
comment Spring contexts hierarchy
@alsid if the answer satisfies you, mark it as an accepted answer?
Jan
15
revised Java: Delete completely object
deleted 28 characters in body
Jan
15
answered How to programatically change databases in Spring with one DataSource?
Jan
14
comment Spring contexts hierarchy
I notice that your use case is exactly same as mine.
Jan
14
answered Spring contexts hierarchy
Jan
14
revised Are Trees Directed or Undirected Graphs?
added 33 characters in body
Jan
12
accepted How to keep plug-in manifest version and pom version in sync in Maven with Tycho
Jan
11
awarded  Popular Question
Jan
11
reviewed Approve suggested edit on executing programs from command prompt
Jan
11
reviewed Approve suggested edit on Wordpress API: Add / Remove Tags on Posts
Jan
10
comment Is there symbolic date in the world of programming that I can use in snippets/comments?
@Tinctorius why not? "Today" or "now" seems to be perfect exemplary values for a date to me.
Jan
10
comment Is there symbolic date in the world of programming that I can use in snippets/comments?
Generally just new Date() is used which is the current time.
Jan
9
comment Haskell simplification technique and monads
This code looks perfectly simple to me
Jan
9
comment What is the difference between Python's ElementTree.XML() and ElementTree.fromstring?
@KenB Since fromstring is defined as a direct alias for XML, you can pass the extra parameter to it too. It is just not mentioned in the doc, probably to discourage using it that way.
Jan
9
comment What is the difference between Python's ElementTree.XML() and ElementTree.fromstring?
@KenB it wouldn't be a complementary function if it took extra parameters. For when you need to pass the extra parameters, you can call the XML function directly.
Jan
9
answered What is the difference between Python's ElementTree.XML() and ElementTree.fromstring?