userpages

module
v0.0.0-...-4524d0c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 7, 2023 License: Unlicense

README

===============
How to Develope
===============

.. image:: https://img.shields.io/badge/Language-Python-blue.svg
   :target: https://www.python.org/

.. image:: https://img.shields.io/badge/Language-Go-blue.svg
   :target: https://golang.org/

.. .. image:: https://godoc.org/github.com/siongui/paligo?status.svg
   :target: https://godoc.org/github.com/siongui/paligo

.. image:: https://github.com/siongui/userpages/workflows/Pelican%20site%20CI/badge.svg
    :target: https://github.com/siongui/userpages/blob/master/.github/workflows/pelican.yml

.. .. image:: https://travis-ci.org/siongui/userpages.svg?branch=master
    :target: https://travis-ci.org/siongui/userpages

.. image:: https://gitlab.com/siongui/siongui.gitlab.io/badges/master/pipeline.svg
    :target: https://gitlab.com/siongui/siongui.gitlab.io/-/commits/master

.. .. image:: https://goreportcard.com/badge/github.com/siongui/paligo
   :target: https://goreportcard.com/report/github.com/siongui/paligo

.. image:: https://img.shields.io/badge/license-Unlicense-blue.svg
   :target: https://github.com/siongui/userpages/blob/master/UNLICENSE

.. See how to add travis ci image from https://raw.githubusercontent.com/demizer/go-rst/master/README.rst
   https://github.com/demizer/go-rst/commit/9651ab7b5acc997ea2751845af9f2d6efee825df

Development Tool: Pelican_ (static site generator written in Python)

Development Environment: `Ubuntu 20.04`_


First-time Setup
----------------

1. On a fresh/clean installation of Ubuntu, update system first. Otherwise will
   get unable to locate package error.
   See `this SO answer <https://stackoverflow.com/a/58072486>`__.

   .. code-block:: bash

     $ sudo apt-get update

2. Install git_ and pip_:

   .. code-block:: bash

     $ sudo apt-get install git
     $ sudo apt-get install python3-pip

   From the `answer in Ask Ubuntu <https://askubuntu.com/a/1031733>`_,
   we can use python-is-python3 and prevent Python 2 from being installed
   on Ubuntu 20.04

   .. code-block:: bash

     $ sudo apt-get install python-is-python3
     $ sudo apt-mark hold python2 python2-minimal python2.7 python2.7-minimal libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib

3. Install language packages to add locale (English, Traditional Chinese, and
   Thai):

   .. code-block:: bash

     $ sudo apt-get install language-pack-en
     $ sudo apt-get install language-pack-zh-hant
     $ sudo apt-get install language-pack-th

   Or you can install languages in "Settings" -> "Region & Language", which
   installs more related packages such as fonts for languages.

4. git clone source code:

   .. code-block:: bash

     $ cd
     $ mkdir dev
     $ cd ~/dev/
     $ git clone https://github.com/siongui/userpages.git --depth=1
     # or clone with full depth
     $ git clone https://github.com/siongui/userpages.git

5. Install Python tools:

   .. code-block:: bash

     $ cd ~/dev/userpages/
     $ pip3 install -r requirements.txt

   Note that in `.travis.yml <.travis.yml>`_, pip is actually pip3 if bionic and
   python 3.8 is set in Travis CI config.

6. Install Pelican `i18n_subsites`_ plugin and download `normalize.css`_:

   .. code-block:: bash

     $ cd ~/dev/userpages/
     $ make download

7. Generate CSS file:

   .. code-block:: bash

     $ cd ~/dev/userpages/
     $ make scss


Daily Development
-----------------

.. code-block:: bash

    # start edit and develope
    $ cd ~/dev/userpages/
    # re-generate the website and start dev server
    $ make
    # open your browser and preview the website at http://localhost:8000/


Auto-deploy by GitHub Actions
-----------------------------

See `workflow file <.github/workflows/pelican.yml>`_


Auto-deploy by `Travis CI`_ (Obsoleted)
---------------------------------------

See `GitHub Pages Deployment - Travis CI`_.

First save your `personal access token`_ in `repository settings`_.

For User Pages, the following is sample config:

.. code-block:: yaml

  deploy:
    provider: pages
    repo: USERNAME/USERNAME.github.io
    target_branch: master
    skip_cleanup: true
    github_token: $GITHUB_TOKEN
    local_dir: output
    on:
      branch: master

For Project Pages, the following is sample config:

.. code-block:: yaml

  deploy:
    provider: pages
    skip_cleanup: true
    github_token: $GITHUB_TOKEN
    local_dir: output
    on:
      branch: master


Deploy to `GitLab Pages`_ via `GitLab CI/CD`_
---------------------------------------------

