Why am I moving my blog to GitHub!... Again.

March 12 · 3 mins read

Reason #1: I want to be able to write blogs even when I don’t have an internet connection

Git solves this problem.“Most operations in Git only need local files and resources to operate…”

Reason #2: I want to be able to use emojis in my blog

:sweat_smile: :+1: :musical_note:

:smiley_cat: :scream_cat: :dog:

:arrow_left: :arrow_right: :arrow_up:

Reason #3: Writing code on GitHub flavored Markdown is simpler

JavaScript code

function test() {
    console.log("test");
}

C# code

using System;

public class Circle : Shape
{
    private double radius;

    public Circle(double radius)
    {
        this.radius = radius;
    }

    public double Radius
    {
        get { return this.radius;}
        set { this.radius = value;}
    }

    override public double ComputeArea() 
    { 
        return Math.PI * Math.Pow(radius, 2);
    }
}

Reason #4: My current blog has a weird name

jboyflaga2.blogspot.com. Yes! With a “2” at the end. It sounds unprofessional. :blush:


You also want to move your blog to GitHub Pages? Check out this tutorial: Build A Blog With Jekyll And GitHub Pages by Barry Clark.


Buy Me A Coffee