diff --git a/Gemfile.lock b/Gemfile.lock index 01db6b3..ab0c0e1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -65,7 +65,6 @@ GEM sass-listen (4.0.0) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) - wdm (0.1.1) PLATFORMS ruby @@ -80,7 +79,6 @@ DEPENDENCIES kramdown kramdown-parser-gfm rouge - wdm (>= 0.1.0) BUNDLED WITH - 2.1.4 + 2.2.11 diff --git a/_config.yml b/_config.yml index d140cd7..7263aea 100644 --- a/_config.yml +++ b/_config.yml @@ -58,6 +58,6 @@ adsense-data-ad-client: "ca-pub-4206814002327904" adsense-data-ad-slot: "1363087678" # Lazy Images ("enabled" or "disabled") -lazyimages: "disabled" +lazyimages: "enabled" exclude: [changelog.md, LICENSE.txt, README.md, Gemfile, Gemfile.lock] diff --git a/_pages/about.md b/_pages/about.md index 3514b2d..8d1f1c3 100644 --- a/_pages/about.md +++ b/_pages/about.md @@ -8,12 +8,12 @@ comments: false
Hello šš¼ its Gaurav, +
Hello šš¼ I am Gaurav, let's find out what is coderolls.
-coderolls is a blog about coding. Here I do write articles about Java programming language, Spring Framework, Hibernate, SQL, GIT and many related technologies.
+coderolls is a blog about coding. Here I do write articles about Java programming language, Spring Framework, Hibernate, SQL, GIT, and many related technologies.
-At coderolls I am trying to write easy to undersatnd but in detail tutorials. I am writing few examples in the tutorials which elaborate the conecpt.
+At coderolls, I am trying to write easy-to-understand but in detail tutorials. I am writing few examples in the tutorials which elaborate the concept.
If you have any questions please feel free to reach us at hello@coderolls.com
@@ -39,7 +39,7 @@ let's find out what is coderolls."Hi šš¼ I'm Gaurav Kukade, a software developer. Here I write tutorials for Java programming language and related technologies."
+Hi šš¼ I'm Gaurav Kukade, a software developer. Here I write tutorials for Java programming language and related technologies.
I like to try new things in the world of coding.
@@ -54,7 +54,7 @@ You can connect with me on LinkeThank you for your support! Your donation helps me to maintain and improve coderolls .
+Thank you for your support! Your donation helps me to maintain and improve coderolls.
Buy me a coffee ā diff --git a/_posts/groovy/2020-12-31-hello-world-in-groovy.md b/_posts/groovy/2020-12-31-hello-world-in-groovy.md index b9c320c..8f937e1 100644 --- a/_posts/groovy/2020-12-31-hello-world-in-groovy.md +++ b/_posts/groovy/2020-12-31-hello-world-in-groovy.md @@ -2,7 +2,7 @@ layout: post title: "Hello World In Groovy" author: gaurav -image: assets/images/2020-12-31/groovy-logo.png +image: assets/images/2020-12-31/groovy-logo.webp categories: [ Groovy] description: "In this article you will say 'Hello' to Groovy. We will see the installation and 'the' most important 'Hello World!' program." featured: false @@ -23,7 +23,7 @@ Here is a [link for Windows Installer for Groovy 3.0.7](https://bintray.com/groo Once you download the .msi file ( i.e. installer) simply double click on it and you will see the installation screen. - + The installation is pretty simple and straight-forward. Click on next and go with the default setting. @@ -37,7 +37,7 @@ Refer to the [official installation guide](https://groovy-lang.org/install.html) Once you are done with the installation, you can search for the Groovy Console from your start menu. And finally, you are ready to write your first "Hello World!" program. - + ## Hello World In Groovy @@ -55,7 +55,7 @@ Open your Groovy Console. Add the following statement to it. ```groovy println "Hello World!" ``` - + To run your program right click on the console and choose the 'Run' option. @@ -65,7 +65,7 @@ Boom!! š You can see the string "Hello World!" is printed on the console. - + So you have successfully written your first groovy program. @@ -85,4 +85,4 @@ You can support me by [giving a cup of Coffee ā](https://www.paypal.me/GauravK - [Learn About Java String Pool And intern() Method](https://coderolls.com/java-string-pool-and-intern-method/) - [How Do I Compare Strings In Java](https://coderolls.com/compare-strings-in-java/) - [Compare Two Strings Lexicographically In Java](https://coderolls.com/compare-two-strings-lexicographically-in-java/) -- [Difference Between StringBuffer and StringBuilder class](https://coderolls.com/difference-between-stringbuffer-and-stringbuilder/) \ No newline at end of file +- [Difference Between StringBuffer and StringBuilder class](https://coderolls.com/difference-between-stringbuffer-and-stringbuilder/) diff --git a/_posts/java-basic/2019-11-29-java-introduction.md b/_posts/java-basic/2019-11-29-java-introduction.md index 80f4c9b..27dd931 100644 --- a/_posts/java-basic/2019-11-29-java-introduction.md +++ b/_posts/java-basic/2019-11-29-java-introduction.md @@ -27,7 +27,7 @@ Letās understand Java as a programming language. Java is a high-level programming language. It is a concurrent, class-based, object-oriented programming language. - + We will understand Java by the following simple terms, letās discuss one by one, @@ -136,7 +136,7 @@ When we compile this file with the javac compiler, the .class file will be gener Refer the following diagram, - + What was your experience when you started learning Java, share with us in the comment section. diff --git a/_posts/java-files-io/2021-01-03-read-file-using-bufferedreader.md b/_posts/java-files-io/2021-01-03-read-file-using-bufferedreader.md index f4f4c60..71cbcf5 100644 --- a/_posts/java-files-io/2021-01-03-read-file-using-bufferedreader.md +++ b/_posts/java-files-io/2021-01-03-read-file-using-bufferedreader.md @@ -2,7 +2,7 @@ layout: post title: "How To Read File Using BufferedReader In Java?" author: gaurav -image: assets/images/2021-01-03/read-file-using-bufferedreader.png +image: assets/images/2021-01-03/read-file-using-bufferedreader.webp categories: [Java, Java File IO] description: "In this article we will see how to read a file using the `BufferedReader` class in Java." --- diff --git a/_posts/java-string/2019-11-30-compare-two-strings-lexicographically-in-java.md b/_posts/java-string/2019-11-30-compare-two-strings-lexicographically-in-java.md index 951ca18..116bb3c 100644 --- a/_posts/java-string/2019-11-30-compare-two-strings-lexicographically-in-java.md +++ b/_posts/java-string/2019-11-30-compare-two-strings-lexicographically-in-java.md @@ -30,7 +30,7 @@ Java `compareTo()` method Compares two strings lexicographically, The comparison The character sequence represented by the String object is compared lexicographically to the character sequence represented by the argument string. - + ```java int compareTo(T o) @@ -104,12 +104,12 @@ Compairing character sequence of fourthString (Cheese) to the character sequence Explanation: 1. In first case,`compareTo()` method returns zero since firstString and secondString are same. 2. In second case, `compareTo()` method returns 14 since secondString follows thirdString by 14 characters. The pictorial explanation for this case is given below. - + 3. In third case, `compareTo()` method returns -1 since thirdString precedes fourthString by 1 character. 4. In last case, `compareTo()` method returns -13 since fourthString precedes firstString by 13 characters. The pictorial explanation for this case is given below. - + ## 2. By creating a user-defined method diff --git a/_posts/java-string/2019-12-02-reverse-a-string-in-java.md b/_posts/java-string/2019-12-02-reverse-a-string-in-java.md index a797f06..aebc940 100644 --- a/_posts/java-string/2019-12-02-reverse-a-string-in-java.md +++ b/_posts/java-string/2019-12-02-reverse-a-string-in-java.md @@ -85,11 +85,12 @@ In the `for` loop, I have assigned `blogName.length()-1` to i instead of `blogNa I have given an image below to show the string indexing. - + Also you can watch [the video on my youtube channel for reverse a string with the above method](https://www.youtube.com/watch?v=vrTYrQuB0BE). -[](https://www.youtube.com/watch?v=vrTYrQuB0BE "How To Reverse A String In Java") + + ## 2. Using `getBytes()` method of String In the `getBytes()` method of Java String first encodes the specified string into the sequence of bytes using the platforms default charset and then save the result in the byte array. The same byte array will be returned. diff --git a/_posts/java-string/2019-12-10-compare-strings-in-java.md b/_posts/java-string/2019-12-10-compare-strings-in-java.md index e38f79f..2d0094c 100644 --- a/_posts/java-string/2019-12-10-compare-strings-in-java.md +++ b/_posts/java-string/2019-12-10-compare-strings-in-java.md @@ -176,7 +176,7 @@ If it is present in the string pool, the reference to the memory address of that The following image shows the pictorial explanation of the same. - + āfirstStringā pointing towards the ācoderollsā string in string pool @@ -186,13 +186,13 @@ Since the string object with that value is already created in the previous step. The following image shows the pictorial explanation for the same - + āfirstStringā and āsecondStringā pointing towards the ācoderollsā string in string pool When we create string using the `new` operator, a new string object is created and stored in the Java heap space. - + āfirstStringā and āsecondStringā pointing towards the ācoderollsā string in string pool and āthirdStringā pointing towards the ācoderollsā in java heap space.t @@ -202,7 +202,7 @@ When we create string using the `new` operator, a new string object is created `compareTo()` method compares the character sequence of the argument string with the character sequence of the specified string. - + Showing argument string and a specified string. diff --git a/_posts/java-string/2019-12-12-java-substring-method.md b/_posts/java-string/2019-12-12-java-substring-method.md index 262ef14..6528cc3 100644 --- a/_posts/java-string/2019-12-12-java-substring-method.md +++ b/_posts/java-string/2019-12-12-java-substring-method.md @@ -57,7 +57,7 @@ If the given string is ācodeRolls.comā and we applied the substring() method See the pictorial explanation shown below. - + substring() method explanation with one parameter i.e. beginIndex @@ -126,7 +126,7 @@ Let us take a simple string like ācodeRolls.comā and I will apply the `subs See the pictorial explanation shown below. - + Let us see the full java code for the example stated above. diff --git a/_posts/java-string/2019-12-24-difference-between-stringbuffer-and-stringbuilder.md b/_posts/java-string/2019-12-24-difference-between-stringbuffer-and-stringbuilder.md index a07f36b..3eb50ad 100644 --- a/_posts/java-string/2019-12-24-difference-between-stringbuffer-and-stringbuilder.md +++ b/_posts/java-string/2019-12-24-difference-between-stringbuffer-and-stringbuilder.md @@ -2,7 +2,7 @@ layout: post title: "Difference Between StringBuffer and StringBuilder class" author: gaurav -image: assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.jpg +image: assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.webp categories: [ Java, Core Java, String] description: "In this article, we are going to discuss the differences between the `StringBuffer` and `StringBuilder` class. And we will see why it `StringBuilder` is preferable to `StringBuffer` class." featured: false diff --git a/_posts/java-string/2020-12-24-convert-stringbuilder-to-string-in-java.md b/_posts/java-string/2020-12-24-convert-stringbuilder-to-string-in-java.md index b11945b..56f11c8 100644 --- a/_posts/java-string/2020-12-24-convert-stringbuilder-to-string-in-java.md +++ b/_posts/java-string/2020-12-24-convert-stringbuilder-to-string-in-java.md @@ -2,7 +2,7 @@ layout: post title: "How To Convert StringBuilder To String In Java?" author: gaurav -image: assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.png +image: assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.webp categories: [ Java, Core Java, String] description: "In this article you will see, how to convert a StringBuilder to String in Java." featured: false diff --git a/_posts/java-uuid/2020-12-19-uuid-in -java.md b/_posts/java-uuid/2020-12-19-uuid-in-java.md similarity index 97% rename from _posts/java-uuid/2020-12-19-uuid-in -java.md rename to _posts/java-uuid/2020-12-19-uuid-in-java.md index a68278b..6b6332b 100644 --- a/_posts/java-uuid/2020-12-19-uuid-in -java.md +++ b/_posts/java-uuid/2020-12-19-uuid-in-java.md @@ -2,7 +2,7 @@ layout: post title: "Your Guide To UUID In Java" author: gaurav -image: assets/images/2020-12-19/uuid.png +image: assets/images/2020-12-19/uuid.webp categories: [ Java, Core Java, String] description: In this article you will learn what is UUID and about the Java UUID class. featured: false @@ -50,7 +50,7 @@ UUID can be used in the following cases df6fdea1-10c3-474c-ae62-e63def80de0b - + ## Java UUID class UUID Class belongs to the `java.util` package. It represents an immutable universally unique identifier (UUID). diff --git a/_posts/java-uuid/2020-12-23-create-uuid-in-java.md b/_posts/java-uuid/2020-12-23-create-uuid-in-java.md index ec7e6db..2ea991f 100644 --- a/_posts/java-uuid/2020-12-23-create-uuid-in-java.md +++ b/_posts/java-uuid/2020-12-23-create-uuid-in-java.md @@ -2,7 +2,7 @@ layout: post title: "How To Create UUID in Java?" author: gaurav -image: assets/images/2020-12-23/create-uuid-in-java.png +image: assets/images/2020-12-23/create-uuid-in-java.webp categories: [ Java, Core Java, String] description: "In this article you will see, how to create UUID in Java." featured: true diff --git a/assets/css/screen.css b/assets/css/screen.css index 5f2d8f5..bdd2321 100644 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -330,7 +330,7 @@ span.post-read-more a:hover { } .article-post { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-size: 1.1rem; line-height: 1.84; color: rgba(0, 0, 0, .8); @@ -711,7 +711,7 @@ h6 { } .layout-page .article-post { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-size: 1rem; } @@ -933,4 +933,4 @@ right social connect svg's. .lh-condensed-ultra{ line-height: 1!important; -} \ No newline at end of file +} diff --git a/assets/images/13.jpg b/assets/images/13.jpg index 67d1a01..db31034 100644 Binary files a/assets/images/13.jpg and b/assets/images/13.jpg differ diff --git a/assets/images/2019-11-29/how-java-code-works.webp b/assets/images/2019-11-29/how-java-code-works.webp new file mode 100644 index 0000000..e7529be Binary files /dev/null and b/assets/images/2019-11-29/how-java-code-works.webp differ diff --git a/assets/images/2019-11-29/java-introduction.webp b/assets/images/2019-11-29/java-introduction.webp new file mode 100644 index 0000000..b263954 Binary files /dev/null and b/assets/images/2019-11-29/java-introduction.webp differ diff --git a/assets/images/2019-11-29/java-language-feature.webp b/assets/images/2019-11-29/java-language-feature.webp new file mode 100644 index 0000000..82f6afd Binary files /dev/null and b/assets/images/2019-11-29/java-language-feature.webp differ diff --git a/assets/images/2019-11-30/comapreto-method-fourthString-compareto-firstString.webp b/assets/images/2019-11-30/comapreto-method-fourthString-compareto-firstString.webp new file mode 100644 index 0000000..38a5a1d Binary files /dev/null and b/assets/images/2019-11-30/comapreto-method-fourthString-compareto-firstString.webp differ diff --git a/assets/images/2019-11-30/comapreto-method-secondstring-compareto-thirdstring.webp b/assets/images/2019-11-30/comapreto-method-secondstring-compareto-thirdstring.webp new file mode 100644 index 0000000..7d97a18 Binary files /dev/null and b/assets/images/2019-11-30/comapreto-method-secondstring-compareto-thirdstring.webp differ diff --git a/assets/images/2019-11-30/compareto-method-string-def.webp b/assets/images/2019-11-30/compareto-method-string-def.webp new file mode 100644 index 0000000..9364eb8 Binary files /dev/null and b/assets/images/2019-11-30/compareto-method-string-def.webp differ diff --git a/assets/images/2019-12-02/alex-radelich.jpg b/assets/images/2019-12-02/alex-radelich.jpg index 607e0c8..1274cac 100644 Binary files a/assets/images/2019-12-02/alex-radelich.jpg and b/assets/images/2019-12-02/alex-radelich.jpg differ diff --git a/assets/images/2019-12-02/alex-radelich.webp b/assets/images/2019-12-02/alex-radelich.webp new file mode 100644 index 0000000..3fb320f Binary files /dev/null and b/assets/images/2019-12-02/alex-radelich.webp differ diff --git a/assets/images/2019-12-02/string-indexing.png b/assets/images/2019-12-02/string-indexing.png index 7ae0bcf..97e0f5b 100644 Binary files a/assets/images/2019-12-02/string-indexing.png and b/assets/images/2019-12-02/string-indexing.png differ diff --git a/assets/images/2019-12-02/string-indexing.webp b/assets/images/2019-12-02/string-indexing.webp new file mode 100644 index 0000000..9eda4d4 Binary files /dev/null and b/assets/images/2019-12-02/string-indexing.webp differ diff --git a/assets/images/2019-12-10/firstString-pointing-to-coderolls-in-string-pool.png b/assets/images/2019-12-10/firstString-pointing-to-coderolls-in-string-pool.png index ca543ad..8a90a1a 100644 Binary files a/assets/images/2019-12-10/firstString-pointing-to-coderolls-in-string-pool.png and b/assets/images/2019-12-10/firstString-pointing-to-coderolls-in-string-pool.png differ diff --git a/assets/images/2019-12-10/firstString-pointing-to-coderolls-in-string-pool.webp b/assets/images/2019-12-10/firstString-pointing-to-coderolls-in-string-pool.webp new file mode 100644 index 0000000..3040429 Binary files /dev/null and b/assets/images/2019-12-10/firstString-pointing-to-coderolls-in-string-pool.webp differ diff --git a/assets/images/2019-12-10/secondString-pointing-to-coderolls-in-string-pool.png b/assets/images/2019-12-10/secondString-pointing-to-coderolls-in-string-pool.png index d03ad3f..ec35c55 100644 Binary files a/assets/images/2019-12-10/secondString-pointing-to-coderolls-in-string-pool.png and b/assets/images/2019-12-10/secondString-pointing-to-coderolls-in-string-pool.png differ diff --git a/assets/images/2019-12-10/secondString-pointing-to-coderolls-in-string-pool.webp b/assets/images/2019-12-10/secondString-pointing-to-coderolls-in-string-pool.webp new file mode 100644 index 0000000..b2f78df Binary files /dev/null and b/assets/images/2019-12-10/secondString-pointing-to-coderolls-in-string-pool.webp differ diff --git a/assets/images/2019-12-10/showing-argument-string-and-specified-string.png b/assets/images/2019-12-10/showing-argument-string-and-specified-string.png index 291a866..c773c06 100644 Binary files a/assets/images/2019-12-10/showing-argument-string-and-specified-string.png and b/assets/images/2019-12-10/showing-argument-string-and-specified-string.png differ diff --git a/assets/images/2019-12-10/showing-argument-string-and-specified-string.webp b/assets/images/2019-12-10/showing-argument-string-and-specified-string.webp new file mode 100644 index 0000000..fbc8fb9 Binary files /dev/null and b/assets/images/2019-12-10/showing-argument-string-and-specified-string.webp differ diff --git a/assets/images/2019-12-10/thirdString-pointing-to-coderolls-in-heap.png b/assets/images/2019-12-10/thirdString-pointing-to-coderolls-in-heap.png index 117bc69..a7ed542 100644 Binary files a/assets/images/2019-12-10/thirdString-pointing-to-coderolls-in-heap.png and b/assets/images/2019-12-10/thirdString-pointing-to-coderolls-in-heap.png differ diff --git a/assets/images/2019-12-10/thirdString-pointing-to-coderolls-in-heap.webp b/assets/images/2019-12-10/thirdString-pointing-to-coderolls-in-heap.webp new file mode 100644 index 0000000..ece9414 Binary files /dev/null and b/assets/images/2019-12-10/thirdString-pointing-to-coderolls-in-heap.webp differ diff --git a/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex-and-endIndex.png b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex-and-endIndex.png index f4ba27f..0e5af71 100644 Binary files a/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex-and-endIndex.png and b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex-and-endIndex.png differ diff --git a/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex-and-endIndex.webp b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex-and-endIndex.webp new file mode 100644 index 0000000..72d66e5 Binary files /dev/null and b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex-and-endIndex.webp differ diff --git a/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex.png b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex.png index 88b9dfd..ea87036 100644 Binary files a/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex.png and b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex.png differ diff --git a/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex.webp b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex.webp new file mode 100644 index 0000000..422cc5e Binary files /dev/null and b/assets/images/2019-12-12-java-substring-method/substring-method-with-beginIndex.webp differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-add.gif b/assets/images/2019-12-20-basic-git-commands/git-add.gif index cfcd9a3..6ef4e80 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-add.gif and b/assets/images/2019-12-20-basic-git-commands/git-add.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-branch.gif b/assets/images/2019-12-20-basic-git-commands/git-branch.gif index 4e98585..832bf40 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-branch.gif and b/assets/images/2019-12-20-basic-git-commands/git-branch.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-clone.gif b/assets/images/2019-12-20-basic-git-commands/git-clone.gif index 50a6214..6d98e57 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-clone.gif and b/assets/images/2019-12-20-basic-git-commands/git-clone.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-commit.gif b/assets/images/2019-12-20-basic-git-commands/git-commit.gif index fa89261..e282136 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-commit.gif and b/assets/images/2019-12-20-basic-git-commands/git-commit.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-init.gif b/assets/images/2019-12-20-basic-git-commands/git-init.gif index 10a49bb..88b5c64 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-init.gif and b/assets/images/2019-12-20-basic-git-commands/git-init.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-new-branch.gif b/assets/images/2019-12-20-basic-git-commands/git-new-branch.gif index 0334170..50dd3d0 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-new-branch.gif and b/assets/images/2019-12-20-basic-git-commands/git-new-branch.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-pull.gif b/assets/images/2019-12-20-basic-git-commands/git-pull.gif index e1f8ef8..653093b 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-pull.gif and b/assets/images/2019-12-20-basic-git-commands/git-pull.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-push.gif b/assets/images/2019-12-20-basic-git-commands/git-push.gif index 864a561..8e45323 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-push.gif and b/assets/images/2019-12-20-basic-git-commands/git-push.gif differ diff --git a/assets/images/2019-12-20-basic-git-commands/git-status.gif b/assets/images/2019-12-20-basic-git-commands/git-status.gif index db19ddc..965c444 100644 Binary files a/assets/images/2019-12-20-basic-git-commands/git-status.gif and b/assets/images/2019-12-20-basic-git-commands/git-status.gif differ diff --git a/assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.jpg b/assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.jpg index b589104..448973b 100644 Binary files a/assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.jpg and b/assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.jpg differ diff --git a/assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.webp b/assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.webp new file mode 100644 index 0000000..d3473e5 Binary files /dev/null and b/assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.webp differ diff --git a/assets/images/2020-12-19/uuid.png b/assets/images/2020-12-19/uuid.png index 9d5f976..872e42a 100644 Binary files a/assets/images/2020-12-19/uuid.png and b/assets/images/2020-12-19/uuid.png differ diff --git a/assets/images/2020-12-19/uuid.webp b/assets/images/2020-12-19/uuid.webp new file mode 100644 index 0000000..4abfe74 Binary files /dev/null and b/assets/images/2020-12-19/uuid.webp differ diff --git a/assets/images/2020-12-23/create-uuid-in-java.png b/assets/images/2020-12-23/create-uuid-in-java.png index 66b7686..108803f 100644 Binary files a/assets/images/2020-12-23/create-uuid-in-java.png and b/assets/images/2020-12-23/create-uuid-in-java.png differ diff --git a/assets/images/2020-12-23/create-uuid-in-java.webp b/assets/images/2020-12-23/create-uuid-in-java.webp new file mode 100644 index 0000000..8ce0614 Binary files /dev/null and b/assets/images/2020-12-23/create-uuid-in-java.webp differ diff --git a/assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.png b/assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.png index 309540e..1263974 100644 Binary files a/assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.png and b/assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.png differ diff --git a/assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.webp b/assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.webp new file mode 100644 index 0000000..e4b193f Binary files /dev/null and b/assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.webp differ diff --git a/assets/images/2020-12-31/groovy-console-in-start-menu.png b/assets/images/2020-12-31/groovy-console-in-start-menu.png index ce9229d..8402872 100644 Binary files a/assets/images/2020-12-31/groovy-console-in-start-menu.png and b/assets/images/2020-12-31/groovy-console-in-start-menu.png differ diff --git a/assets/images/2020-12-31/groovy-console-in-start-menu.webp b/assets/images/2020-12-31/groovy-console-in-start-menu.webp new file mode 100644 index 0000000..a89c825 Binary files /dev/null and b/assets/images/2020-12-31/groovy-console-in-start-menu.webp differ diff --git a/assets/images/2020-12-31/groovy-hello-world-output.png b/assets/images/2020-12-31/groovy-hello-world-output.png index 2a30234..1b6decf 100644 Binary files a/assets/images/2020-12-31/groovy-hello-world-output.png and b/assets/images/2020-12-31/groovy-hello-world-output.png differ diff --git a/assets/images/2020-12-31/groovy-hello-world-output.webp b/assets/images/2020-12-31/groovy-hello-world-output.webp new file mode 100644 index 0000000..d3fa19a Binary files /dev/null and b/assets/images/2020-12-31/groovy-hello-world-output.webp differ diff --git a/assets/images/2020-12-31/groovy-hello-world-program-and-run-option.png b/assets/images/2020-12-31/groovy-hello-world-program-and-run-option.png index cea8fac..9f12a7b 100644 Binary files a/assets/images/2020-12-31/groovy-hello-world-program-and-run-option.png and b/assets/images/2020-12-31/groovy-hello-world-program-and-run-option.png differ diff --git a/assets/images/2020-12-31/groovy-hello-world-program-and-run-option.webp b/assets/images/2020-12-31/groovy-hello-world-program-and-run-option.webp new file mode 100644 index 0000000..b71c85c Binary files /dev/null and b/assets/images/2020-12-31/groovy-hello-world-program-and-run-option.webp differ diff --git a/assets/images/2020-12-31/groovy-installation-screen.png b/assets/images/2020-12-31/groovy-installation-screen.png index ec7c2fe..e8702b3 100644 Binary files a/assets/images/2020-12-31/groovy-installation-screen.png and b/assets/images/2020-12-31/groovy-installation-screen.png differ diff --git a/assets/images/2020-12-31/groovy-installation-screen.webp b/assets/images/2020-12-31/groovy-installation-screen.webp new file mode 100644 index 0000000..448334e Binary files /dev/null and b/assets/images/2020-12-31/groovy-installation-screen.webp differ diff --git a/assets/images/2020-12-31/groovy-logo.png b/assets/images/2020-12-31/groovy-logo.png index d6d7649..26232c4 100644 Binary files a/assets/images/2020-12-31/groovy-logo.png and b/assets/images/2020-12-31/groovy-logo.png differ diff --git a/assets/images/2020-12-31/groovy-logo.webp b/assets/images/2020-12-31/groovy-logo.webp new file mode 100644 index 0000000..73d9444 Binary files /dev/null and b/assets/images/2020-12-31/groovy-logo.webp differ diff --git a/assets/images/2021-01-03/read-file-using-bufferedreader.png b/assets/images/2021-01-03/read-file-using-bufferedreader.png index 2f31702..827fd03 100644 Binary files a/assets/images/2021-01-03/read-file-using-bufferedreader.png and b/assets/images/2021-01-03/read-file-using-bufferedreader.png differ diff --git a/assets/images/2021-01-03/read-file-using-bufferedreader.webp b/assets/images/2021-01-03/read-file-using-bufferedreader.webp new file mode 100644 index 0000000..dc7564c Binary files /dev/null and b/assets/images/2021-01-03/read-file-using-bufferedreader.webp differ diff --git a/assets/images/2021-01-03/read-file-using-bufferreader.png b/assets/images/2021-01-03/read-file-using-bufferreader.png deleted file mode 100644 index 2f31702..0000000 Binary files a/assets/images/2021-01-03/read-file-using-bufferreader.png and /dev/null differ diff --git a/assets/images/2021-01-07/parse-json-in-java.png b/assets/images/2021-01-07/parse-json-in-java.png index 5ae4689..975e4ac 100644 Binary files a/assets/images/2021-01-07/parse-json-in-java.png and b/assets/images/2021-01-07/parse-json-in-java.png differ diff --git a/assets/images/4.jpg b/assets/images/4.jpg index 33f2a87..92b0ba0 100644 Binary files a/assets/images/4.jpg and b/assets/images/4.jpg differ diff --git a/assets/images/jumbotron.jpg b/assets/images/jumbotron.jpg index 48d16d8..77e82a3 100644 Binary files a/assets/images/jumbotron.jpg and b/assets/images/jumbotron.jpg differ