User simao - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T01:58:17Zhttp://stackoverflow.com/feeds/user/87191http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1541228/calling-a-java-program-from-a-cocoa-application3Calling a Java Program from a Cocoa Applicationsimao2009-10-09T00:09:21Z2009-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#11993350Answer by simao for Emacs: Don't create #these# files when not saving modified buffersimao2009-07-29T10:41:36Z2009-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#10607692Answer by simao for Regex replacement with Emacssimao2009-06-29T21:52:59Z2009-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-cocoa1How to programatically get current battery level with COCOAsimao2009-06-22T01:55:07Z2009-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#10086904Answer by simao for Why use Unicode if your program is English only?simao2009-06-17T18:08:37Z2009-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-visualvm0Dollar sign in visualvmsimao2009-05-17T19:07:55Z2009-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#8756750Answer by simao for Dollar sign in visualvmsimao2009-05-17T22:44:43Z2009-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-1Answer by simao for How large structs can be passed by value efficiently?simao2009-05-13T19:03:35Z2009-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-java1Upcasting in javasimao2009-05-03T15:58:27Z2009-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#7918154Answer by simao for Determining whether a number is a prime numbersimao2009-04-26T23:26:29Z2009-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#7721360Answer by simao for Is it possible to measure bandwidth using ping?simao2009-04-21T11:25:24Z2009-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#7181421Answer by simao for Is there any good Python tutorial/guide to use XML-RPC with Last.fm API?simao2009-04-05T00:50:05Z2009-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#1542016Comment by simao on Calling a Java Program from a Cocoa Applicationsimao2009-10-09T14:34:43Z2009-10-09T14:34:43ZI 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#1541417Comment by simao on Calling a Java Program from a Cocoa Applicationsimao2009-10-09T14:33:49Z2009-10-09T14:33:49ZI'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#1168445Comment by simao on This loop chokes on 50,000 lines on the iPhone... can I improve it so it doesn't?simao2009-07-22T22:09:47Z2009-07-22T22:09:47ZYou are not adding anything to "pool". Is that normal?http://stackoverflow.com/questions/33897/online-php-ide/34850#34850Comment by simao on Online PHP IDEsimao2009-06-22T22:02:07Z2009-06-22T22:02:07ZAlternatively 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#1025286Comment by simao on How to programatically get current battery level with COCOAsimao2009-06-22T03:55:02Z2009-06-22T03:55:02ZI forgot to add IOKit.framework to my build path.
Now it's working.
Thankshttp://stackoverflow.com/questions/1025246/how-to-programatically-get-current-battery-level-with-cocoa/1025286#1025286Comment by simao on How to programatically get current battery level with COCOAsimao2009-06-22T03:19:18Z2009-06-22T03:19:18ZI 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#945795Comment by simao on Emacs 23, OS X, multi-tty and emacsclientsimao2009-06-19T22:59:33Z2009-06-19T22:59:33ZDoesn'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-changesComment by simao on How to make SVN perform a command without making changessimao2009-06-02T23:31:31Z2009-06-02T23:31:31ZWhy 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#875364Comment by simao on Dollar sign in visualvmsimao2009-05-17T20:18:41Z2009-05-17T20:18:41ZActually I do start a new anonymous sim.core.Task class which uses an EndPoint declared "outside" as final. So the $2 refers to this sim.core.Task?http://stackoverflow.com/questions/875253/dollar-sign-in-visualvm/875262#875262Comment by simao on Dollar sign in visualvmsimao2009-05-17T19:21:39Z2009-05-17T19:21:39ZWell, 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#835628Comment by simao on Coding as a teamsimao2009-05-07T18:47:18Z2009-05-07T18:47:18ZOpensvn.csie.org is in Chine (Take your conclusions from that) and it's terribly slow!http://stackoverflow.com/questions/817373/upcasting-in-java/817395#817395Comment by simao on Upcasting in javasimao2009-05-03T16:40:29Z2009-05-03T16:40:29ZYes 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#817389Comment by simao on Upcasting in javasimao2009-05-03T16:39:13Z2009-05-03T16:39:13ZI 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#817386Comment by simao on Upcasting in javasimao2009-05-03T16:36:24Z2009-05-03T16:36:24ZThis 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.