JEP411: Missing use-case: Monitoring / restricting libraries

2021-05-31 Thread Harshad RJ
ties in advance, which is impossible, as the capabilities provided by the JVM or the standard library might grow in a future version. Thirdly, using Java agents with bytecode manipulation, as suggested on this list, doesn't seem any easier than using the SecurityManager. best, -- Harshad RJ

Re: Abandon 0.3.0

2016-09-07 Thread Harshad RJ
do the line numbers indicate pre-processed input or actual input?​ -- *Harshad RJ <http://lavadip.com>* -- --- You received this message because you are subscribed to the Google Groups "Ledger" group. To unsubscribe from this group and stop receiving emails fr

Abandon 0.3.0

2016-09-07 Thread Harshad RJ
milar syntax for it across the board. ​cheers,​ -- *Harshad RJ <http://lavadip.com>* -- --- You received this message because you are subscribed to the Google Groups "Ledger" group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+

Re: [h2] Database corruption on 1.3.176: any suggestions on how to avoid?

2015-07-04 Thread Harshad RJ
On Monday, 29 June 2015 03:55:44 UTC+5:30, Nicolas Barbier wrote: 2015-06-28 Nicolas Barbier nicolas...@gmail.com javascript:: I guess it would be good to perform some strace-testing on a trivial testcase, to check whether H2 indeed behaves as I expect it to (i.e., that it omits calls

Re: [h2] ram usage in h2

2015-06-14 Thread Harshad RJ
Looks like this issue was fixed by this commit https://github.com/h2database/h2database/commit/7352ba5db945682d785b7a2da62160c712dbcd37. Thanks! Aside, I think confirmed bugs like these should be tracked as an issue on Github. On Wednesday, 10 June 2015 11:42:07 UTC+5:30, Thomas Mueller

[h2] Inserting an Array of primitive int

2015-05-11 Thread Harshad RJ
be confusing (I spent a day in figuring it out because I thought the problem is in other layers). Can you please support primitive arrays as well? ​thanks,​ -- *Harshad RJ http://lavadip.com* -- You received this message because you are subscribed to the Google Groups H2 Database group. To unsubscribe

Re: [h2] Simple CTE (not recursive) with a custom function

2015-04-07 Thread Harshad RJ
the count). ​thanks for looking,​ -- *Harshad RJ http://lavadip.com* -- You received this message because you are subscribed to the Google Groups H2 Database group. To unsubscribe from this group and stop receiving emails from it, send an email to h2-database+unsubscr...@googlegroups.com

Re: [h2] Simple CTE (not recursive) with a custom function

2015-04-04 Thread Harshad RJ
(name, 'xyz') as dist from person where dist 0.1; I can repeat the expression in the WHERE clause like this: select distance(name, 'xyz') as dist from person where distance(name, 'xyz') 0.1; And that works, but takes more time. -- *Harshad RJ http://lavadip.com* -- You received

Re: [h2] Simple CTE (not recursive) with a custom function

2015-04-04 Thread Harshad RJ
150,000? Does some optimisation kick in after a certain number of rows have been processed? ​thanks, -- *Harshad RJ http://lavadip.com* -- You received this message because you are subscribed to the Google Groups H2 Database group. To unsubscribe from this group and stop receiving emails from

Re: [h2] Simple CTE (not recursive) with a custom function

2015-04-04 Thread Harshad RJ
On Sun, Apr 5, 2015 at 12:21 AM, Harshad RJ harshad...@gmail.com wrote: However, when I add the WHERE clause, which repeats the call to the custom function, I get a count of 150,000 and sometimes it is 160,000! ​I forgot to mention: it is an atomic counter. There is no race condition

Re: [h2] Simple CTE (not recursive) with a custom function

2015-04-04 Thread Harshad RJ
.​ -- *Harshad RJ http://lavadip.com* -- You received this message because you are subscribed to the Google Groups H2 Database group. To unsubscribe from this group and stop receiving emails from it, send an email to h2-database+unsubscr...@googlegroups.com. To post to this group, send email to h2

[h2] Simple CTE (not recursive) with a custom function

