Tomonori Takanawa's Blog
Writing about Tech, Software Development and Gadgets.

Change system clock using with chronyd

Firstly, check the status if the chronyd is started. Note: depending on the environment, you can use “service” instead of “systemctl” systemctl chronyd status Stop the chronyd that is the daemon to sync the system clock. systemctl chronyd stop Set the time on the system clock to specified time. date -s "04/26 16:24 2022" date --set="04/26 ... Read more "Change system clock using with chronyd"

What I thought through taking an English crash course

What I thought through taking an English crash course

I’m taking the SMART Method and the last class is coming in a few weeks. The SMART Method is an English crash course for four months specialized in speaking and listening skills. First of all, it was great experience to take it and I believe the English skills that I learned through the lessons can be helpful for my life to last, of course that ... Read more "What I thought through taking an English crash course"

My short career and in the near future

My short career and in the near future

When I look back on the past, if I don’t remember what I did in the year even if just a little, it seems like I didn’t try very hard at anything, which is very sad, so I’m going to write down quickly what I’v done so far on a yearly basis. I’m writing down here with my short career and what I’d’ like to do in the near future. Career history 2... Read more "My short career and in the near future"

Do not use double quotations on your PROMPT

Do not use double quotations on your PROMPT

tldr is this tweet below. like this. https://t.co/PAnzshoafV pic.twitter.com/hnxcHDAAIP— Tomonori Takanawa (@_takanawa_) February 11, 2021 First of all, I knew the difference of single quotations and double quotations on shell scripting language (especially bash and zsh), the former wouldn’t expand the variables yet the latter would, bu... Read more "Do not use double quotations on your PROMPT"

How to build old PHP

How to build old PHP

TL;DR You can install and configure the PHP which is old, outdated, unsupported and archived on your linux This post is the steps I’ve taken in my previous I built PHP post. My environment OS: Ubuntu 20.04.1 LTS (WSL2) Japan OK, let’s get started it. First, Install C compiler and Make beforehand. sudo apt install -y gcc make Downlo... Read more "How to build old PHP"