Markdown Basic Systax

What is Markdown? Markdown is a lightweight markup language for creating formatted text using a plain-text editor. John Gruber and Aaron Swartz created Markdown in 2004 as a markup language that is appealing to human readers in its source code form. Markdown is widely used in blogging, instant messaging, online forums, collaborative software, documentation pages, and readme files. from Wikipedia. PHILOSOPHY Markdown is intended to be as easy-to-read and easy-to-write as is feasible....

February 15, 2022 · 6 min · Andrew Wu

How to add an RSS feed to your Hugo PaperMod theme?

Hugo is a popular static site generator, and PaperMod comes with a default RSS 2.0 template. What is an RSS feed? RSS stands for Really Simple Syndication, and it’s is a simple, standardized content distribution method that can help you stay up-to-date with your favorite newscasts, blogs, websites, and social media channels. Means supported an RSS feed function on your blog, can keep those who follow you up-to-date with your newest posts....

February 6, 2022 · 1 min · Andrew Wu

How to integrate Disqus into your Hugo site?

What is Disqus? The internet’s favorite comment plug-in makes it easy for publishers to bring their content to life, fuel colorful discussions, efficiently moderate comments, and build engaged communities. Step by step to integrate Disqus into your Hugo Site Step 1: Sign up for Disqus Step 2: Install Disqus Step 3: Chose “I want to install Disqus on my site.” Step 4: Fill in the Form details for your Hugo site Step 5: Copy the discussion templates, and create a disqus....

February 5, 2022 · 2 min · Andrew Wu

How to add Google Analytics to Hugo?

What is Google Analytics? Google Analytics is a web analytics service that provides statistics and basic analytical tools for search engine optimization (SEO) and marketing purposes. The service is part of the Google Marketing Platform and is available for free to anyone with a Google account. How to add google analytics to Hugo site? Step 1: Create a google account Step 2: Go to google analytics site Step 3: Set up your site details in google analytics Step 4: Get your site google analytics ID Step 5: Set up your Hugo config....

February 4, 2022 · 1 min · Andrew Wu

Git Basic Commands

Checks your Git version git --version Settings your Git user name & email git config --global user.name "Andrew_Wu" git config --global user.email "[email protected]" Checks your configurations git config --list Get Help git help <command> #get help for a git command Creates a new git repo git init # create a new git repo, with data stored in the `.git` directory Shows current repo status git status #tells you what's going on Adds files to stage git add <filename> #adds seleted filename to stagin area git add ....

January 12, 2022 · 2 min · Andrew Wu