2015-04-03 Thread Harshad RJ
Hi, I have created a custom function called SIMILARITY to measure similarity between two strings. It works fine when I use it like this: SELECT name, SIMILARITY(name, 'alex') AS siml FROM Person ORDER BY siml DESC LIMIT 10; However, when querying a large table, this is slow. To speed

[h2] Re: Simple CTE (not recursive) with a custom function

2015-04-03 Thread Harshad RJ
00:54:59 UTC+5:30, Harshad RJ wrote: WITH cte(name, siml) AS ( SELECT name, SIMILARITY(name, 'alex') AS siml FROM Person ) SELECT * FROM cte WHERE cte.siml 0.1 ORDER BY cte.siml DESC LIMIT 10; Is support for this simple CTE possible in the near future? It would help

Re: [h2] Version 1.4.181 has changed the temp file location?

2015-01-14 Thread Harshad RJ
first coded the permissions, I didn't realize there would be so many files used by h2.​ -- *Harshad RJ http://lavadip.com* -- You received this message because you are subscribed to the Google Groups H2 Database group. To unsubscribe from this group and stop receiving emails from it, send

Re: [h2] Version 1.4.181 has changed the temp file location?

2015-01-14 Thread Harshad RJ
) ​best,​ -- *Harshad RJ http://lavadip.com* -- You received this message because you are subscribed to the Google Groups H2 Database group. To unsubscribe from this group and stop receiving emails from it, send an email to h2-database+unsubscr...@googlegroups.com. To post to this group, send email

Re: [h2] Version 1.4.181 has changed the temp file location?

2014-12-31 Thread Harshad RJ
, it would be great if h2 provided a list of suffixes in Constants.java. Upgrading to a newer version would then be easier and more reliable. thanks! On Tuesday, 26 August 2014 13:14:21 UTC+5:30, Harshad RJ wrote: Indeed would be great if there is documentation on that. Would be even more awesome

Re: About JDK-8042694

2014-09-10 Thread Harshad RJ
. ​best,​ -- *Harshad RJ http://lavadip.com*

Re: [h2] Version 1.4.181 has changed the temp file location?

2014-08-26 Thread Harshad RJ
Indeed would be great if there is documentation on that. Would be even more awesome if Constants.java added a constant for that suffix string. thanks, Harshad On Tuesday, 26 August 2014 00:22:41 UTC+5:30, Thomas Mueller wrote: Hi, The newest version of H2 has a new mechanism to compact

[h2] Version 1.4.181 has changed the temp file location?

2014-08-25 Thread Harshad RJ
After updating to version 1.4.181 I see this exception: Caused by: java.security.AccessControlException: access denied (java.io.FilePermission /path_to_db/dbname.h2.mv.db.tempFile read) at java.security.AccessControlContext.checkPermission(AccessControlContext.java:457) at

About JDK-8042694

2014-08-15 Thread Harshad RJ
find a way to register on the JIRA site, hence posting here. I would like to know why was the bug closed as won't fix? ​thanks,​ -- *Harshad RJ http://lavadip.com*

Re: Shutdown

2014-08-10 Thread harshad . rj
On Wednesday, 6 August 2014 20:33:16 UTC+5:30, Lukas Eder wrote: I'm not sure what you mean by the lifecycle of jOOQ itself. jOOQ doesn't really have such a lifecycle, nor does it bind resources... Ah ok. So, I can just close the jdbc connection before System.exit() ? If so, can I get the

Shutdown

2014-08-06 Thread harshad . rj
Hi, What is the idiomatic way to shutdown jOOQ and associated connections? I am using H2, which adds a shutdown hook, but there are cases when the shutdown hook doesn't work correctly (for example in a JNLP container). I could close the connection directly, but I guess the proper way is to ask

Re: Inconsistent results.

2014-06-23 Thread Harshad RJ
.​ It will make it easier to report bugs. -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr...@googlegroups.com

Re: Sub account balancing problem

2014-05-29 Thread Harshad RJ
is only shown whenever the *self* amount is non-zero. And when the self amount is non-zero the account is never folded.​ -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop

