Posted on September 16, 2018
(Last modified on November 10, 2018)
| 4 min
| Vincent Tam
|
6 comments
I put some “why” questions here so as to keep focus on the technical setup of
the GitLab repo and the optional Staticman API server.
Why static blogs instead of dynamic ones?
quicker loading time
better reliability (can handle more request)
no database needed
greater control on content, styles and layout
Why static comments?
allow feedback from visitors
site owner owns the comment locally (unlike WordPress, Facebook, Disqus, etc)
no remote database needed, so no need to worry server errors from
third-party commenting services.
greater control over the rendering of the comments (allow additional
features such as Markdown syntax, and $\KaTeX$ support)
more accessible since static comments are incorporated as HTML elements
into the post. No JavaScript is required to retrieve the comments,
contrary to most third-party commenting services.
Before Staticman’s deployment, another commenting system called Pecosys was
already available. However, it’s less convenient to handle visitor’s requests
as emails.
Posted on September 16, 2018
(Last modified on April 13, 2023)
| 2 min
| Vincent Tam
|
0 comment
Background
Le Temple du Marais
"Eglise verte" means "green church".
My churches are going green.
Problem
→
I downloaded a PDF from Haute-Garonne’s government site, filled in
the form and saved it on a USB key. Then I printed it at a Konica Minolta bizhub
photocopier .
However, _only_ the radio buttons and checkboxes
were printed. The blanks
were left _blank_! I opened my PDF and double-checked that I had input the text
in .
Posted on September 15, 2018
(Last modified on April 25, 2019)
| 1 min
| Vincent Tam
|
0 comment
Problem
I would like to submit Flying Grizzly’s form. I filled in every
blanks and then I clicked the “submit” button below. I was greeted with a
MISSING_REQUIRED_FIELDS error within a second.
Posted on September 12, 2018
(Last modified on April 13, 2023)
| 3 min
| Vincent Tam
|
2 comments
Fixed issue #142
Two weeks ago, Google Webmasters complained about the broken urls in this
blog’s Tags page. This was reported by Joakim Vivas as
issue #142 half a year ago. Pascal had submitted
pull request #165 to fix this. However, he self-closed his PR.
Since the last commit by Michael Romero, Beautiful Hugo’s owner, was
five months ago, it seems that he has abandonned his project. Therefore, I
used Kaushal Modi’s solution to fix this at commit ff536782.
Posted on September 6, 2018
(Last modified on April 13, 2023)
| 1 min
| Vincent Tam
|
0 comment
Problem
After installing NPM throught Ubuntu’s default apt-get manager, I got
permission errors. Though sudo can solve the problem, that’s not
the right way in principle because NPM is supposed to hold different versions of
Node.js packages for testing. It’s insecure to execute npm with sudo
priviledges.
Posted on September 6, 2018
(Last modified on December 19, 2018)
| 2 min
| Vincent Tam
|
0 comment
Le Temple du Marais
"Eglise verte" means "green church".
Background: 🈶 ⛪ → 🌿
→ 📧 In the recent decade,
organizations are replacing courrier with email. The reason is two-folded. 🌿
First, the later is more environmentally-friendly. 📨 Second, the later delivers
the content to the recipient quick as a flash.
📧 📎 When one sends an email,
one sometimes wants to attach a file to an email. If one has to sign a paper
document and send it by email, then one will probably need a scanner. (Despite
the emergence of scanning apps on mobile devices, the quality of a scanner is
normally better since the page is flattened during the scan.)
Posted on September 5, 2018
(Last modified on April 13, 2023)
| 1 min
| Vincent Tam
|
0 comment
Main ideas
–
Ideal energy range for storage: 40%–80%
The biggest enemy of electronic parts
is heat
.
Avoid overchanging and unplug AC adapter when charging is complete. In
particular, don’t leave a fully charged laptop connected to power supply.
This can reduce the lifespan of the battery.
Avoid deep discharges: recharge the laptop battery when its enery level
drops to 40%.
Reduce unnecessary programs running in background.
If your hardware vendor supports Linux drivers for batteries, set the charging
thershold to 80%.
Posted on September 5, 2018
(Last modified on April 12, 2023)
| 4 min
| Vincent Tam
|
0 comment
Background
Despite my experience in Vim, the multi-cursor functionality in
Sublime Text 3 has seduced my to change my editor.
Unlike Vim, a nonempty new line at the end of Sublime Text 3
file buffer causes the file to end without a newline character. In fact,
it’s a POSIX standard to include a newline character at the EOL (end of
file). (c.f. No Newline at End of File)
Problem
Unaware of the above POSIX standard and Sublime Text 3 convention,
I have edited many lines of code in the repository for this blog and the one for
my custom Beautiful Hugo. These edited files were almost everywhere in
these repositories, and they polluted their remote counterparts on GitLab .