diff --git a/_drafts/2018-04-21-git-and-github-guide.md b/_drafts/2018-04-21-git-and-github-guide.md
deleted file mode 100644
index daabfe9..0000000
--- a/_drafts/2018-04-21-git-and-github-guide.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-title: "How To Start Using Github for Learning Development Technologies"
-permalink: "/git-and-github-guide"
-description: "I strongly believe that every developer should know Git and Github. Here's why."
-keywords: ""
-image: "git-github.jpg"
-image-attrib: "Photo stock by Tim Gouw from Pexel."
----
-
-If there's something that would greatly jumpstart your growth as a developer, I would say that's learning Git and exploring projects on [Github](https://github.com).
-
-Github hosts [all sorts of projects](https://github.com/explore) from Desktop apps to Web apps, and would most likely have examples for any technology you want to learn.
-
-
-Github is basically a website for opensource communities. It is sort of the place in the Web where developers get together to collaborate on projects.
-
-It is not just the best place to contribute or start an opensource project, but also a good starting point to see and learn how other developers write their code and communicate with each other to resolve issues.
-
-To cut the long story short, Github's a good place to start learning how to be a developer... and more.
-
-Let's go through the steps on creating an account on github and creating your first project repository.
\ No newline at end of file
diff --git a/_drafts/2018-04-21-reasons-to-join-github.md b/_drafts/2018-04-21-git-how-to.md
similarity index 71%
rename from _drafts/2018-04-21-reasons-to-join-github.md
rename to _drafts/2018-04-21-git-how-to.md
index 068d50a..0540e9f 100644
--- a/_drafts/2018-04-21-reasons-to-join-github.md
+++ b/_drafts/2018-04-21-git-how-to.md
@@ -1,6 +1,6 @@
---
-title: "Reasons to Join Github"
-permalink: "/why-join-github"
+title: "What Is Git And How To Use It"
+permalink: "/git-how-to"
description: "Let's talk about some reasons why joining Github is crucial for every developer."
keywords: ""
image: "git-github.jpg"
diff --git a/_drafts/2018-04-21-thoughts-on-building-an-ecommerce-site.md b/_ideas/2018-04-21-thoughts-on-building-an-ecommerce-site.md
similarity index 100%
rename from _drafts/2018-04-21-thoughts-on-building-an-ecommerce-site.md
rename to _ideas/2018-04-21-thoughts-on-building-an-ecommerce-site.md
diff --git a/_posts/2018-04-21-git-and-github.md b/_posts/2018-04-21-git-and-github.md
new file mode 100644
index 0000000..85bdd2b
--- /dev/null
+++ b/_posts/2018-04-21-git-and-github.md
@@ -0,0 +1,47 @@
+---
+title: "What Is Github and Why Every Developer Needs It"
+permalink: "/git-and-github"
+description: "I strongly believe that every developer should know Git and Github. Here's why."
+keywords: ""
+image: "git-github.jpg"
+image-attrib: "Photo stock by Tim Gouw from Pexel."
+---
+
+If you ask me for something that would greatly jumpstart your growth as a developer, I would place my bet on learning Git and exploring projects on [Github](https://github.com/explore).
+
+I say this because to be better in writing code, you must first read and use lots and lots of code by more experienced developers... and a good place to start with this is Github.
+
+
+Now, what exactly is Github?
+
+Github is basically a website for communities of developers working on projects. It is sort of a place on the Web where developers get together to collaborate.
+
+Github hosts [all sorts of projects](https://github.com/explore) from Desktop apps to Web apps, and would most likely have examples for any technology you want to learn.
+
+There are other websites that serve this same purpose (like [Bitbucket](https://bitbucket.org) and [Gitlab](https://gitlab.com)) but Github is now the preferred home for most Open Source projects due to it being the oldest and its culture of openness.
+
+Because of this "openness", Github is not just the best place to start or contribute to an existing project. It is also a good place to see and learn how other developers write their code. You can even observe how collaborators communicate with each other to resolve their issues.
+
+This way, the things you learn from your observations can be used not just in the way you code but also in the way you communicate with your own colleagues.
+
+Just beware: you have to know which projects are good for your level of experience because some of them requires more advanced skills before you can contribute or even just understand what is going on.
+
+In case you don't feel like joining others, you can always use Github to host your projects. Then, you can code at your own pace using your own style and preferred technologies.
+
+You might even find that it's always a good practice to have a copy of all your code backed up in a Github repository for safekeeping.
+
+If you don't want to start from scratch, you can just "fork" any interesting project to get a copy in your own account... then you can practically do *anything* you want with it!
+
+I find this very inspiring, that I can just start using other people's code and hack it up the way I want it. Try searching for one of your favorite apps over at Github, and you just might be surprised that it's open-sourced.
+
+If it is open-sourced, then you can play with the code yourself... or submit an issue anytime you find a bug or think of a missing feature you want to be added. Submitting issues is the easiest way to contribute to a project even without writing a single line of code.
+
+Isn't that great? I hope, by now, you see how Github can greatly add to your developer skills.
+
+To cut the long story short, Github is a good place to start learning how to be a developer, and check out the technologies you will use along the way...
+
+But before you hurry and join Github, there's another thing we need to talk about. You won't be able to get the most out of it without this...
+
+Well, you must first learn how to use Git as your Source Control Management. Why don't we talk about that next?
+
+
\ No newline at end of file
diff --git a/assets/main.scss b/assets/main.scss
index eb62529..cb61ef2 100644
--- a/assets/main.scss
+++ b/assets/main.scss
@@ -216,18 +216,21 @@ article .post-content ol li,
margin: 10px 0;
}
-.post-readmore a:hover {
+.post-readmore a:hover,
+.up-next:hover {
text-decoration: none;
}
-.post-readmore a {
+.post-readmore a,
+.up-next {
background-color: #ee4a03;
- color: #ffffff;
+ color: #ffffff !important;
padding: 15px;
display: inline-block;
width: calc(100% - 30px);
font-size: 16px;
font-weight: bold;
+ font-family: medium-content-sans-serif-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
border-radius: 3.2px;
border: 1px solid #ee4a03;
text-align: center;
diff --git a/hacker/_includes.hacker/disqus_comments.html b/hacker/_includes.hacker/disqus_comments.html
deleted file mode 100644
index 87fa309..0000000
--- a/hacker/_includes.hacker/disqus_comments.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% if page.comments != false and jekyll.environment == "production" %}
-
-