Re: [GSoC'14] Adding fixed precision support and extending test suite for Ledger-CLI

2014-05-10 Thread Harshad RJ
, or a configuration setting, etc. Example, if I enter round(2/3, 4) it would be evaluated to mean 0.6667. *External* means, computed entirely by user; the app takes the entered number at face value. If I enter 0.1 BTC, then that is what will be processed and reported.​ ​ -- *Harshad RJ http

Re: Doc build failure

2014-04-27 Thread Harshad RJ
. I would gladly help. OpenShift is from RedHat, so you can guess what OS it is based upon. It won't be able to test all environments, but that was not a big deal for *abandon* (since it is Java based). -- *Harshad RJ http://lavadip.com* -- --- You received this message because you

Disabling extensions

2014-03-19 Thread Harshad RJ
)) However, it would be nicer to disable their creation itself. thanks, -- Harshad RJ

WebEngine PolicyClient

2014-03-15 Thread Harshad RJ
Hi, I have been playing with the WebView / WebEngine and wanted more control over navigation actions of the user. I noticed that WebPage.java has a PolicyClient, but is set to null by WebEngine. Have two questions: * Even if I modify WebEngine and set the PolicyClient, it doesn't receive any

Re: WebEngine PolicyClient

2014-03-15 Thread Harshad RJ
On Sat, Mar 15, 2014 at 11:31 AM, Harshad RJ hrj...@gmail.com wrote: Even if I modify WebEngine and set the PolicyClient, it doesn't receive any callbacks. Is it disabled somewhere else? I looked at WebPage.java and found that the corresponding fwk* functions don't get called. Sorry, I

Re: Conceptmap for ledger software environment for your review

2014-03-11 Thread Harshad RJ
receiving emails from it, send an email to ledger-cli+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout. -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from

Re: Is there an official ledger 3.0 release?

2014-03-07 Thread Harshad RJ
seems to have been tagged in the 2.x series. So it might be doubly confusing for new users when a 3.0 tag is missing. To add the tag someone with push privilege just needs to do this: git tag -a v3.0 -m 'ledger v3.0' git push origin --tags -- *Harshad RJ http://lavadip.com* -- --- You

Re: Reckon wants your csv files

2014-03-03 Thread Harshad RJ
to retain this meta-data somewhere, to help with the recognition / identification step? Recognition from a filename or contents alone seems flaky to me. -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group

Re: Events... registers... hmmmm

2013-12-10 Thread Harshad RJ
tag ? (I read your email in a hurry, sorry) -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr

Re: Ledger CLI in Wikipedia

2013-09-19 Thread Harshad RJ
...@newartisans.com wrote: Harshad RJ harshad...@gmail.com writes: I came across this page by chance: http://en.wikipedia.org/wiki/Comparison_of_accounting_software Any idea why ledger-cli isn't on the list? Has anyone submitted it before? Be the first! :) John -- --- You received

Re: Adjustments

2013-08-06 Thread Harshad RJ
an internal detail of the implementation? Different parsers work differently, especially in the context of included files. I think, in the very least, parse order needs to be re-defined in user terms, independent of implementation details. -- *Harshad RJ http://lavadip.com* -- --- You received

Re: Adjustments

2013-08-04 Thread Harshad RJ
it finds such cases - user then needs to manually order the specification using numbers or time, etc - alternatively, user opts for auto-ordering using a command line flag. This is not on by default. -- *Harshad RJ http://lavadip.com* -- --- You received this message because you

Re: Adjustments

2013-08-03 Thread Harshad RJ
mean to criticize. Just trying to understand the reasons for ledger's behavior so that I can avoid unseen pitfalls in date-ordered processing. -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from

Re: Adjustments

2013-08-02 Thread Harshad RJ
as possible. It would be great if other ledgers also could agree on this. cheers, -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: Beginning and ending dates

2013-07-26 Thread Harshad RJ
On Sat, Jul 27, 2013 at 11:02 AM, John Wiegley jo...@newartisans.comwrote: What is a new name for an inclusive end? until? -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group

Re: Re: Announcing: Abandon

2013-07-15 Thread Harshad RJ
, except where it helps make the syntax more regular. cheers, -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli

