User Krzysiek Goj - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T19:37:03Zhttp://stackoverflow.com/feeds/user/23018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1943681/linking-32-bit-library-to-64-bit-program1Linking 32-bit library to 64-bit programKrzysiek Goj2009-12-22T01:26:51Z2009-12-22T01:58:15Z
<p>Hi!</p>
<p>I have a 32-bit .so binary-only library and I have to generate 64-bit program that uses it.
Is there a way to wrap or convert it, so it can be used with 64-bit program?</p>
http://stackoverflow.com/questions/96981/color-themes-for-eclipse/1816243#18162430Answer by Krzysiek Goj for Color Themes for Eclipse?Krzysiek Goj2009-11-29T18:09:05Z2009-11-29T18:09:05Z<p>I've started proof of concept plug-in that manages color themes.</p>
<p>It's called <em>Eclipse Pimp</em>, and it's free software (3-clause BSD license).</p>
<p>Pimp is in early development and it isn't really usable yet.</p>
<p><a href="http://bitbucket.org/goj/eclipse-pimp/wiki/Home" rel="nofollow">http://bitbucket.org/goj/eclipse-pimp/wiki/Home</a></p>
http://stackoverflow.com/questions/1805147/how-to-remove-a-row-in-two-dimensional-array/1805174#18051742Answer by Krzysiek Goj for How to remove a row in two-dimensional arrayKrzysiek Goj2009-11-26T18:54:31Z2009-11-26T19:26:42Z<p>Use <a href="http://bit.ly/4BeUOS" rel="nofollow">System.arraycopy</a> <b>or</b> use <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/List.html" rel="nofollow">java.util.List</a> instead of arrays. ArrayList have fast access to random element and slow remove method, it's opposite with LinkedList. You have to choose for yourself.</p>
<p>EDIT:</p>
<p><b>Rant:</b>
I had to use bit.ly for this link, because stackoverflow sucks at <a href="http://www.codinghorror.com/blog/archives/001172.html" rel="nofollow">its core buisness of parsing html with regexps</a> (it chokes on this:</p>
<p><code><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#arraycopy(java.lang.Object, int, java.lang.Object, int, int)">System.arraycopy</a></code></p>
http://stackoverflow.com/questions/1773122/two-eclispse-projects-one-eclipse-plug-in/1774528#17745281Answer by Krzysiek Goj for Two Eclispse projects -> One Eclipse Plug-inKrzysiek Goj2009-11-21T04:34:01Z2009-11-25T11:13:15Z<p>It turned out that adding <a href="http://wiki.eclipse.org/index.php/Context_Class_Loader_Enhancements#Buddy_Policy" rel="nofollow">Eclipse-BuddyPolicy: dependent</a> to MANIFEST.MF files, reexporting some dependencies and turning one fragment into plugin (so there is plug-in dependency for BuddyPolicy to track) was the right solution.</p>
<p>Problem solved :-)</p>
http://stackoverflow.com/questions/1773122/two-eclispse-projects-one-eclipse-plug-in2Two Eclispse projects -> One Eclipse Plug-inKrzysiek Goj2009-11-20T20:41:55Z2009-11-25T11:13:15Z
<h2>Background</h2>
<p>I'm a developer of the <a href="http://vrapper.sourceforge.net" rel="nofollow">Vrapper</a> project.</p>
<p>Vrapper contains of 2 major parts</p>
<ul>
<li>Vim-emulation library (vrapper.core)</li>
<li>Eclipse part that makes a good use of it</li>
</ul>
<p>We want vrapper.core to be Eclipse-unaware, so it's reusable
outside of the Eclipse. Currently, we can "vrap" all sorts of Eclipse
text editors and our little mock text editor that we use for unit testing.</p>
<p>vrapper.core implements all sorts of Vim commands, modes, etc.
Those all communicate with Platform - an interface that abstracts out
underlying stuff (text editor, clipboards, settings system, etc.).</p>
<p>When mode is created for an editor it asks platform if there are extra
commands that are approperiate for underlying editor, currently edited file type, etc.</p>
<p>EclipsePlatform provides those commands using Eclipse extension points mechanism.</p>
<p>So, let's consider the following projects (there are more):</p>
<ul>
<li><i>vrapper.core</i> - Eclipse-independent code for Vrapper</li>
<li><i>vrapper.eclipse</i> - Eclipse plug-in that depends on <i>vrapper.core</i></li>
<li><i>surround.core</i> - Eclipse-independent code that emulates <i>surround.vim</i> (Vim plug-in)</li>
<li><i>surround.eclipse</i> - Eclipse fragment for <i>vrapper.eclipse</i>
that makes it provide commands form <i>surround.core</i>.</li>
</ul>
<p>There are two ways we can deal with those:</p>
<h3>One plug-in to rule them all</h3>
<p>This is how it should look like from Eclipse's perspective.
There is one plug-in that contains code from <i>vrapper.eclipse</i> and <i>vrapper.core</i>,
and one fragment that contains code from <i>surround.core</i> and <i>surround.eclipse</i>.</p>
<h3>Many plug-ins</h3>
<ul>
<li>There are 3 plug-ins
<ul>
<li>two OSGified libraries <i>vrapper.core</i>, <i>surround.core</i></li>
<li><i>vrapper.eclipse</i></li>
</ul></li>
<li><i>surround.eclipse</i> fragment depends on <i>vrapper.core</i> in this case</li>
</ul>
<h2>Problems</h2>
<p>Many plug-ins solution have some issues with lazy class loading that I don't understand.
It's beacause when instances of modes from <i>vrapper.core</i> are created they need
classes from <i>surround.core</i> to be created (via <i>vrapper.eclipse</i> -> <i>surround.eclipse</i>).</p>
<p>This works if you run stuff from Eclipse and select all plug-ins from run configuration,
but if one deploys features & plugins and run eclipse normally an exception is thrown
because classes from surround.core cannot be found.
It's something in the spirit of <em>surround.core asking for extra commands from
dependent plug-ins creates <b>implicit circular dependencies</b></em>.</p>
<p>What I mean by <i>implicit</i> dependencies is that no core class depends on eclipse-specific classes in compile time.</p>
<p>Modes (like vim normal mode) are core classes. They contain commands. There are some commands specific for particular Eclipse editors (like run this JDT-specific refactoring). Those commands implement core interfaces, but their code (obviously) lives in eclipse-specific projects. When mode is created it asks underlying platform for some extra commands - those extra commands are implemented in eclipse plug-ins. This is when lazy class loading in eclipse make everything blow up in runtime - classes for extra commands are referenced by extension points, but they are not yet loaded. Boom, exception.</p>
<p>I tried to work this around by using "one plug-in to rule them all" approach.
Having just one plug-in seems to be much better solution to me, but I couldn't make it work cleanly.</p>
<p>Only thing that succeeded for me was quite an ugly hack.</p>
<ul>
<li>All <i>.core</i> projects had an Ant task that created .jar file with their classes
and dropped it into corresponding <i>*.eclipse</i> project</li>
<li><i>*.eclipse</i> projects included that jars and had them enlisted in MANIFEST files.</li>
</ul>
<p>The problem with this ugly hack approach (besides of it being ugly hack) is
that development becomes quite painful. Eclipse code navigation, code coverage
and few other things in Eclipse stops working.</p>
<h2>Summary</h2>
<p>We have <i>eclipse independent library + eclipse specific stuff</i> architecture,
but we really need all of this to live in one plug-in (because there are some dependencies in both directions).</p>
<p>How do I make code from few projects live into one plug-in/fragment?</p>
http://stackoverflow.com/questions/1025181/hidden-features-of-scala25Hidden features of ScalaKrzysiek Goj2009-06-22T01:05:03Z2009-11-10T14:29:54Z
<p>In the spirit of:</p>
<ul>
<li><a href="http://beta.stackoverflow.com/questions/9033/hidden-features-of-c" rel="nofollow">Hidden Features of C#</a></li>
<li><a href="http://beta.stackoverflow.com/questions/15496/hidden-features-of-java" rel="nofollow">Hidden Features of Java</a></li>
<li><a href="http://beta.stackoverflow.com/questions/54929/what-are-the-hidden-features-of-aspnet" rel="nofollow">Hidden Features of ASP.NET</a></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden Features of Python</a></li>
<li><a href="http://stackoverflow.com/questions/954327/">Hidden Features of HTML</a></li>
<li>and other <a href="http://stackoverflow.com/questions/tagged/hidden-features">Hidden Features</a> questions</li>
</ul>
<p><strong>What are the hidden features of <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a> that every Scala developer should be aware of?</strong></p>
<p>One hidden feature per answer, please.</p>
http://stackoverflow.com/questions/700186/text-editors-with-vim-mode/1637678#16376780Answer by Krzysiek Goj for Text editors with "vim mode"?Krzysiek Goj2009-10-28T14:37:18Z2009-10-28T14:37:18Z<p>Check out excellent <a href="http://vrapper.sourceforge.net/home/" rel="nofollow">Vrapper</a> plugin for Eclipse.</p>
<blockquote><p>Vrapper is an eclipse plugin which acts as a wrapper for eclipse text editors to provide a Vim-like input scheme for moving around and editing text.</p>
<p>Unlike other plugins which embed Vim in Eclipse, Vrapper imitates the behaviour of Vim while still using whatever editor you have opened in the workbench. The goal is to have the comfort and ease which comes with the different modes, complex commands and count/operator/motion combinations which are the key features behind editing with Vim, while preserving the powerful features of the different Eclipse text editors, like code generation and refactoring.</p>
<p>Vrapper tries to offer Eclipse users the best of both worlds.</p></blockquote>
http://stackoverflow.com/questions/1002164/how-can-i-write-applications-in-c-or-c-for-android/1002320#10023200Answer by Krzysiek Goj for how can I write applications in C or C++ for Android?Krzysiek Goj2009-06-16T15:41:19Z2009-06-16T15:41:19Z<p>This blog post may be a good start: <a href="http://benno.id.au/blog/2007/11/13/android-native-apps" rel="nofollow">http://benno.id.au/blog/2007/11/13/android-native-apps</a>
Unfortunately, lots of the important stuff is "left as an exercise to the reader".</p>
http://stackoverflow.com/questions/153223/how-do-you-organize-your-unit-tests-in-tdd/153265#1532655Answer by Krzysiek Goj for How do you organize your Unit Tests in TDD?Krzysiek Goj2008-09-30T14:23:34Z2008-09-30T14:23:34Z<p>Divide your tests in 2 sets:</p>
<ul>
<li>functional tests</li>
<li>units tests</li>
</ul>
<p>Functional tests are per-user story. Unit tests are per-class. The former check that you actually support the story, the latter exercise and document your functionality.</p>
<p>There is one directory (package) for functional tests. Unit tests should be closely bound with functionality they exercise (so they're scattered). You move them around and refactor them as you move & refactor your code around.</p>
http://stackoverflow.com/questions/149570/continuations-in-ruby/149699#1496997Answer by Krzysiek Goj for Continuations in RubyKrzysiek Goj2008-09-29T17:11:22Z2008-09-29T21:19:48Z<p>Yes, in most cases. MRI (1.8) have supported them as far as my memory reaches, Ruby 1.9 (YARV) <a href="http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=12380" rel="nofollow">does it, too</a>, so does Rubinius. JRuby and IronRuby don't have continuations, and it's quite unlikely they will get them (JVM and CLR use stack-instrospection for security)</p>
<p>Ruby as a language supports continuations via <code>callcc</code> keyword. They're used, for example, to implement <code>Generator</code> class from standard library. </p>
<p><b><a href="http://www.ruby-doc.org/docs/ProgrammingRuby/html/ref_c_continuation.html" rel="nofollow">continuations on ruby-doc</a></b></p>
<p>Continuation-based web frameworks (like seaside, or one from Arc's std. library) seem less popular. I've found <a href="http://rubyforge.org/projects/wee/" rel="nofollow">wee</a> that claim to let you do optional continuations, but I've never used it.</p>
http://stackoverflow.com/questions/146359/python-scope/150546#1505462Answer by Krzysiek Goj for Python scopeKrzysiek Goj2008-09-29T20:42:21Z2008-09-29T20:42:21Z<p>Errata for <a href="http://stackoverflow.com/questions/146359/python-scope#146365">Greg's post</a>:</p>
<p>There should be no <i>before they are referenced</i>. Take a look:
<code><pre>
x = 1
def explode():
print x # raises UnboundLocalError here
x = 2
</pre></code></p>
<p>It explodes, even if x is assigned after it's referenced.
In Python variable can be local or refer outer scope, and it cannot change in one function.</p>
http://stackoverflow.com/questions/144201/has-anyone-found-a-good-set-of-python-plugins-for-vim-specifically-module-comp/149921#1499211Answer by Krzysiek Goj for Has anyone found a good set of python plugins for vim -- specifically module completion?Krzysiek Goj2008-09-29T18:04:00Z2008-09-29T18:04:00Z<p><strong>Code completion:</strong> <a href="http://github.com/orestis/pysmell/tree/master" rel="nofollow">PySmell</a> looks promising. It's work-in-progress, but alredy useful.</p>
http://stackoverflow.com/questions/149559/python-desktop-widgets/149730#1497301Answer by Krzysiek Goj for Python desktop widgetsKrzysiek Goj2008-09-29T17:21:12Z2008-09-29T17:21:12Z<p>Take a look at <a href="http://www.gdesklets.de/" rel="nofollow">gDesklets</a>. AFAIK they're UNIX only, but mabybe porting them to other platforms make more sense than starting from scratch?</p>
<p>They use python to create widgets (desklets).</p>
http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced/146345#1463455Answer by Krzysiek Goj for What is the worst 'gotcha' you've experienced?Krzysiek Goj2008-09-28T17:50:37Z2008-09-28T19:15:15Z<p>I strongly recommend reading <a href="http://www.javapuzzlers.com/" rel="nofollow">Java Puzzlers</a>. It's the whole book about <em>gotchas</em>. There is a <a href="http://www.javapuzzlers.com/java-puzzlers-sampler.pdf" rel="nofollow">sample chapter</a> on the webpage.</p>
http://stackoverflow.com/questions/146384/what-good-user-groups-are-out-there-in-london/146425#1464250Answer by Krzysiek Goj for What good user groups are out there in London?Krzysiek Goj2008-09-28T18:25:53Z2008-09-28T18:25:53Z<ul>
<li><a href="http://pizzaonrails.com/" rel="nofollow">http://pizzaonrails.com/</a> - RoR community meetup</li>
<li><a href="http://flag-and-bell.com/" rel="nofollow">http://flag-and-bell.com/</a> - falls in <em>anything geeky</em> category</li>
</ul>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/146265#14626511Answer by Krzysiek Goj for What are your favorite Vim tricks?Krzysiek Goj2008-09-28T17:07:01Z2008-09-28T17:07:01Z<p>Never underestimate the power of percent.</p>
<p>Basically, it jumps to matching brace (booooring), <strong>but</strong> when the cursor is not on a brace it goes to the right until it finds one, which is my excuse to call this post a <em>trick</em>.</p>
<p><code><b>[x]</b></code> means the cursor is on <em>x</em>.</p>
<pre><code><b>[s]</b>omeObject.methodYouWouldLikeToDelete(arg1, arg2) + stuffToKeep</code></pre>
<p>just type <b>d%</b> to get <pre><code><b>[ ]</b>+ stuffToKeep</code></pre></p>
<p>Obviously, it works with (), [] and {}.</p>
<p>Another examples of percent-not-on-paren:</p>
<pre><code><b>[m]</b>y_python_list[indexToChange, oneToLeave]</code></pre>
<p><b>%%lce</b></p>
<pre><code>fun<b>[c]</b>tion(wrong, wrong, wrong)</code></pre>
<p><b>%cib</b></p>
http://stackoverflow.com/questions/135386/what-is-the-best-reason-for-unit-testing/146226#1462261Answer by Krzysiek Goj for What is the best reason for unit testing?Krzysiek Goj2008-09-28T16:46:10Z2008-09-28T16:46:10Z<p>one-answer-per-post beats double-posting-is-bad, doesn't it?</p>
<p>Long-running tests are <a href="http://xkcd.com/303/" rel="nofollow">#2 excuse for legitimately slacking off</a>.</p>
http://stackoverflow.com/questions/135386/what-is-the-best-reason-for-unit-testing/146224#1462240Answer by Krzysiek Goj for What is the best reason for unit testing?Krzysiek Goj2008-09-28T16:42:25Z2008-09-28T16:42:25Z<p>There are many reasons, lot of them are orthagonal. You gain from all of them, so pool for the most important is a little bit pointless. Whatever. There is one quite important one, that noone has mentioned so far.</p>
<p><strong>Communication.</strong></p>
<p>Remember, <em>Programs must be written for people to read, and only incidentally for machines to execute.</em> </p>
<ul>
<li>Tests are documentation. You look at the test of a class, and you know how to use it and how it behaves (including corner cases).</li>
<li>When you're doing TDD and pair programming writing test before code <strong>forces</strong> you to communicate other person what do you expect from newly created functionality. It's really helpful when pairing with non-talkative parson</li>
</ul>
http://stackoverflow.com/questions/145027/192-168-0-71-what-is-this-special-address-used-for/145044#1450442Answer by Krzysiek Goj for 192.168.0.71... What is this special address used for?Krzysiek Goj2008-09-28T02:36:36Z2008-09-28T02:42:38Z<p>192.168.???.??? is a special, reserved range of addresses private IP addresses. So it's probably a computer from your local network.</p>
<p>Read: <a href="http://en.wikipedia.org/wiki/Classful_network" rel="nofollow">http://en.wikipedia.org/wiki/Classful_network</a></p>
<p><strong>EDIT:</strong>
You've edited your post.</p>
<p>It seems, it's your address in the local network.
127.0.0.1 is the loopback address.</p>
<p>Difference between them is if somebody else from your network types 192.168.0.71, they go to your site, 127.0.0.1 is for their computer.</p>
http://stackoverflow.com/questions/130734/how-can-one-close-html-tags-in-vim-quickly/144168#1441682Answer by Krzysiek Goj for How can one close html tags in vim quicklyKrzysiek Goj2008-09-27T18:08:09Z2008-09-27T18:08:09Z<p>I find it more convinient to make vim write both opening and closing tag for me, instead of just the closing one. You can use excellent <a href="http://www.vim.org/scripts/script.php?script_id=1896" rel="nofollow">allml plugin</a> by Tim Pope. Usage looks like this (let | mark cursor position)
you type:</p>
<pre>span|</pre>
<p>press CTRL+x SPACE</p>
<p>and you get</p>
<pre><span>|</span></pre>
<p>You can also use CTRL+x ENTER instead of CTRL+x SPACE, and you get</p>
<pre><span>
|
</span></pre>
<p>Allml can do more than just it (eg. insert <%= stuff around this %> or DOCTYPE). You probably want to check out other plugins by <a href="http://www.vim.org/account/profile.php?user_id=9012" rel="nofollow">author of allml</a>, especially <a href="http://www.vim.org/scripts/script.php?script_id=1697" rel="nofollow">surround</a>.</p>
http://stackoverflow.com/questions/138680/vim-extension-via-python/144126#1441261Answer by Krzysiek Goj for Vim extension (via Python)?Krzysiek Goj2008-09-27T17:44:28Z2008-09-27T17:44:28Z<p><a href="http://orestis.gr/blog/2008/08/10/scripting-vim-with-python/" rel="nofollow">Here</a> is another useful blog post about it.</p>
http://stackoverflow.com/questions/1773122/two-eclispse-projects-one-eclipse-plug-in/1773371#1773371Comment by Krzysiek Goj on Two Eclispse projects -> One Eclipse Plug-inKrzysiek Goj2009-11-21T01:54:43Z2009-11-21T01:54:43ZThis is a good point, but unfortunately no. I have just edited my question and explained what I mean by dependencies in both directions betterhttp://stackoverflow.com/questions/1766572/how-would-a-multi-key-list-be-implemented-in-java/1766590#1766590Comment by Krzysiek Goj on How would a Multi-Key List be implemented in Java?Krzysiek Goj2009-11-19T21:30:27Z2009-11-19T21:30:27ZIt seems to me (judging from his almost-implementation and him calling this thing "list") that he wants it to be order-preserving. Multimap doesn't preserve order.http://stackoverflow.com/questions/14410/why-are-there-so-few-modal-editors-that-arent-vi/14469#14469Comment by Krzysiek Goj on Why are there so few modal-editors that aren't vi*?Krzysiek Goj2009-10-28T14:48:47Z2009-10-28T14:48:47ZThere is also open source Eclipse plugin called Vrapper
<a href="http://vrapper.sourceforge.net/home/" rel="nofollow">vrapper.sourceforge.net/home</a>http://stackoverflow.com/questions/146359/python-scope/146365#146365Comment by Krzysiek Goj on Python scopeKrzysiek Goj2008-09-29T20:46:30Z2008-09-29T20:46:30Zerrata: <a href="http://stackoverflow.com/questions/146359/python-scope#150546" rel="nofollow" title="python scope%23150546">stackoverflow.com/questions/146359/…</a> please, remove 'before they are referenced', and this answer will be perfect.