Category: Uncategorized

Top 25 molecules used in plastics

Plastic is an essential material in our daily lives. From packaging to construction, from electronics to medical devices, plastic is ubiquitous. While there are many types of plastics, they all…

Getting started with GIT

A version control system keeps track of changes in code. It keeps track of every change made by every developer. It allows code bases to be branched and then merged…

Splitting strings in Java

Java’s split function packs a powerful punch. You can use it to split string on characters, symbols, substrings, a collection of symbols, or even regular expressions. public class SplitString {…

Linux batch renaming files

Batch renaming files in Linux requires writing or using a shell script. If you don’t have the time to write or find a shell script to batch rename your files,…