Ben Chuanlong Du's Blog

It is never too late to learn.

Search Engine for Static Web Sites

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Below is a list of search engines which run on the client side.

tinysearch

Tiny, full-text search engine for static websites built with Rust and Wasm.

stork

Stork is a library …

Tips on mkdocs

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

https://github.com/mkdocs/mkdocs

https://pypi.org/project/mkdocs-blog-plugin/

https://ddrscott.github.io/blog/2018/move-to-mkdocs/

https://github.com/danielfrg/mkdocs-jupyter

Const and Static Variables in C++

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Const Variables

but you can initialize a static constexpr variable inside the defintion of a class.

  1. constexpr means that the corresponding value can be dertermined at compile time.

Static Variables

  1. You …