Skip to main content

About me

Hello friends,

I'm Girish Salaskar. A web developer having knowledge of different technologies like Java, PHP, MySQL etc.

The purpose of this blog is to share my knowledge, experiences I got while working on technologies, tips and tricks I'm familiar about and so on.

Many of us (almost all of us) get some challenges in work, at that time we find some ways to overcome that. After resolving the issue or fulfilling the requirements, we forget about even noting down the solution (or sometimes tricks we can say) we applied to make the thing possible.

So firstly I've started noting down those challenges. But at some point, my friends also was facing same issue, so I've explained them. Then I thought that instead of noting down personally and explaining that to friends, start writing blog to share the tricks and extra knowledge about the technologies.

So after publishing 2 notes on medium blogging site, I decided to shift from medium to blogger. I'm adding all the past and future tricks on this blog. So it will be helpful to everyone who is seeking for it.

You also can share your knowledge, tips and tricks in comment. I'll moderate and post those with the author name.

Good luck friends.🙂🙌🙏👍
Girish.

Popular posts from this blog

Import multiple db files from folder into mysql db

Hello friends, Welcome back In the previous article, we've seen how to export database by table files, not the entire db file. Now in this article, here we're going to see the sample code for importing multiple sql files into same db. This also has been achieved by using a simple shell script. In this script, applied a for loop on list of files in a directory and by using that file name, mysql's import command is executed. The code is simple, you'll learn in just few minutes. Linux shell script: Execute above code in linux terminal to import all files into the given db. Hope this would help you. Thanks.

The final keyword in java

Hello friends, Welcome back 🙂. In this article, I'm going to give a short introduction to final keyword which would be helpful to know more about it. The final keyword in java has multiple uses. The main purpose of the final keyword is to add some restrictions on java elements (class, member and method). The restrictions have been described as below. Use of final keyword: 1. The final class : We can say the class is final when it declared as final. The restriction on final class is that the final class cannot be extended by any class. Rest of the behavior of the class remains same as any normal class. 2. The final method : The method declared using final keyword is to be said as final method. The restriction is that the final method cannot be overridden by derived class. This restriction applies to static method also. 3. The final member : The final member is the java class's member which is declared using final keyword. The restriction is that it can be initial...

XML tools on linux

Hello friends, Welcome back 🙂 In this article, we're going through XML tools which are useful for manipulation of XML. Recently I've worked on 3 tools so for now, adding those 3 tool's information, but as I get more, I'll update the article. These tools useful for validation and split/merge the XML. These tools available on both RHEL family and Debian family  linux which are same in use for both debian and RHEL. The tools are: 1. xmllint: This tool is used for xml validation. For some reason, we need to validate XML tags with its proper openings and closing i.e. syntactic validation, also we need to validate the data in the XML. The data can be different by its type which is defined in the XML's DTD, to detect this also, xmllint is useful. With this tool, there are multiple options we can use i.e. only syntactic validation, schema validation, DTD validation etc. When I was facing issue for validating the XML which having schema, I found this tool. H...