Re: Re: Announcing: Abandon

2013-07-15 Thread Harshad RJ
On Mon, Jul 15, 2013 at 12:26 PM, Harshad RJ harshad...@gmail.com wrote: For example, SVG https://en.wikipedia.org/wiki/Scalable_Vector_Graphicsis a declarative language. It allows me to write: circle r=10px cx=20px cy=20px / I forgot to elaborate further. There is an interactive editor

Re: Announcing: Abandon

2013-07-14 Thread Harshad RJ
, but that is not a consideration for me right now. best, -- *Harshad RJ http://lavadip.com* -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr

Announcing: Abandon

2013-05-31 Thread Harshad RJ
of which is currency support. The reason I am sharing this is that somebody might have a similar use-case as mine and could benefit from it. And oh, I would benefit too from any criticisms and ideas :) cheers, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you

Re: Announcing: Abandon

2013-05-31 Thread Harshad RJ
Btw, here are a bunch of screenshots of the GUI and the CLI: http://imgur.com/a/GLhV5#0 -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send

Re: encryption

2013-04-11 Thread Harshad RJ
On Thu, Apr 11, 2013 at 10:48 AM, Harshad RJ harshad...@gmail.com wrote: 1. Since the encrypted files are stored individually (not as an archive), they can be rsynced efficiently for backup and transport. Btw, dropbox uses a similar protocol for syncing files to its cloud storage

Re: encryption

2013-04-10 Thread Harshad RJ
paranoid users. -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr...@googlegroups.com. For more options

Re: Minor bug: variable names with underscores

2013-03-21 Thread Harshad RJ
checks for std::isalnum(c) || c == '_' It looks like it should accept (in regex): [_a-zA-Z0-9]+ So, the problem is probably at a higher level. -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe

Re: Minor bug: variable names with underscores

2013-03-21 Thread Harshad RJ
2012/5/1 ; Receiving a payment here BankAccout INVOICE_1 * TDS Assets:TDS INVOICE_1 * (1 - TDS) Debtor:XYZ If there is a better way to do it, please let me know. thanks, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed

Re: Tips for reconciling accounts for a first timer?

2013-03-21 Thread Harshad RJ
or template engines like m4, freemarker, etc. I didn't have the time to explore a new system, so I wrote the script instead. -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group

Minor bug: variable names with underscores

2013-03-20 Thread Harshad RJ
Hi developers, I had raised this bug a while back: http://bugs.ledger-cli.org/show_bug.cgi?id=902 It keeps biting me once in a while. I guess this is a minor one to fix (for someone in the know). Can you please fix it? thanks, -- *Harshad RJ* http://lavadip.com -- --- You received

Re: Minor bug: variable names with underscores

2013-03-20 Thread Harshad RJ
. Do you have a lexial analyser in ledger? This sounds more like a bug with the lexer while tokenising the input. -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving

Re: Bugzilla should be MUCH speedier now

2013-03-18 Thread Harshad RJ
On Tue, Mar 19, 2013 at 3:28 AM, John Wiegley jo...@newartisans.com wrote: making everything slow and swappy. Is it a Linux OS? Have you configured vm.swappiness? It is very high on most linux systems by default. It is the first thing I configure when bringing up a new machine / VPS -- Harshad

Re: ledger xml output fixed (tune in on structure, naming, …!)

2013-03-13 Thread Harshad RJ
On Thu, Mar 14, 2013 at 1:45 AM, Johann Klähn kljoh...@gmail.com wrote: Something similar is already possible using tags (see below). The metadata thing works great for me! Thanks Johann! -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed

Referring to an account's amount

2013-03-12 Thread Harshad RJ
work ofcourse, and I am not able to figure it out from the docs. Please help! thanks, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send

Re: Referring to an account's amount

2013-03-12 Thread Harshad RJ
(profit * -0.3) BankAccount Another question: Is there a way to print an expression when ledger is evaluating the file? I would like to know the value of *profit* for example. -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed

Re: Balance report with second level accounts

