Links of articles I’ve recently posted at http://singztechmusings.in. Hope you like it!


Guys,

If you’re regularly following this blog, here’s an update for you: I’m also posting articles in my self-hosted wordpress instance at http://singztechmusings.in. I’ve listed here some of the articles I’ve recently added there, hope you find it helpful!

Java Garbage Collection Algorithm Design Choices And Metrics To Evaluate Garbage Collector Performance

Memory Management in the Java HotSpot Virtual Machine View more documents from white paper Serial vs Parallel With serial collection, only one thing happens at a time. For example, even when multiple CPUs are available, only one is utilized to perform the collection. When parallel collection is used, the task of garbage collection is split into parts [...]

Getting started with Git: A beginner’s guide to work with Git commands / EGit in Eclipse IDE for common version control operations

Happened to see a presentation about Git basics – Understanding and Using Git at Eclipse – presented at Eclipsecon2011, thought it’d be helpful for Git beginners who might encounter this post. Outline What is Git? – A Distributed Version Control System (DVCS) – Originally created for Linux kernel Git vs Centralized Version Control Cloning & [...]

Eclipse IDE – Subclipse plugin: How to clear the saved / cached SVN password credential for JavaHL SVN connector in Windows 7?

1.  Go to Eclipse IDE (in my case, it’s Helios)> Window > Preferences > Team > SVN > SVN interface (in the displayed contents of SVN) > Client. If you see Java HL, you need to do Step 2 to clear the saved password (By default, Subclipse, the Eclipse plugin we use to connect to [...]

Getting started with Python in Windows: Step-by-step guide to install PyDev Eclipse Plugin

Python – An Introduction Quoting from Wikipedia, Python is a general-purpose, high-level programming language whose design philosophy emphasizes code readability. Python claims to “[combine] remarkable power with very clear syntax”, and its standard library is large and comprehensive. Its use of indentation for block delimiters is unique among popular programming languages. Python supports multiple programming paradigms, primarily but not limited to object-oriented, imperative and, to a lesser extent, functional programming styles. [...]

Attaching sources / javadocs to your own Maven artifacts’ build in Eclipse

To attach sources and javadocs along with the build, you need to add these two plugins to the POM (or parent POM) – maven-source-plugin and maven-javadoc-plugin. Configuring Maven Source Plugin Configuring Maven Javadoc Plugin Build On Run As > Maven Package, you’ll get the sources / javadocs in target/ folder and on Run As > [...]

How to get sources / javadocs attached to Eclipse for Maven artifacts?

Solution #1: Run As > Maven Build… > Goals: eclipse:eclipse -DdownloadSources -DdownloadJavadocs Solution #2: Right-click on the Maven project / a particular JAR > Maven > Download Sources (or) Download JavaDoc Downloading sources would be really helpful when you’re debugging your project – you would be able to step inside the source files corresponding to [...]

 

Articles at http://singztechmusings.in

 


About this entry