Tags
ActiveMQ activex agile Bosanac Build Industrialization Command Continuous Integration cool craftsmanship Davies dll dll components driver Eclipse geek JDBC Jenkins JMS Linux Locations manifesto Manning maven Messaging MOM Mylyn Offline Oracle OSGI powershell reg regcap regsvr32 Reverse Engineer shell extensions smartphone Snyder Software Development Sonar Spring Roo Unix Update whereis which Windows-
Recent Posts
Archives
Categories
Meta
Category Archives: Tips and tricks
Create registry file (.reg) equivalent to the RegSvr32 command
If you have already programmed a bit in OLE/ActiveX/Shell extensions/etc. in the Microsoft world, you already know the RegSvr32 command used to register/unregister these dll components. The regsvr32.exe command only calls the DllRegisterServer entry point, i.e. a method with that … Continue reading
Posted in Tips and tricks
Tagged activex, dll, dll components, ole, reg, regcap, registry, regsvr32, shell extensions, Windows
Leave a comment
Workaround the Grub installation issue in Debian Wheezy
The current testing version of Debian, aka Wheezy, contains a rather annoying bug that prevents the installation of Grub, the multi-OS bootstrapper of Linux. Although this bug will be corrected at some point in the possibly near future, it is … Continue reading
How to “OSGIfy” an Oracle jdbc driver with Spring Roo
If you want to use Spring Roo to reverse engineer an existing Oracle database, you need to bundle the Oracle driver in an OSGI format (this is not required if you want to use Spring Roo with Oracle in a … Continue reading
Posted in Tips and tricks
Tagged driver, JDBC, Oracle, OSGI, Reverse Engineer, Software Development, Spring Roo
9 Comments
Windows: find the location of the executables
After having answered this question for Linux/Unix, I have encountered the same need for Windows. This is what I have found. Since Windows Server 2003 (including Vista and Windows 7), you can use the “where” command. Before Windows Server 2003 … Continue reading
Linux: find the location of the executables
How to locate the binary, source and/or man page files for a command? $ whereis command ‘whereis’ has some options you can specify in order to limit the places to look at, or the type of files (binary, source, man … Continue reading
Maven: check what it really executes
How to aggregate your pom? Sometimes, the need arises to debug a pom file and then you want to have a clear idea of what Maven really executes. This command shows your pom file after the inheritance, profiles and … Continue reading
Maven: sources and javadoc (…where available)
How to display the dependencies in your project as a list? mvn dependency:resolve How to display the dependencies in your project as a tree? mvn dependency:tree How to download the source code for the dependencies in your pom? … Continue reading
How to replicate an Eclipse update site for offline usage?
Today I’d like to share with you an Eclipse tip that I found a few months ago when browsing for an issue in the m2Eclipse Jira. The credit goes to Rich Seddon. Sometimes you need to install an Eclipse plugin … Continue reading