See `.gitlab-ci.yml <.gitlab-ci.yml>`_.

1. Use `Ubuntu image in Docker Hub <https://hub.docker.com/_/ubuntu>`_.
   The *ubuntu:latest* tag points to the "latest LTS".

2. Need to update Ubuntu first to install Ubuntu packages.
   See `this SO answer <https://stackoverflow.com/a/58072486>`__.

3. `Travis CI`_ can deploy to any repository, but need `personal access token`_
   to do so.
   `GitLab CI/CD`_ can deploy to the repository where CI/CD runs without
   credentials.


UNLICENSE
---------

All works, including posts and code, of Siong-Ui Te are released in public domain.
Please see UNLICENSE_.


References
----------

.. [1] `pelican-edit-url <https://github.com/pmclanahan/pelican-edit-url>`_
       inspires the *Edit on Github* link.

.. [2] | JINJA_FILTERS in `Settings — Pelican documentation <http://docs.getpelican.com/en/latest/settings.html>`_
       | `Jinja custom filters documentation <http://jinja.pocoo.org/docs/dev/api/#custom-filters>`_

.. [3] | Home Screen Icon on Android/iPhone & PWA support
       | `website icon on android home screen - Google search <https://www.google.com/search?q=website+icon+on+android+home+screen>`_
       | `Tutorial: Home Screen Icons | Responsive Web Design Training Tutorial | Webucator <https://www.webucator.com/tutorial/developing-mobile-websites/home-screen-icons.cfm>`_
       | `pwa manifest - Google search <https://www.google.com/search?q=pwa+manifest>`_
       | `WebPageTest - Website Performance and Optimization Test <https://www.webpagetest.org/>`_

.. [4] | `Add single page application support for Github pages · Issue #408 · isaacs/github · GitHub <https://github.com/isaacs/github/issues/408>`_
       | `GitHub - rafgraph/spa-github-pages: Host single page apps with GitHub Pages <https://github.com/rafgraph/spa-github-pages>`_
       | `S(GH)PA: The Single-Page App Hack For GitHub Pages — Smashing Magazine <https://www.smashingmagazine.com/2016/08/sghpa-single-page-app-hack-github-pages/>`_
       | `GitHub - dmsnell/gh-pages-404-redirect: Can I use a custom 404 handler on GitHub pages to host a routed single-page app? <https://github.com/dmsnell/gh-pages-404-redirect>`_
       | `Redirect a GitHub Pages site with this HTTP hack | Opensource.com <https://opensource.com/article/19/7/permanently-redirect-github-pages>`_
       | `javascript - Is there a configuration in Github Pages that allows you to redirect everything to index.html for a Single Page App? - Stack Overflow <https://stackoverflow.com/questions/36296012/is-there-a-configuration-in-github-pages-that-allows-you-to-redirect-everything>`_

.. [5] | `github pages symbolic link - Google search <https://www.google.com/search?q=github+pages+symbolic+link>`_
       | `Pages: allow symlinks · Issue #553 · isaacs/github · GitHub <https://github.com/isaacs/github/issues/553>`_
       | `Added .nojekyll to workaround symlink issue in GitHub Pages. Ref: isaacs/github#553 · siongui/paligo@b9fe689 · GitHub <https://github.com/siongui/paligo/commit/b9fe689770d705743a29bd33a3c7583a5c81bec1>`_


.. _Pelican: https://blog.getpelican.com/
.. _Ubuntu 20.04: https://releases.ubuntu.com/20.04/
.. _git: https://git-scm.com/
.. _pip: https://pypi.python.org/pypi/pip
.. _i18n_subsites: https://github.com/getpelican/pelican-plugins/tree/master/i18n_subsites
.. _normalize.css: https://necolas.github.io/normalize.css/
.. _Travis CI: https://travis-ci.org/
.. _GitHub Pages Deployment - Travis CI: https://docs.travis-ci.com/user/deployment/pages/
.. _personal access token: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token
.. _repository settings: https://docs.travis-ci.com/user/environment-variables#defining-variables-in-repository-settings
.. _GitLab Pages: https://docs.gitlab.com/ee/user/project/pages/
.. _GitLab CI/CD: https://docs.gitlab.com/ee/ci/
.. _Google Adsense: https://www.google.com/search?q=Google+AdSense
.. _UNLICENSE: https://unlicense.org/

Directories

