Skip to content

August 2020

Regular Expressions In Java

Regular Expressions are a key element in programming. There are times that you can save a lot of time with a simple Regex. As a lot of my teachers said while I was studying, it is an important thing that you should be familiar with. Regular Expressions are designed to help you define a pattern to search for in a String. You can use it to check whether a parameter is valid or to find a specific pattern of text in a large file. In Java, you’ll be using java.util.regex package to implement Regex logics to your project.

Read More »Regular Expressions In Java

Why you should stop using Chrome?

Chrome is dominating the browser market since 2012. Maybe you’re thinking “Google is making a good job and having a lot of users because of this, is very natural” and you might be right. Yes, Google Chrome has a lot of features like remote control, casting, and whatnot. But it is not how Google achieved this success but where it is headed is concerning. So why exactly we must stop Chrome?

Browser market share image, Chrome 65 percent, Safari follows with 16 percent
Browser market share data acquired from gs.statcounter.com (19/08/2020)
Read More »Why you should stop using Chrome?

How to transfer files from and to Android device via ADB

Transferring files between PC and Android is easy. But while working on a project which requires sending files back and forth between your computer and mobile device you may find this ADB commands useful. Whether it’s a certificate file or an image it’s easy to transfer files with ADB. I believe I do not have to state that this requires connecting your device via USB and having the required drivers installed on your computer.

Read More »How to transfer files from and to Android device via ADB