User baskin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:36:54Z http://stackoverflow.com/feeds/user/82413 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/744699/real-life-trading-api/1738207#1738207 2 Answer by baskin for Real life trading API baskin 2009-11-15T17:36:35Z 2009-11-15T17:36:35Z <p>Go through the links on <a href="http://ta-lib.org/hdr%5Flnk.html" rel="nofollow">this page</a>.</p> <p>Lists a number of open source api's. Haven't tried any yet, but planning to check out active-quant.</p> http://stackoverflow.com/questions/783075/creating-a-hard-link-in-java 2 Creating a Hard Link in java baskin 2009-04-23T19:01:04Z 2009-10-14T09:47:27Z <p>Currently I use '<code>ln</code>' command via <code>Runtime.exec()</code>. It works fine. The only problem is that in order to do this fork, we need twice the heap space of the application. My app is a 64 bit app with heap size around 10Gigs and thus its runs out of swap space. I couldn't find any configuration that could fix this.</p> <p>I also want not to use JNI for the same. Also I had heard somewhere that this facility will soon be provided in java 7.</p> http://stackoverflow.com/questions/1385379/why-doesnt-my-hup-signal-handler-update-the-global-variable-in-perl -1 Why doesn't my HUP signal handler update the global variable in Perl? baskin 2009-09-06T10:41:45Z 2009-09-16T22:11:12Z <p>Hello,</p> <p>I'm doing something like the following:</p> <p>I run a Perl script which has the following:</p> <pre><code># First i install a signal handler for HUP which sets a global flag. $SIG{"HUP"} = sub { print "HUP received\n"; $received_hup = 1 }; # Now i wait for HUP to be received. my $cnt = 0; for ($cnt = 0; $received_hup != 1 and $cnt &lt; 900; $cnt++) { sleep(1); } print ($received_hup == 1) ? "true" : "false"; </code></pre> <p>Then I send HUP to this perl process.</p> <p>I find that sometimes false is printed although every time "HUP received" is also printed; i.e. although the signal handler is invoked, the global variable is not modified.</p> <p>I'm not familiar with concurrency issues in Perl, so please guide me with this.</p> http://stackoverflow.com/questions/1193672/custom-java-serialization-of-message 0 Custom java serialization of message baskin 2009-07-28T12:06:39Z 2009-07-28T12:29:46Z <p>Hi,</p> <p>While writing a message on wire, I want to write down the number of bytes in the data followed by the data.</p> <p>Message format:</p> <pre><code>{num of bytes in data}{data} </code></pre> <p>I can do this by writing the data to a temporary byteArrayOutput stream and then obtaining the byte array size from it, writing the size followed by the byte array. This approach involves a lot of overhead, viz. unnecessary creation of temporary byte arrays, creation of temporary streams, etc.</p> <p>Do we have a better (considering both CPU and garbage creation) way of achieving this? </p> http://stackoverflow.com/questions/1183001/how-can-i-tail-a-zipped-file-without-reading-its-entire-contents 3 How can I tail a zipped file without reading its entire contents? baskin 2009-07-25T20:39:59Z 2009-07-26T05:33:18Z <p>I want to emulate the functionality of gzcat | tail -n.</p> <p>This would be helpful for times when there are huge files (of a few GB's or so). Can I tail the last few lines of such a file w/o reading it from the beginning? I doubt that this won't be possible since I'd guess for gzip, the encoding would depend on all the previous text.</p> <p>But still I'd like to hear if anyone has tried doing something similar - maybe investigating over a compression algorithm that could provide such a feature.</p> http://stackoverflow.com/questions/817703/java-thread-safety-object-visibility-across-threads 0 [java thread safety] Object visibility across threads baskin 2009-05-03T18:41:20Z 2009-07-16T21:07:32Z <p>Hi,</p> <p>I have a general doubt regarding publishing data and data changes across threads. Consider for example the following class.</p> <pre><code>public class DataRace { static int a = 0; public static void main() { new MyThread().start(); a = 1; } public static class MyThread extends Thread { public void run() { // Access a, b. } } } </code></pre> <p>Lets focus on main().</p> <p>Clearly </p> <pre><code>new MyThread().start(); a = 1; </code></pre> <p>There we change the shared variable a after the MyThread is started and thus may not be a thread-safe publication.</p> <pre><code>a = 1; new MyThread().start(); </code></pre> <p>However this time the change in a is safely published across the new thread, since Java Language Specification (JLS) guarantees that all variables that were visible to a thread A when it starts a thread B are visible to thread B, which is effectively like having an implicit synchronization in Thread.start().</p> <pre><code>new MyThread().start(); int b = 1; </code></pre> <p>In this case when a new variable is allocated after both the threads have been spawned, is there any guarantee that that the new variable will be safely published to all threads. i.e. if var b is accessed by the other thread, is it guaranteed to see its value as 1. Note that I'm not talking about any subsequent modifications to b after this (which certainly needs to be synchronized), but the first allocation done by the jvm.</p> <p>Thanks,</p> http://stackoverflow.com/questions/779318/die-you-threadpoolexecutor 4 Die you threadpoolexecutor baskin 2009-04-22T21:30:21Z 2009-04-22T22:12:11Z <p>I have a java.util.concurrent.Execution service - a single threaded thread pool executor. I submit certain tasks to it. If the task throws an unchecked exception the thread dies but the service ensures that a new thread is spawned and subsequent tasks are performed in that. However I do not want this feature and still want to use a threadPoolExecutor. i.e. I want the service to shutDownNow() if the task throws an unchecked exception.</p> <p>What is the best way to achieve this? Would using a custom thread factory which restricts the number of threads spawned make good sense?</p> http://stackoverflow.com/questions/746558/yaaq-monotonically-increasing-2-d-array 0 [YAAQ] Monotonically increasing 2-d array. baskin 2009-04-14T06:40:28Z 2009-04-14T13:54:43Z <p>Give an algorithm to find a given element x (give the co-ordinates), in an n by n matrix where the rows and columns are monotonically increasing.</p> <p>My thoughts: Reduce problem set size.</p> <p>In the 1st column, find the largest element &lt;= x. We know x must be in this row or after (lower). In the last column of the matrix, find the smallest element >= x. We know x must be in this row or before. Do the same thing with the first and last rows of the matrix. We have now defined a sub-matrix such that if x is in the matrix at all, it is in this sub-matrix. Now repeat the algo on this sub-matrix... Something along these lines.</p> <p>[YAAQ: Yet another arrays question.]</p> http://stackoverflow.com/questions/744981/yaaq-array-of-size-n-with-one-element-n-2-times/746425#746425 0 Answer by baskin for [YAAQ] Array of size n, with one element n/2 times.. baskin 2009-04-14T05:16:21Z 2009-04-14T05:16:21Z <p>This is what I thought initially.</p> <p>I made an attempt to keep the invariant "one element appears more than n/2 times", while reducing the problem set.</p> <p>Lets start comparing a[i], a[i+1]. If they're equal we compare a[i+i], a[i+2]. If not, we remove both a[i], a[i+1] from the array. We repeat this until i>=(current size)/2. At this point we'll have 'THE' element occupying the first (current size)/2 positions. This would maintain the invariant.</p> <p>The only caveat is that we assume that the array is in a linked list [for it to give a O(n) complexity.]</p> <p>What say folks?</p> <p>-bhupi</p> http://stackoverflow.com/questions/744981/yaaq-array-of-size-n-with-one-element-n-2-times 3 [YAAQ] Array of size n, with one element n/2 times.. baskin 2009-04-13T18:59:02Z 2009-04-14T05:16:21Z <p>Given an array of n integers, where one element appears more than n/2 times. We need to find that element in linear time and constant extra space.</p> <p>YAAQ: Yet another arrays question.</p> http://stackoverflow.com/questions/680514/object-pooling 5 Object Pooling baskin 2009-03-25T07:11:43Z 2009-03-26T21:12:43Z <p>What are the pro's and con's of maintaining a pool of frequently used objects and grab one from the pool instead of creating a new one. Something like string interning except that it will be possible for all class objects.</p> <p>For example it can be considered to be good since it saves gc time and object creation time. On the other hand it can be a synchronization bottleneck if used from multiple threads, demands explicit deallocation and introduces possibility of memory leaks. By tying up memory that could be reclaimed, it places additional pressure on the garbage collector.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/681470#681470 0 Answer by baskin for Hidden features of Eclipse baskin 2009-03-25T13:01:23Z 2009-03-25T13:01:23Z <p>One combination to rules them all.</p> <p>CTL+SHFT+L</p> <p>Get the list of all these "hidden" features.</p> http://stackoverflow.com/questions/680550/explicit-nulling 5 Explicit nulling baskin 2009-03-25T07:30:28Z 2009-03-25T11:12:41Z <p>In what situations in java is explicit nulling useful. Does it in any way assist the garbage collector by making objects unreachable or something? Is it considered to be a good practice?</p> http://stackoverflow.com/questions/1193672/custom-java-serialization-of-message/1193775#1193775 Comment by baskin on Custom java serialization of message baskin 2009-07-29T03:40:04Z 2009-07-29T03:40:04Z Thanks Bombie. This is a solution I've tried. However I also want to support java object serialization and don't want to write custom serializations for every object I write. http://stackoverflow.com/questions/817703/java-thread-safety-object-visibility-across-threads/817712#817712 Comment by baskin on [java thread safety] Object visibility across threads baskin 2009-05-04T05:43:01Z 2009-05-04T05:43:01Z &gt;&gt; &quot;reading thread doesn't use a cached value &quot; There is no point of a the reading thread caching b's value here, since it never existed before. Jon, consider e.g. final String msg = &quot;blah blah&quot;; myExecutorService.submit(new LoggingTask(msg)); Where loggingTask simple writes the msg somewhere and the executor service in not a same thread executor. You mean to say that in this case i'll have to explicitly synchronize the string 'msg'? http://stackoverflow.com/questions/817703/java-thread-safety-object-visibility-across-threads/817712#817712 Comment by baskin on [java thread safety] Object visibility across threads baskin 2009-05-03T19:36:37Z 2009-05-03T19:36:37Z When a new variable is allocated after both the threads have been spawned, is there any guarantee that that the new variable will be safely published to all threads. i.e. if var b is accessed by the other thread, is it guaranteed to see its value as 1? http://stackoverflow.com/questions/817703/java-thread-safety-object-visibility-across-threads/817728#817728 Comment by baskin on [java thread safety] Object visibility across threads baskin 2009-05-03T19:27:49Z 2009-05-03T19:27:49Z Java Language Specification (JLS) guarantees that all variables that were visible to a thread A when it starts a thread B are visible to thread B. Thus the order of invocation would matter here? http://stackoverflow.com/questions/680514/object-pooling/680526#680526 Comment by baskin on Object Pooling baskin 2009-03-27T06:00:21Z 2009-03-27T06:00:21Z Yes, I've looked at java RTS but am not inclined towards using it primarily because its not free. GC tuning also is something I've being trying out, especially playing around with CMS gc's. Its just that i'm not hitting the right optimal parameter combinations maybe. Thanks for all your help jon. http://stackoverflow.com/questions/680514/object-pooling/680526#680526 Comment by baskin on Object Pooling baskin 2009-03-25T18:43:03Z 2009-03-25T18:43:03Z I am actually interested in lowering any blockages by say stop-the-world garbage collector in a latency sensitive real time application. http://stackoverflow.com/questions/680514/object-pooling/680573#680573 Comment by baskin on Object Pooling baskin 2009-03-25T18:42:09Z 2009-03-25T18:42:09Z I am actually interested in lowering any blockages by say stop-the-world garbage collector in a latency sensitive real time application. What you say though makes a lot of sense and I do concur that benchmarks are necessary to take such a decision.