2013-03-07 Thread Harshad RJ
to decide if we need JSON support or not. At this point, xml seems like the best option to get data out of ledger-cli. JSON would be fine too, but it has the same bug as xml. Johann, can you please give me the fix for xml? If you share a branch on github I can pull it into my repo. -- *Harshad RJ

Re: Balance report with second level accounts

2013-03-06 Thread Harshad RJ
On Thu, Mar 7, 2013 at 1:40 AM, Craig Earls ender...@gmail.com wrote: Try ./acprep opt update --python Still doesn't work. Is this supposed to be done in the pydev branch? I am currently on next branch -- *Harshad RJ* http://lavadip.com -- --- You received this message because you

Re: Balance report with second level accounts

2013-03-06 Thread Harshad RJ
On Thu, Mar 7, 2013 at 4:06 AM, Johann Klähn kljoh...@gmail.com wrote: On Wed, Mar 6, 2013 at 8:57 PM, Harshad RJ harshad...@gmail.com wrote: I am hoping that atleast the code is stable. I tried solving the xml bug first, but that was a dead end. Looks like the xml is emitted by boost, so

Balance report with second level accounts

2013-03-05 Thread Harshad RJ
, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr...@googlegroups.com. For more options, visit https

Re: Balance report with second level accounts

2013-03-05 Thread Harshad RJ
- Expenses). -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr...@googlegroups.com. For more options, visit https

Re: Balance report with second level accounts

2013-03-05 Thread Harshad RJ
Thanks Craig, but I understood Martin's email :) Btw, is ledger xml not maintained? I see only a few accounts and a few transactions. I can make a detailed bug report if needed. PS. This mailing list is one of the best I have seen; very helpful indeed! -- *Harshad RJ* http://lavadip.com

Re: Balance report with second level accounts

2013-03-05 Thread Harshad RJ
. xml is maintained, but there have been problems reported, let us know what you are seeing. Bug reports to bugs.ledger-cli.org Created http://bugs.ledger-cli.org/show_bug.cgi?id=909 best, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed

Re: On the subject of dates

2013-02-27 Thread Harshad RJ
, the output of ledger uses the former, so it makes sense to support it in the input as well. cheers, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from

Re: On the subject of dates

2013-02-27 Thread Harshad RJ
, So, La, Ti] Here Do will be equivalent to 1 and Ti will be 7 -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli

Re: On the subject of dates

2013-02-27 Thread Harshad RJ
with this I am not sure what sort you are referring to. The dates would still be treated as dates; it is just a change in the parser that I am proposing. When 2013-Feb-27 is parsed, it can be recorded as 2013-2-27 in the AST. -- *Harshad RJ* http://lavadip.com -- --- You received this message because

Separate group for Ledger Mode?

2013-02-16 Thread Harshad RJ
Hi, A request. Would it be fine to create a separate group for ledger mode (which I guess is something to do specifically with emacs). I don't want to filter out ledger group messages from my inbox, but the volume of ledger mode messages is preventing me from doing that. thanks, -- *Harshad RJ

Re: Separate group for Ledger Mode?

2013-02-16 Thread Harshad RJ
accounts. But I am trying to convert other people into using ledger and those would be heavier users. cheers, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails

Re: Declaring TODO file bankruptcy

2013-02-11 Thread Harshad RJ
Github allows you to disable issue tracking for a repo. -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr

Re: Declaring TODO file bankruptcy

2013-02-11 Thread Harshad RJ
of the project. That said, I much prefer Github issue tracker than bugzilla. It has fewer features, but it gets work done faster IMO. -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from

Running totals in Register

2013-02-10 Thread Harshad RJ
Hi, I am new to ledger and accounting as well. I am confused by the output of register command. Let's assume this is my ledger file: 2013-1-1 Opening Balance Account 1 Equity 2013-1-2 Yogurt Expense:Food 100 Account The register command gives the following output: 13-Jan-01

Re: Running totals in Register

2013-02-10 Thread Harshad RJ
total of the report is equal to the current total for that account. Unfortunately, this will only work when only one account is selected. Would be nice if there was an option to show the *current* total for an account in the register report. cheers, -- *Harshad RJ* http://lavadip.com -- --- You

