User akr - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T08:21:20Z http://stackoverflow.com/feeds/user/4799 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916432/best-way-to-shutdown-an-osgi-container-specifically-equinox/1918985#1918985 0 Answer by akr for Best way to shutdown an OSGi Container (specifically equinox) akr 2009-12-17T01:46:42Z 2009-12-17T01:46:42Z <p>Please, don't use System.exit(0) to shut down an OSGi framework. You should to it by stopping the bundle with the ID 0, the System bundle. This way, you give all bundles a chance to shut down in an orderly manner (e.g. to free resources etc).</p> <p>The OSGi specification defines the following (Core Specification, R4.x, 4.2.6 Stopping a Framework).</p> <blockquote> <p>Shutdown can be initiated by stopping the system bundle, [...] or calling the stop method on the framework object.</p> </blockquote> <p>In that chapter a detailed description is given what happens when a framework is shut down.</p> <p>The system bundle resp. the framework object is also defined (chapter 4.6 The System Bundle):</p> <blockquote> <p>The system bundle resembles the framework object when a framework is launched, but implementations are not required to use the same object for the framework object and the system bundle. However, both objects must have bundle id 0, same location, and bundle symbolic name.</p> </blockquote> <p>The OSGi spec is available for free at the OSGi Alliance's website (<a href="http://www.osgi.org/Specifications/HomePage" rel="nofollow">http://www.osgi.org/Specifications/HomePage</a>).</p> http://stackoverflow.com/questions/1917535/make-a-folder-in-svn-writable-so-that-when-the-repo-is-checked-out-the-permissio/1917617#1917617 2 Answer by akr for Make a folder in SVN writable so that when the repo is checked out, the permissions are already set to writable? akr 2009-12-16T20:51:19Z 2009-12-17T01:32:22Z <p>I don't have a working solution ready. Unfortunately, Subversion properties don't support the setting of permissions. Here <a href="http://old.nabble.com/File-Permissions-td17579906.html" rel="nofollow">Nabble "File Permissions" (external link)</a> is a good discussion and some links about the pro and cons of setting file permissions, eg, via scripting.</p> http://stackoverflow.com/questions/1900059/digital-complements/1900066#1900066 5 Answer by akr for digital complements akr 2009-12-14T10:15:47Z 2009-12-14T10:15:47Z <p>To express negative numbers in binary format.</p> http://stackoverflow.com/questions/1893116/how-do-i-register-a-service-in-osgi-apache-felix/1895331#1895331 1 Answer by akr for How do I register a service in OSGi (Apache Felix)? akr 2009-12-13T01:50:18Z 2009-12-13T01:50:18Z <p>I understand that you have <em>SomeInterface</em> in another bundle, right? Then you must also export that package in that bundle's manifest, eg.</p> <pre><code>Export-Bundle: interfaces </code></pre> <p>But you really should have a look at the bnd tool mentioned in another answer. This generates standard OSGi manifests.</p> http://stackoverflow.com/questions/1892831/programmer-working-conditions/1892843#1892843 3 Answer by akr for Programmer working conditions akr 2009-12-12T09:16:46Z 2009-12-12T09:16:46Z <p>With 40+ people in the same room there is a big chance that at least a group of programmers have a discussion about something. Not necessarily work related, but some geek topics. In a small room this would distract only a few people, in a large room, 40 people are effected. Sure, chitchat can be moved to the kitchen area, but serious work usually needs to be done around computers. I think that there will be more loss than gain from this move. </p> http://stackoverflow.com/questions/1673428/is-iso-9241-ergonomics-of-human-system-interaction-relevant-in-the-industry/1884865#1884865 1 Answer by akr for Is ISO 9241 (Ergonomics of Human System Interaction) relevant in the industry? akr 2009-12-10T23:31:05Z 2009-12-10T23:31:05Z <p>It depends by what you mean with "the industry". If you have, as you say, a customer that demands it then you have no choice or you don't get the contract. There are a couple of "industries", e.g. government, telecommunication, airlines etc. that demand and support these kind of standards for a good reason. These standards are not just some more or less funny reads but define the basic elements and patterns for UIs and human-computer-interaction. If you write a specification or an RFI for an application or service that has a UI, you don't need to define each and every aspect but just refer to the standard document. This is very clear, both for the contractee as well as for the contractor.</p> http://stackoverflow.com/questions/1877735/encryption-algorithms/1877779#1877779 5 Answer by akr for Encryption algorithms... akr 2009-12-09T23:50:35Z 2009-12-09T23:50:35Z <p>Just an advice, just in case you are tempted to re-implement one of the algorithms on you own: don't! At least not for a real world product. Just use one of the standard libraries. You can do so much wrong. In case of security when you need to rely on the algorithm and the implementation you should use something that has proven for many years and checked by many (knowledgeable) eyeballs. </p> <p>Though, it's fine to implement one just to get some feelings and experiences :-)</p> http://stackoverflow.com/questions/1874504/extracting-the-modified-files-from-svn/1874665#1874665 0 Answer by akr for Extracting the modified files from SVN akr 2009-12-09T15:30:31Z 2009-12-09T15:30:31Z <p>I don't have a simple solution, but you might have a look at the subversion book, chapter 4, <a href="http://svnbook.red-bean.com/en/1.0/ch04s03.html" rel="nofollow">Copying Changes Between Branches - Chapter 4. Branching and Merging</a>. There also some discussions about changesets.</p> http://stackoverflow.com/questions/1873655/convert-all-br-tags-into-one-universal-br/1873690#1873690 -1 Answer by akr for Convert all br tags into one universal <br /> akr 2009-12-09T12:51:44Z 2009-12-09T12:51:44Z <p>Try this pattern</p> <pre><code>&lt;\s*[bB][rR]\s*\/?\s*&gt; </code></pre> http://stackoverflow.com/questions/1872259/variable-names-in-c/1872269#1872269 3 Answer by akr for Variable names in C akr 2009-12-09T07:49:37Z 2009-12-09T07:49:37Z <p>Sure, you can do this. preprocessor macros are just text replacements that are done to the code before compilation. You can't do this during runtime, though.</p> http://stackoverflow.com/questions/1870177/how-do-i-get-out-of-the-habit-of-procedural-programming-and-into-object-oriented/1870404#1870404 0 Answer by akr for How do i get out of the habit of procedural programming and into object oriented programming? akr 2009-12-08T22:40:35Z 2009-12-08T22:40:35Z <p>Learn a new language, one that helps to move you gently to OOP. Java is nice, but a bit bloated, though. But its system library is mainly OO, so you are force to use objects. Moving to another language also helps you <strong>not</strong> to reuse your old code :-)</p> http://stackoverflow.com/questions/1818160/with-osgi-how-does-one-pass-parameters-from-a-host-to-a-embedded-bundle/1863927#1863927 0 Answer by akr for With OSGI how does one pass parameters from a host to a embedded bundle. akr 2009-12-08T01:07:22Z 2009-12-08T01:07:22Z <p>To do (pre-) runtime configuration of a bundle, you should use the Configuration Admin Service. For pojos etc you can follow this pattern:</p> <ul> <li>Bundle A installs and starts Bundle B</li> <li>Bundle B registers a "configuration" service, e.g. with the interface <em>acme.ConfigureB</em>.</li> <li>Bundle A tracks services with the interface <em>acme.ConfigureB</em>.</li> <li>Whenever A receives the tracker callback for <em>acme.ConfigureB</em> it does all the necessary configurations.</li> </ul> http://stackoverflow.com/questions/1831117/what-is-the-osgi-bundle-package-structure/1863892#1863892 0 Answer by akr for what is the OSGi bundle package structure? akr 2009-12-08T00:58:06Z 2009-12-08T00:58:06Z <p>You might have a look at the OSGi Core specification. You can download it from the <a href="http://www.osgi.org" rel="nofollow">OSGi Alliances website</a> (It is actually quite readable). For example, for version 4.2 of the spec, chapter 3.2 discuses bundles and their structure in detail. As already mentioned in another answer, bundles are actually plain jar files with a Manifest that contains a couple of special manifest headers.</p> <p>Some of these headers also let you specify the location of some of the files, e.g. in section 3.2.1.11 the <em>Bundle-Localization</em> header is defined:</p> <blockquote> <p>The Bundle-Localization header contains the location in the bundle where localization files can be found. The default value is OSGI-INF/l10n/bundle. Translations are by default therefore OSGI-INF/l10n/bundle_de.properties, OSGI-INF/l10n/bundle_nl.properties, etc</p> </blockquote> http://stackoverflow.com/questions/1847329/service-references-in-osgi/1863863#1863863 0 Answer by akr for Service References in OSGi akr 2009-12-08T00:48:15Z 2009-12-08T00:48:15Z <p>Regarding your question whether it is dangerous to use a service instance after the service has been stopped. To cite from the 4.2 core spec (5.4 Stale References):</p> <blockquote> <p>The behavior of a service that becomes unregistered is undefined. Such services may continue to work properly or throw an exception at their discretion.</p> </blockquote> <p>I dont want to cite the whole section of the spec here, but the following sentences are a good discussion about the danger of using stale references:</p> <blockquote> <p>A stale reference is a reference to a Java object that belongs to the class loader of a bundle that is stopped or is associated with a service object that is unregistered. Standard Java does not provide any generic means to clean up stale references, and bundle developers must analyze their code carefully to ensure that stale references are deleted.</p> <p>Stale references are potentially harmful because they hinder the Java garbage collector from harvesting the classes, and possibly the instances, of stopped bundles. This may result in significantly increased memory usage and can cause updating native code libraries to fail. Bundles using services are strongly recommended to use either the Service Tracker or Declarative Services.</p> </blockquote> http://stackoverflow.com/questions/1842287/ant-best-way-to-setup-system-dependent-properties/1855326#1855326 2 Answer by akr for ant: best way to setup system-dependent properties? akr 2009-12-06T12:58:14Z 2009-12-06T23:35:19Z <p>In addition to Vladimir's solution you might have a default properties file for each of the OS or other you might deploy your build system on. Use the ${os.name} (and other Java system properties) to set up a path. For example </p> <pre><code>&lt;property file="build-${os.name}.properties"&gt; </code></pre> <p>These files can be maintained and checked in into your version control system as well.</p> http://stackoverflow.com/questions/1845719/use-ant-to-delete-all-files-in-a-svn-working-copy-folder-under-mac-os-x/1855351#1855351 1 Answer by akr for Use ant to delete all files in a svn working copy folder under mac os x akr 2009-12-06T13:07:21Z 2009-12-06T13:07:21Z <p>Instead of executing "svn" commands yourself you might consider the excellent SvnAnt task from the Subclipse project <a href="http://subclipse.tigris.org/svnant.html" rel="nofollow">http://subclipse.tigris.org/svnant.html</a>. It makes it much easier to handle svn related tasks. The code for your problem might look like</p> <pre><code>&lt;svn&gt; &lt;delete&gt; &lt;fileset dir="../dist"&gt; &lt;include name="**/*"/&gt; &lt;/fileset&gt; &lt;/delete&gt; &lt;commit message="commit deleted files" dir="../dist"/&gt; &lt;/svn&gt; </code></pre> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72570#72570 8 Answer by akr for What development book made the most impact on you as a developer? akr 2008-09-16T14:01:02Z 2009-11-26T06:07:10Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201657880" rel="nofollow">Programming Pearls</a> b Jon Benley (both books)</p> http://stackoverflow.com/questions/1417245/are-there-any-java-5-vm-for-embedded-environments 0 Are there any Java 5 VM for embedded environments? akr 2009-09-13T08:54:17Z 2009-09-13T09:04:24Z <p>Hi,</p> <p>for a project that targets embedded systems (such as a NAS) I am looking for an embedded Java VM that would support Java 5 and up. Currently, Java 1.4 is supported by VM like IBM's J9. But since Java 1.4 has reached its end-of-life I would be interested whether there are alternatives available, open source or commercially.</p> <p>Any idea would help. Thanks.</p> http://stackoverflow.com/questions/1411812/including-additional-resources-with-osgi-bundles/1417214#1417214 0 Answer by akr for Including additional resources with OSGi bundles akr 2009-09-13T08:38:30Z 2009-09-13T08:38:30Z <p>Your solution works, of course. But you have to be careful to also stop and remove any resource that you extracted and started during the installation. This might especially difficult to track in case an executable also created any kind of working files. </p> <p>You should do this because one of OSGi's strength is the lifecycle management, which allows you to also remove bundles and services without a trace. For this, the framework tracks everything a bundle does. If you keep an execuable running after you removed the bundle that installed and started it, the connection is lost and it may keep running until the machine is rebooted (often not an option for embedded systems). </p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/46460#46460 115 Answer by akr for What is the single most influential book every programmer should read? akr 2008-09-05T18:16:19Z 2009-07-24T09:15:10Z <p>For me the most influencal book is "Zen and the Art of Motorcycle Maintenance" by Robert Pirsig. It is all about no matter what you do, always thrive for perfection, know your tools and task at hand inside-out, and, most of all, have fun (because if you are having fun, everything automatically leads to better results).</p> <p><img src="http://ecx.images-amazon.com/images/I/5187VZ5EZ4L.%5FSS500%5F.jpg" alt="alt text" /></p> <p>This book has a more recent edition (2000).</p> http://stackoverflow.com/questions/579109/which-rich-client-platform-to-use/626354#626354 0 Answer by akr for Which Rich Client Platform to use akr 2009-03-09T14:02:11Z 2009-03-09T14:02:11Z <p>Of course it all depends on the kind of applications and services you want to provide, and the target environment. But I can also recommend OSGi as a development and deployment platform. The underlying architecture and specifications are very well developed and proven.</p> <p>Besides of the Eclipse RCP you should have a look at Apache Felix (<a href="http://felix.apache.org" rel="nofollow">http://felix.apache.org</a>) and Knopflerfish (<a href="http://www.knopflerfish.org" rel="nofollow">http://www.knopflerfish.org</a>), which are (smaller) open source OSGi framework implementations.</p> http://stackoverflow.com/questions/115256/skills-in-demand-during-2009/318054#318054 1 Answer by akr for Skills in demand during 2009 akr 2008-11-25T16:45:54Z 2008-11-25T16:45:54Z <p>OSGi and OSGi technology is one of the upcoming key technologies to be knowledgeable about. See the <a href="http://www.osgi.org" rel="nofollow">OSGi Alliance's web site</a>. OSGi provides life cycle and services management to Java. It has been around for about 10 years now and was, in the beginning targeted at the embedded market, but it proves to be a universal middleware. Lots of J2EE products (JBoss, Bea, Websphere, SpringSource etc) are currently moving to OSGi.</p> http://stackoverflow.com/questions/316866/ping-a-site-in-python/317214#317214 0 Answer by akr for Ping a site in Python? akr 2008-11-25T12:41:38Z 2008-11-25T12:41:38Z <p>I use the ping module by Lars Strand. Google for "Lars Strand python ping" and you will find a lot of references.</p> http://stackoverflow.com/questions/317046/why-doesnt-your-company-contribute-back-to-open-source/317147#317147 4 Answer by akr for Why doesn't your company contribute back to open source? akr 2008-11-25T12:17:46Z 2008-11-25T12:17:46Z <p>In my opinion the biggest problem is that most companies are doing development for projects. If a project develops something that is worthwhile to be published as open source the commitment for maintenance can only be given till the project is finished. After that no more resources are available for further developments, support of the community, bug fixes etc. This usually means a slow death for the open source "product".</p> <p>Also, some companies are very eager to look at the PR for things they publish, and this usually means to go through all the processes for publications. This is something which in general overwhelms engineers and programmers.</p> http://stackoverflow.com/questions/317127/cvsroot-environment/317131#317131 1 Answer by akr for CVSROOT environment akr 2008-11-25T12:06:48Z 2008-11-25T12:06:48Z <p>You can set it in the preferences pane at the "General" tab.</p> http://stackoverflow.com/questions/287404/using-regular-expressions-to-do-mass-replace-in-notepad-and-vim/287424#287424 0 Answer by akr for Using regular expressions to do mass replace in Notepad++ and Vim akr 2008-11-13T16:33:03Z 2008-11-13T16:33:03Z <p>Vim:</p> <p>:%s/.* >//</p> http://stackoverflow.com/questions/146741/how-do-i-programmatically-cycle-a-router/146763#146763 1 Answer by akr for How do I programmatically cycle a router? akr 2008-09-28T21:17:09Z 2008-09-28T21:17:09Z <p>If you have access to the local web interface of the router you might be able to access the "reset" function of the router. You can try to call this via a http request, e.g. via wget. But this depends very much on the router. Some routers also support SNMP or a telnet interface.</p> <p>Another possibility is to plug the router into an ethernet-connected power strip which can be remotely controlled. These power strips usually have a simple http server build in, so you can individually switch on and off the devices that are connected.</p> http://stackoverflow.com/questions/145509/why-does-abcd-startswith-return-true/145514#145514 8 Answer by akr for Why does "abcd".StartsWith("") return true? akr 2008-09-28T09:04:21Z 2008-09-28T09:04:21Z <p>Well, because it is specified this way. See <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#startsWith(java.lang.String)" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/142916/whats-your-favorite-programmable-calculator/143228#143228 0 Answer by akr for What's your favorite programmable calculator? akr 2008-09-27T08:28:19Z 2008-09-27T08:28:19Z <p>For me it always be my first programmable calculator the <a href="http://en.wikipedia.org/wiki/HP-34C" rel="nofollow">HP-34C</a>. It has "continuous" memory, so when you don't loose programs and data when you switch it off. It also can solve integral and has root finding.</p> http://stackoverflow.com/questions/136099/when-is-a-feature-considered-done/136520#136520 0 Answer by akr for When is a feature considered "DONE"? akr 2008-09-25T22:12:20Z 2008-09-25T22:12:20Z <p>Simple answer: When it meets the requirements of the customer (or the people you are implementing the feature for).</p> <p>Not so simple answer: When it meets all the intrinsic requirements people/the customer expects: hidden quality requirements, extensibility, documentation, stability, ease-of-use, etc.</p> http://stackoverflow.com/questions/1192304/why-does-svn-not-update-correctly-is-there-a-workaround-besides-re-downloading-t/1192318#1192318 Comment by akr on Why does SVN not update correctly? Is there a workaround besides re-downloading the entire rep akr 2009-12-16T03:02:35Z 2009-12-16T03:02:35Z I like to emphasize: update the directory, not only the file! http://stackoverflow.com/questions/1882444/how-to-i-tell-visualsvn-to-do-a-replace-instead-of-a-merge Comment by akr on How to I tell VisualSVN to do a replace instead of a merge? akr 2009-12-10T23:20:38Z 2009-12-10T23:20:38Z +1 (from -2) Because this is not a wrong or bad question at all but shows a fundamental problem in the understanding of SVN The Answers and comments try to clarify this. http://stackoverflow.com/questions/1873780/best-editor-for-remote-pair-programming/1873848#1873848 Comment by akr on Best editor for remote pair programming? akr 2009-12-10T00:26:40Z 2009-12-10T00:26:40Z SubEthaEdit works great for collaborative work. I used it once for remotely developing and debugging some code and it worked great. http://stackoverflow.com/questions/1865819/when-should-i-use-import-package-and-when-should-i-use-require-bundle/1866722#1866722 Comment by akr on When should I use Import-Package and when should I use Require-Bundle? akr 2009-12-09T12:26:35Z 2009-12-09T12:26:35Z +1 because this is a good discussion of this topic. Small addition: require-bundle could be used to express dependencies that are different from just packages, e.g. a Bundle requires a resource in the form of another bundle to be present. http://stackoverflow.com/questions/1872329/storing-python-dictionary-entries-in-the-order-they-are-pushed/1872350#1872350 Comment by akr on Storing Python dictionary entries in the order they are pushed akr 2009-12-09T08:17:58Z 2009-12-09T08:17:58Z Nice. But keep in mind that is a new feature of an upcoming Python release and is not available in older versions. http://stackoverflow.com/questions/1866729/how-to-over-write-the-property-in-ant/1866750#1866750 Comment by akr on How to over-write the property in ant ? akr 2009-12-09T08:01:14Z 2009-12-09T08:01:14Z The var task is especially nice for &quot;local variables&quot;, e.g. in for loops (also a task from the excellent ant-contrib). One drawback, though, is that the var task doesn't support the &quot;location&quot; attribute. http://stackoverflow.com/questions/1818160/with-osgi-how-does-one-pass-parameters-from-a-host-to-a-embedded-bundle/1863927#1863927 Comment by akr on With OSGI how does one pass parameters from a host to a embedded bundle. akr 2009-12-08T22:34:19Z 2009-12-08T22:34:19Z You need to be aware that in OSGi bundles A or B can be started in any order. So B can be installed and started before A is installed, and vice versa. You should always follow the White Board pattern (see OSGi Spec): don't make any assumption that another bundle or service is started before another or is even present. It is a bit hard to grasp in the beginning, but you will end up with a much better design. Don't do dependency hard-coding. http://stackoverflow.com/questions/1870236/what-are-the-main-properties-which-a-programmer-must-have-or-should-have/1870258#1870258 Comment by akr on What are the main properties which a programmer must have or should have? akr 2009-12-08T22:24:48Z 2009-12-08T22:24:48Z And be able to follow lots of trains of thoughts at the same time. http://stackoverflow.com/questions/1818778/what-is-the-underline-theme-in-osgi/1836284#1836284 Comment by akr on What is the underline theme in OSGi? akr 2009-12-08T01:11:16Z 2009-12-08T01:11:16Z Before the OSGi Alliance renamed itself, OSGi stood for &quot;Open Services Gateway Initiative&quot;. It's main target were embedded home gateways and routers. http://stackoverflow.com/questions/1823864/a-good-algorithm-for-generating-an-order-number/1824327#1824327 Comment by akr on A good algorithm for generating an order number akr 2009-12-07T01:49:14Z 2009-12-07T01:49:14Z To increase the granularity you can add seconds and milliseconds. But you still will run into race conditions if you don't have a single synchronized order number factory. http://stackoverflow.com/questions/1417245/are-there-any-java-5-vm-for-embedded-environments/1417258#1417258 Comment by akr on Are there any Java 5 VM for embedded environments? akr 2009-10-14T19:54:48Z 2009-10-14T19:54:48Z I am actually looking for embedded systems such as home routers, NAS devices etc. Those systems sometimes run some kind of ARM-based Linux distro, sometimes other embedded OS. But thanks. Somehow I missed to look at Sun's own side. http://stackoverflow.com/questions/1417245/are-there-any-java-5-vm-for-embedded-environments/1417258#1417258 Comment by akr on Are there any Java 5 VM for embedded environments? akr 2009-09-15T08:35:12Z 2009-09-15T08:35:12Z As far as I can see Sun's Java Embedded only support Linux-based embedded systems. it would be interesting to see whether there is support for other OS as well. But this helps a lot. Thanks! http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/77453#77453 Comment by akr on How do I reward my developers for the little things they get right? akr 2008-11-25T11:27:08Z 2008-11-25T11:27:08Z No, that's not the intention. The real compensation must come from the company. Pizza is only a placeholder to show your appreciation and to give your colleagues an opportunity to chat while standing :) http://stackoverflow.com/questions/5010/best-technical-learning-conference-for-developers/5039#5039 Comment by akr on Best technical learning conference for developers? akr 2008-09-25T16:56:15Z 2008-09-25T16:56:15Z Well, this is true if you are only interested in the content and the presentations. But much more valuable are the side-talks, meeting with people and hear the offline opinions. http://stackoverflow.com/questions/110065/must-have-tools-for-an-os-x-switcher/110106#110106 Comment by akr on Must have tools for an OS X switcher akr 2008-09-21T12:01:23Z 2008-09-21T12:01:23Z Thanks. Corrected that.