Home
No items were found matching your selection.

Whether you are troubleshooting an issue or want to be more productive in your day-to-day development or you are going to develop your next cutting-edge application, we have articles and guides to help you.



Recent Articles

Visual Portfolio, Posts & Image Gallery for WordPress

A Full-Fledged Java-Based HTTP Client

Date January 2, 2020
Views 1,754 Views
Reading Time 3 Mins Read
We are going to write a mini-browser that can establish a connection with any website (URL) over HTTP protocol and then send requests & receive response messages. For example, you may hit https://google.com and receive the HTML content or hit a REST API endpoint and receive JSON content.
Read More

How to use the Java Instrumentation API to determine object size?

Date August 22, 2019
Views 7,653 Views
Reading Time 3 Mins Read
In Java 1.5 Instrumentation API was introduced to enable byte-code modification (instrumentation) of classes and to get runtime insights. This is very helpful to tool developers. In this article, we’ll see how Instrumentation API can be leveraged to determine approximate object size at runtime.
Read More

Git – Globally Ignore Certain File Types

Date July 25, 2019
Views 857 Views
Reading Time 2 Mins Read
ll show you the steps to use a global .gitignore file to apply the exclusion pattern to all your repositories. Create a new file named .gitignore-global (or any other name you like) at the user’s home directory or any other directory of your choice. Add all required exclusions to this file just like a normal.gitignore…
Read More

Getting Started with Perforce Command Line

Date July 15, 2019
Views 8,572 Views
Reading Time 2 Mins Read
I have been working on a project that uses Perforce for source control. Perforce workflow is not much different from Git or any other source control system.
Read More

How To Cache Git Credentials

Date July 15, 2019
Views 951 Views
Reading Time < 1 Min Read
If you are using password-based authentication to authenticate yourself to the Git server, it might prompt you to enter your password every time you execute git commands. To avoid that you can configure Git to cache your credential.
Read More

Recursively Download Files Using wget

Date July 15, 2019
Views 1,621 Views
Reading Time < 1 Min Read
If you want to download multiple files recursively from a website wget is the way to go. The popular alternative tool curl does not support recursive download. # Download all files having extension jar, xml but not exe from the given path looking at one level (immediate children only) wget -r -np -l 1 -A…
Read More

Change Author and Commit Message Before or After Push to Git

Date July 8, 2019
Views 4,209 Views
Reading Time 3 Mins Read
After committing a change, you realized that either the author is not appearing correctly or the commit message needs a change. There are two likely scenarios and in each scenario, we’ll explore how to change the commit metadata.
Read More
Be The First

Join our list to get instant access to new articles and weekly newsletter.