Output to multiple destinations

2013-02-10 Thread Harshad RJ
twice, only the last one is effective. I could run the ledger command twice, but it would feel more right to run it once with two destination outputs. thanks, -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group

Re: Output to multiple destinations

2013-02-10 Thread Harshad RJ
? -- *Harshad RJ* http://lavadip.com -- --- You received this message because you are subscribed to the Google Groups Ledger group. To unsubscribe from this group and stop receiving emails from it, send an email to ledger-cli+unsubscr...@googlegroups.com. For more options, visit https

Re: [Talk-in] What just happened?

2013-01-26 Thread Harshad RJ
://tiles.mapbox.com/planemad/map/India-OSM-test#6.00/22.177/80.068 -- *Harshad RJ* http://lavadip.com ___ Talk-in mailing list Talk-in@openstreetmap.org http://lists.openstreetmap.org/listinfo/talk-in

Re: [Talk-in] What just happened?

2013-01-26 Thread Harshad RJ
Thanks Arun, Paramvir. Awesome work! -- *Harshad RJ* http://lavadip.com ___ Talk-in mailing list Talk-in@openstreetmap.org http://lists.openstreetmap.org/listinfo/talk-in

Re: [android-developers] Android Library Project Changes

2012-03-23 Thread Harshad RJ
equivalent of this. (I may not need it anyway since the new SDK+ADT has good Proguard support). cheers, -- Harshad RJ http://lavadip.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

Re: [android-developers] Re: lights out mode PLUS menu soft key?

2012-03-12 Thread Harshad RJ
. cheers, -- Harshad RJ http://lavadip.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr

Re: [android-developers] Re: lights out mode PLUS menu soft key?

2012-03-12 Thread Harshad RJ
have a way to go to the legacy options menu from the navigation bar on the bottom . thanks, -- Harshad RJ http://lavadip.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

Re: [google-appengine] Re: Why do custom indexes require single-property indexes?

2012-01-06 Thread Harshad RJ
It's like setUnindexedProperty is being interpreted as not only don't set single-property indexes, but also don't include the property in any custom indexes. That's correct [...] any unindexed properties are ignored for the purposes of all indexing, not just for built-in indexes. Is

Re: [appengine-java] Re: When is the ConcurrentModificationException thrown in GAE?

2012-01-03 Thread Harshad RJ
the same spot, so I took that exception as a desired failure to simulate a unique constraint. Thanks for the tip on implementing unique constraint. Glad I posted this thread. cheers, -- Harshad RJ http://lavadip.com -- You received this message because you are subscribed to the Google Groups

Re: [appengine-java] Re: When is the ConcurrentModificationException thrown in GAE?

2012-01-03 Thread Harshad RJ
On Wed, Jan 4, 2012 at 11:54 AM, Harshad RJ harshad...@gmail.com wrote: Secondly, is there a way to lock on certain Entities so that other threads will block if they are going to work on the same entities? That seems like a better approach to mean than implementing a retry logic. Sorry I

Re: [twitter-dev] lists.json API call ignoring the callback parameter as of the last few hours

2011-07-05 Thread Harshad RJ
Hi Taylor, Any updates on this issue? tDash users are not able to read their lists because of this. thanks, Harshad On Sat, Jul 2, 2011 at 12:24 AM, Taylor Singletary taylorsinglet...@twitter.com wrote: Thanks everyone, I'll report this to the team -- not quite sure what's happening.

Re: [twitter-dev] lists.json API call ignoring the callback parameter as of the last few hours

2011-07-01 Thread Harshad RJ
me loading it in a script tag. Other calls seem to still be respecting the callback parameter... any idea what might have changed ?? -- Harshad RJ http://twitter.com/h__r__j -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https

Re: [Clay] What is the type of Functions / Lambdas?

2011-04-16 Thread Harshad RJ
On Sun, Apr 17, 2011 at 1:27 AM, KS Sreeram k...@tachyon.in wrote: On Sunday 17 April 2011 at 12:16 AM, Harshad RJ wrote: As you can see, every lambda has an unique anonymous type. These lambdas are generic and don't involve any indirection via a function pointer. To create a lambda

