Hugo page is released

A personal website for Gigathing is settup and deployed. Here is the link

May 18, 2020 · 1 min · 13 words · Ken Cho

How to make a hugo website

Aim Try to build a hugo website to log everything happened in GigaScience. Description The website will contain: About Contact Posts Mainly about the learning progress Projects sharing (FYI only) Weekly plan Learning plan Todo list What have been finished/achieved/completed How Comming soon… How to make a public folder In config.toml, add this: publishDir = "public" link Add Google Analytics feature How to set up a Google Analytics, steps followed here. How to add a disqus Follow here ...

May 18, 2020 · 1 min · 88 words · Ken Cho

Test update new post to public

Useful materials sources freecodecamp medium

May 18, 2020 · 1 min · 5 words · Ken Cho

What I have done

Issue #198 Found out that the commited changes cannot be seen in the local gigadb. rollbacked to commit ID: 3954c0b0, and make two changes in help.html.dist and help.php. still cannot see the changes in local gigadb website.

May 14, 2020 · 1 min · 37 words · Ken Cho

What I have learned

Learning learn PHP in codecademy try to start Yii Hands on keep fixing #374 Some keypoints 1.concatenation assigment $fruits = “apple” $fruits .= “orange” echo $fruits will return ‘apple orange’ 2.assign by reference $order = “5 eggs” $new-order =& $order $new-order .=", 8 hams’ echo $order will return ‘5 eggs, 8 hams’ echo $new-order will return ‘5 eggs, 8 hams’ 3.curly brackets $name = “Ken” echo ${name}eeeeeeee will return ‘Ken’

May 13, 2020 · 1 min · 70 words · Ken Cho