Hugo page is released
A personal website for Gigathing is settup and deployed. Here is the link
A personal website for Gigathing is settup and deployed. Here is the link
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 ...
Useful materials sources freecodecamp medium
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.
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’