Re: [twitter-dev] Json parse error / escape problem

2010-11-01 Thread Harshad RJ
to help? Below is the issue that I have got: -- Harshad RJ http://twitter.com/h__r__j -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list

Re: [twitter-dev] Json parse error / escape problem

2010-11-01 Thread Harshad RJ
Twitter's encoding being wrong. It is unusual but not wrong. On Mon, Nov 1, 2010 at 6:37 PM, Siqi Li siqi...@11outof10.com wrote: HI Harshad, What’s your parser? Do you write it yourself or just modifying any plug-in? Could you share the main part? cheers, -- Harshad RJ http

[twitter-dev] [OT] The Perhaps Twitter client

2010-10-28 Thread Harshad RJ
Does anyone know what the Perhaps client is all about? Seems to be popular, but the homepage shows only a (beautiful) poem: http://perha.ps/ Is it platform specific and detects my platform to show just the poem? Or is there an easter egg of some sort? -- Harshad RJ http://twitter.com/h__r__j

[twitter-dev] Are search results ordered by creation date?

2010-07-12 Thread Harshad RJ
://search.twitter.com/search.json?q=holyshow_user=trueresult_type=mixedrpp=100 thanks, -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] Are search results ordered by creation date?

2010-07-12 Thread Harshad RJ
at the in the results set metadata: {result_type: recent}, What you are seeing is the mixing of the result types. If you only want recent then use result_type=recent https://search.twitter.com/search.json?q=%22Roman%20Polanski%22result_type=recentshow_user=truerpp=100 Jonathan -- Harshad RJ

Re: [twitter-dev] Retweets of me...

2010-06-28 Thread Harshad RJ
with one API call. -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] Retweets of me...

2010-06-27 Thread Harshad RJ
://labs.poseurtech.com This email is: [ ] shareable [x] ask first [ ] private. -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] tweet source shows 'Via API' for oAuth app???

2010-06-11 Thread Harshad RJ
to this: http://www.mail-archive.com/twitter-development-talk@googlegroups.com/msg21543.html -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] Re: link wrapping on the API

2010-06-09 Thread Harshad RJ
percentage). -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] link wrapping on the API

2010-06-08 Thread Harshad RJ
Team http://twitter.com/raffi -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] Re: Annotations with data types

2010-06-07 Thread Harshad RJ
that nobody's seeing/acknowledging the magnitude of the problem. Even if the currently mentioned solutions are not ideal, including mine, I think something needs to be done to search for a solution. Or perhaps I am just over-reacting. -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] Re: Annotations with data types

2010-06-05 Thread Harshad RJ
On Sun, Jun 6, 2010 at 12:23 AM, Mark Plotnick mark.plotn...@gmail.comwrote: If you use JSON, the types should be visible after you unmarshall the data. Visible, yes. Checked, no. Every client would have to check the type before using the value. -- Harshad RJ http://hrj.wikidot.com

Re: [twitter-dev] Re: Annotations with data types

2010-06-04 Thread Harshad RJ
Hi Andre, I understand your concern. I was trying to propose one possible way of doing things. I welcome other suggestions as well, but each will have its own merits / demerits. We first need to see if the concept of a data-type is really a concern. I think it is a nice-to-have feature, as it

[twitter-dev] Annotations with data types

2010-06-03 Thread Harshad RJ
number url : A well formed URL -- Harshad RJ http://hrj.wikidot.com

[twitter-dev] Re: Annotations with data types

2010-06-03 Thread Harshad RJ
On Fri, Jun 4, 2010 at 9:41 AM, Harshad RJ harshad...@gmail.com wrote: Suggestions for data-types: int : Integer float : Floating point number url : A well formed URL To add to this list of data-types: str: To force to a string Say, you have an attribute whose label ends with _int. So

Re: [twitter-dev] Re: TWITTER BANS 3rd PARTY ADVERTISING

2010-05-24 Thread Harshad RJ
National Finals Rodeo go on sale tomorrow.) violates the TOS? -- Harshad RJ http://hrj.wikidot.com

  1   2   >