User simao - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T01:58:17Z http://stackoverflow.com/feeds/user/87191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1541228/calling-a-java-program-from-a-cocoa-application 3 Calling a Java Program from a Cocoa Application simao 2009-10-09T00:09:21Z 2009-10-09T18:49:41Z <p>Hello,</p> <p>I can't find a decent Cocoa Charting Library so I would like to use JFreechart.</p> <p>Is there any way to call a Java program from a Cocoa Application? I was thinking in writing a java application that returns an image of the chart and I would display it inside my Cocoa app.</p> <p>Thank you,</p> http://stackoverflow.com/questions/1199216/emacs-dont-create-these-files-when-not-saving-modified-buffer/1199335#1199335 0 Answer by simao for Emacs: Don't create #these# files when not saving modified buffer simao 2009-07-29T10:41:36Z 2009-07-29T10:41:36Z <p>I would advice you to use something like: </p> <pre><code>(defvar backup-dir "~/.emacs.d/backups/") (setq backup-directory-alist (list (cons "." backup-dir))) </code></pre> <p>This way you can have all backup files in one directory.</p> http://stackoverflow.com/questions/1060723/regex-replacement-with-emacs/1060769#1060769 2 Answer by simao for Regex replacement with Emacs simao 2009-06-29T21:52:59Z 2009-06-29T21:52:59Z <p>Try something like this <code>\(foo[1-4]\.txt\)</code></p> http://stackoverflow.com/questions/1025246/how-to-programatically-get-current-battery-level-with-cocoa 1 How to programatically get current battery level with COCOA simao 2009-06-22T01:55:07Z 2009-06-22T03:20:44Z <p>How can I get the current battery level using the cocoa framework running with Leopard?</p> <p>Currently I am getting it running a NSTask with: </p> <pre><code>pmset -g ps | grep -o -e [0-9]*% | sed -e 's/%//g' </code></pre> <p>But i think this is a clumsy way of doing this.</p> <p>Thanks</p> http://stackoverflow.com/questions/997681/why-use-unicode-if-your-program-is-english-only/1008690#1008690 4 Answer by simao for Why use Unicode if your program is English only? simao 2009-06-17T18:08:37Z 2009-06-17T18:08:37Z <p>Suppose your program allows me to put my name in it, on a form, a dialog, whatever, and my name can't be written with ascii characters... Even though your program is in English, the data may be in other language...</p> http://stackoverflow.com/questions/875253/dollar-sign-in-visualvm 0 Dollar sign in visualvm simao 2009-05-17T19:07:55Z 2009-05-17T22:44:43Z <p>I am trying to profile an application and I have a lot of instances of type sim.core.EndPoint$2</p> <p>When I inspect those instances I verify they are not of type sim.core.EndPoint, they seem to be an EndPoint with a few more things that shouldn't be there.</p> <p>What does a dollar sign mean after the name of a type in visualVM?</p> <p>Thank you.</p> http://stackoverflow.com/questions/875253/dollar-sign-in-visualvm/875675#875675 0 Answer by simao for Dollar sign in visualvm simao 2009-05-17T22:44:43Z 2009-05-17T22:44:43Z <p>Thank you alamar and Thorbjørn, I found out the issue thanks to your comments. I marked alamar's answer as accepted because I think it directly answers the question although Thorbjørn did help me find a solution.</p> <p>I had a loop that was creating anonymous Tasks inside an EndPoint.</p> http://stackoverflow.com/questions/858424/how-large-structs-can-be-passed-by-value-efficiently/859785#859785 -1 Answer by simao for How large structs can be passed by value efficiently? simao 2009-05-13T19:03:35Z 2009-05-13T19:03:35Z <p>Usually primitive types I pass by value, everything else by reference. That's my rule of the thumb.</p> http://stackoverflow.com/questions/817373/upcasting-in-java 1 Upcasting in java simao 2009-05-03T15:58:27Z 2009-05-04T03:35:41Z <p>In Java, suppose I have 3 classes, C extends from B which extends from A.</p> <p>And I have one method:</p> <pre><code>public void f(A a); </code></pre> <p>If I do something like this:</p> <pre><code>C c = new C() B b = (B) c; f(b); </code></pre> <p>f accepts b as type C since C and B both extend from A. I wanted f to receive b as type B and not type C.</p> <p>Is there anyway to force this upcasting?</p> http://stackoverflow.com/questions/791808/determining-whether-a-number-is-a-prime-number/791815#791815 4 Answer by simao for Determining whether a number is a prime number simao 2009-04-26T23:26:29Z 2009-04-26T23:26:29Z <p><a href="http://en.wikipedia.org/wiki/Primality_test" rel="nofollow">http://en.wikipedia.org/wiki/Primality_test</a></p> http://stackoverflow.com/questions/771998/is-it-possible-to-measure-bandwidth-using-ping/772136#772136 0 Answer by simao for Is it possible to measure bandwidth using ping? simao 2009-04-21T11:25:24Z 2009-04-21T11:25:24Z <p>You can measure bandwidth if you know the latency of the channel beforehand.</p> <p>You can use big ping packages and <em>estimate</em> the bandwidth knowing the type of channel and the expected RTT.</p> http://stackoverflow.com/questions/646578/is-there-any-good-python-tutorial-guide-to-use-xml-rpc-with-last-fm-api/718142#718142 1 Answer by simao for Is there any good Python tutorial/guide to use XML-RPC with Last.fm API? simao 2009-04-05T00:50:05Z 2009-04-05T00:50:05Z <p>Now its not a good time to work on last.fm's api. They are changing it in a few days I think.</p> http://stackoverflow.com/questions/1541228/calling-a-java-program-from-a-cocoa-application/1542016#1542016 Comment by simao on Calling a Java Program from a Cocoa Application simao 2009-10-09T14:34:43Z 2009-10-09T14:34:43Z I did look at Core-Plot but they don't offer any documentation. Oh well, maybe its easier than using JNI anyway... Thank you. http://stackoverflow.com/questions/1541228/calling-a-java-program-from-a-cocoa-application/1541417#1541417 Comment by simao on Calling a Java Program from a Cocoa Application simao 2009-10-09T14:33:49Z 2009-10-09T14:33:49Z I'll look into using JNI, thank you for those links. http://stackoverflow.com/questions/1168391/this-loop-chokes-on-50-000-lines-on-the-iphone-can-i-improve-it-so-it-doesnt/1168445#1168445 Comment by simao on This loop chokes on 50,000 lines on the iPhone... can I improve it so it doesn't? simao 2009-07-22T22:09:47Z 2009-07-22T22:09:47Z You are not adding anything to &quot;pool&quot;. Is that normal? http://stackoverflow.com/questions/33897/online-php-ide/34850#34850 Comment by simao on Online PHP IDE simao 2009-06-22T22:02:07Z 2009-06-22T22:02:07Z Alternatively you can use emacs with tramp. That way you can edit files though ssh. http://stackoverflow.com/questions/1025246/how-to-programatically-get-current-battery-level-with-cocoa/1025286#1025286 Comment by simao on How to programatically get current battery level with COCOA simao 2009-06-22T03:55:02Z 2009-06-22T03:55:02Z I forgot to add IOKit.framework to my build path. Now it's working. Thanks http://stackoverflow.com/questions/1025246/how-to-programatically-get-current-battery-level-with-cocoa/1025286#1025286 Comment by simao on How to programatically get current battery level with COCOA simao 2009-06-22T03:19:18Z 2009-06-22T03:19:18Z I tried those, but I always get this error: <a href="http://pastebin.com/m3f72274c" rel="nofollow">pastebin.com/m3f72274c</a> http://stackoverflow.com/questions/945709/emacs-23-os-x-multi-tty-and-emacsclient/945795#945795 Comment by simao on Emacs 23, OS X, multi-tty and emacsclient simao 2009-06-19T22:59:33Z 2009-06-19T22:59:33Z Doesn't work for me with Emacs.app 23 compiled yesterday on Mac OSX :| http://stackoverflow.com/questions/942302/how-to-make-svn-perform-a-command-without-making-changes Comment by simao on How to make SVN perform a command without making changes simao 2009-06-02T23:31:31Z 2009-06-02T23:31:31Z Why would you want to dry-run with a switch? Check Don's answer, I think <code>merge</code> might be what your are looking for. http://stackoverflow.com/questions/875253/dollar-sign-in-visualvm/875364#875364 Comment by simao on Dollar sign in visualvm simao 2009-05-17T20:18:41Z 2009-05-17T20:18:41Z Actually I do start a new anonymous sim.core.Task class which uses an EndPoint declared &quot;outside&quot; as final. So the $2 refers to this sim.core.Task? http://stackoverflow.com/questions/875253/dollar-sign-in-visualvm/875262#875262 Comment by simao on Dollar sign in visualvm simao 2009-05-17T19:21:39Z 2009-05-17T19:21:39Z Well, it can't be. Because I have only one inner class inside EndPoint.java, EndPointStats, and EndPoint$2 seem to have things completely unrelated with Stats, like fields related to task scheduling etc. Thank you for your help. http://stackoverflow.com/questions/835576/coding-as-a-team/835628#835628 Comment by simao on Coding as a team simao 2009-05-07T18:47:18Z 2009-05-07T18:47:18Z Opensvn.csie.org is in Chine (Take your conclusions from that) and it's terribly slow! http://stackoverflow.com/questions/817373/upcasting-in-java/817395#817395 Comment by simao on Upcasting in java simao 2009-05-03T16:40:29Z 2009-05-03T16:40:29Z Yes there is another way to do what I want, I can create new instance of B from a C, but I wanted to understand why I couldn't do this the way I tried first :) Thank you. http://stackoverflow.com/questions/817373/upcasting-in-java/817389#817389 Comment by simao on Upcasting in java simao 2009-05-03T16:39:13Z 2009-05-03T16:39:13Z I want f to call methods on the parameter depending on its type, so if the parameter is a C I want to call C.deliverTo(), but if the parameter is a B I want to call B.deliverTo(). Thank you. http://stackoverflow.com/questions/817373/upcasting-in-java/817386#817386 Comment by simao on Upcasting in java simao 2009-05-03T16:36:24Z 2009-05-03T16:36:24Z This is exactly what I am trying to understand. I want the parameter to exhibit B behavior. I guess I have to create a new B instance from C before passing it to f. Thank you.