0%

Add RSS in your site

Install hexo generator feed:

1
npm install hexo-generator-feed --save

Put the plugin in _config.yml:

1
2
3
4
5
6
7
8
9
10
11
12
13
feed:
enable: true
type: atom
path: atom.xml
limit: 20
hub:
content:
content_limit: 140
content_limit_delim: ' '
order_by: -date
icon: icon.png
autodiscovery: true
template:
Read more »

Magisk is a systemless rooting system.
Which was developed by Topjohnwu and launched in the year 2016, and since then has been widening its horizons with each passing year.
Magisk Root is a boon especially when it comes to running the financial applications.

Read more »

This tutorial is mainly for Xiaomi Poco F3 / Xiaomi Mi 11X / Redmi K40.
If your phone is not the model above, you will need the ROM that fit the device.
But main steps still remain same.

⚠ This may wipe out all personal data in the device, so backup! ⚠

Read more »

Just record what I thought and how I debug.

Situation

The device kept showing Reboot and Select proper Boot device after I added a M.2 SSD.
It was totally fine before that.

Conclucion

Make sure M.2 slot does not conflict with SATA ports. Check it with motherboard manual.

Read more »

Prologue

Disqus is a global comment system that improves discussion on websites and connects conversations across the web.

Create Site

Create an account and log into Disqus. Once logged in, click the GET STARTED button on the homepage.

Read more »

Prologue

Initially, TFS supported only TFVC, and support for Git as a source code repository was added later in TFS 2013. Also, Microsoft suggest user to use Git: “Git is the default version control provider for new projects. You should use Git for version control in your projects unless you have a specific need for centralized version control features in TFVC.”

Read more »

Prologue

As a web developer, it is common to use localhost to preview the blog.
But still something weird came up: browser forcing the path go https.
This article just record how to get rid of it.

Read more »

Bianry Tree

Binary tree is a tree data structure. Each node has at most two children, the left child and the right child.

1
2
3
4
5
6
7
// JavaScript
// Definition for a binary tree node
function TreeNode(key, left, right) {
this.key = (key===undefined ? 0 : key)
this.left = (left===undefined ? null : left)
this.right = (right===undefined ? null : right)
}
Read more »