Path Synopsis
content
articles/2015/02/18
http://golang.org/pkg/flag/
http://golang.org/pkg/flag/
code/go-accept-language
http://golang.org/pkg/strings/ http://stackoverflow.com/questions/16551354/how-to-split-string-and-assign http://stackoverflow.com/questions/22688010/how-to-trim-leading-and-trailing-white-spaces-of-a-string-in-golang
http://golang.org/pkg/strings/ http://stackoverflow.com/questions/16551354/how-to-split-string-and-assign http://stackoverflow.com/questions/22688010/how-to-trim-leading-and-trailing-white-spaces-of-a-string-in-golang
code/go-ctrl+c
http://stackoverflow.com/questions/11268943/golang-is-it-possible-to-capture-a-ctrlc-signal-and-run-a-cleanup-function-in https://gobyexample.com/signals
http://stackoverflow.com/questions/11268943/golang-is-it-possible-to-capture-a-ctrlc-signal-and-run-a-cleanup-function-in https://gobyexample.com/signals
code/go-dart-http-post-json
Handling JSON Post Request in Go http://stackoverflow.com/questions/15672556/handling-json-post-request-in-go
Handling JSON Post Request in Go http://stackoverflow.com/questions/15672556/handling-json-post-request-in-go
code/go-save-json-in-folder
http://stackoverflow.com/questions/10510691/how-to-check-whether-a-file-or-directory-denoted-by-a-path-exists-in-golang http://stackoverflow.com/questions/14249467/os-mkdir-and-os-mkdirall-permission-value http://stackoverflow.com/questions/1760757/how-to-efficiently-concatenate-strings-in-go
http://stackoverflow.com/questions/10510691/how-to-check-whether-a-file-or-directory-denoted-by-a-path-exists-in-golang http://stackoverflow.com/questions/14249467/os-mkdir-and-os-mkdirall-permission-value http://stackoverflow.com/questions/1760757/how-to-efficiently-concatenate-strings-in-go
code/go-xml
http://golang.org/pkg/io/ioutil/ http://golang.org/pkg/encoding/xml/
http://golang.org/pkg/io/ioutil/ http://golang.org/pkg/encoding/xml/
code/go/file-sort-by-size
Sort file by size
Sort file by size
code/gopherjs/history-api
Google Search: html history api https://css-tricks.com/using-the-html5-history-api/
Google Search: html history api https://css-tricks.com/using-the-html5-history-api/
code/goroutine-poll-feed
http://tour.golang.org/concurrency/1 http://golang.org/pkg/net/http/
http://tour.golang.org/concurrency/1 http://golang.org/pkg/net/http/
code/python-jinja2-vs-go-html-template
http://stackoverflow.com/questions/17843311/template-and-custom-function-panic-function-not-defined
http://stackoverflow.com/questions/17843311/template-and-custom-function-panic-function-not-defined
tool
reader/mylib
RSS: http://stackoverflow.com/questions/15245896/rss-update-single-item http://stackoverflow.com/questions/164124/rss-item-updates SQLite: http://golang.org/pkg/database/sql/ https://github.com/mattn/go-sqlite3 http://stackoverflow.com/questions/3634984/insert-if-not-exists-else-update http://stackoverflow.com/questions/2251699/sqlite-insert-or-replace-into-vs-update-where http://stackoverflow.com/questions/1601151/how-do-i-check-in-sqlite-whether-a-table-exists http://stackoverflow.com/questions/19337029/insert-if-not-exists-statement-in-sqlite http://stackoverflow.com/questions/6740733/insert-or-replace-is-creating-duplicates http://stackoverflow.com/questions/12105198/sqlite-how-to-get-insert-or-ignore-to-work http://stackoverflow.com/questions/19134274/sqlitedatabase-insert-or-replace-if-changed http://stackoverflow.com/questions/14091183/sqlite-order-by-date http://stackoverflow.com/questions/15473325/inserting-current-date-and-time-in-sqlite-database http://stackoverflow.com/questions/7316747/sqlite-inserting-bool-value
RSS: http://stackoverflow.com/questions/15245896/rss-update-single-item http://stackoverflow.com/questions/164124/rss-item-updates SQLite: http://golang.org/pkg/database/sql/ https://github.com/mattn/go-sqlite3 http://stackoverflow.com/questions/3634984/insert-if-not-exists-else-update http://stackoverflow.com/questions/2251699/sqlite-insert-or-replace-into-vs-update-where http://stackoverflow.com/questions/1601151/how-do-i-check-in-sqlite-whether-a-table-exists http://stackoverflow.com/questions/19337029/insert-if-not-exists-statement-in-sqlite http://stackoverflow.com/questions/6740733/insert-or-replace-is-creating-duplicates http://stackoverflow.com/questions/12105198/sqlite-how-to-get-insert-or-ignore-to-work http://stackoverflow.com/questions/19134274/sqlitedatabase-insert-or-replace-if-changed http://stackoverflow.com/questions/14091183/sqlite-order-by-date http://stackoverflow.com/questions/15473325/inserting-current-date-and-time-in-sqlite-database http://stackoverflow.com/questions/7316747/sqlite-inserting-bool-value

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL