Skip to content

Corret blog introduction and change featured blogpost #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions _posts/2020-12-23-create-uuid-in-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ title: "How To Create UUID in Java?"
author: gaurav
image: assets/images/2020-12-23/create-uuid-in-java.png
categories: [ Java, Core Java, String]
description: In this article you will see, how to create UUID in Java.

description: "In this article you will see, how to create UUID in Java."
featured: true
hidden: true
---

In this article you will see, how to create UUID in Java.

## Introduction

UUID, a universally unique identifier is a 128-bit number used to identify information in computer systems.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
layout: post
title: "How To Convert StringBuilder To String In Java?"
author: gaurav
image: assets/images/2020-12-25/convert-stringbuilder-to-string-in-java.png
image: assets/images/2020-12-24/convert-stringbuilder-to-string-in-java.png
categories: [ Java, Core Java, String]
description: In this article you will see, how to convert a StringBuilder to String in Java.
description: "In this article you will see, how to convert a StringBuilder to String in Java."
featured: false
---
In this article you will see, how to convert a StringBuilder to String in Java.

## Introduction

Expand Down Expand Up @@ -60,6 +61,5 @@ If you found this article worth, support me by [giving a cup of Coffee ☕](htt
- [How Do I Compare Strings In Java](https://coderolls.com/compare-strings-in-java/)
- [How To Reverse A String In Java (5 ways)](https://coderolls.com/reverse-a-string-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/)

- [8 Basic GIT Commands Every Newbie Developer Must Know](https://coder
- [Difference Between StringBuffer and StringBuilder class](https://coderolls.com/difference-between-stringbuffer-and-stringbuilder/)
- [8 Basic GIT Commands Every Newbie Developer Must Know](https://coderolls.com/basic-git-commands/)
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ author: gaurav
image: assets/images/2019-12-24-difference-between-stringbuffer-and-stringbuilder/blog-cover.jpg
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: true
hidden: true
featured: false

---
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."

Expand Down