├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _global_settings.tex ├── chapters ├── abstract.tex ├── acknowledgments.tex ├── ap-ingredients.tex ├── ap-publication.tex ├── ap-recipes.tex ├── ch-concl.tex ├── ch-intro.tex ├── ch-noodle.tex ├── ch-review.tex └── ch-rice.tex ├── exp └── ch-Rice │ ├── taste.plt │ ├── taste_with_freshness.eps │ ├── taste_with_freshness.txt │ ├── taste_with_meals.eps │ └── taste_with_meals.txt ├── fairy-lite ├── README.md ├── _common_lib │ ├── argument_utils.sh │ ├── filesystem.sh │ ├── output_utils.sh │ └── system.sh └── latex │ └── build_latex.sh ├── main.tex ├── nusthesis.cls ├── pic ├── ch-Intro │ └── vege.pdf ├── ch-Noodle │ └── noodle.jpg ├── ch-Rice │ └── rice.jpg └── signature.jpg └── references.bib /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/README.md -------------------------------------------------------------------------------- /_global_settings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/_global_settings.tex -------------------------------------------------------------------------------- /chapters/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/abstract.tex -------------------------------------------------------------------------------- /chapters/acknowledgments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/acknowledgments.tex -------------------------------------------------------------------------------- /chapters/ap-ingredients.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ap-ingredients.tex -------------------------------------------------------------------------------- /chapters/ap-publication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ap-publication.tex -------------------------------------------------------------------------------- /chapters/ap-recipes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ap-recipes.tex -------------------------------------------------------------------------------- /chapters/ch-concl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ch-concl.tex -------------------------------------------------------------------------------- /chapters/ch-intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ch-intro.tex -------------------------------------------------------------------------------- /chapters/ch-noodle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ch-noodle.tex -------------------------------------------------------------------------------- /chapters/ch-review.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ch-review.tex -------------------------------------------------------------------------------- /chapters/ch-rice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/chapters/ch-rice.tex -------------------------------------------------------------------------------- /exp/ch-Rice/taste.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/exp/ch-Rice/taste.plt -------------------------------------------------------------------------------- /exp/ch-Rice/taste_with_freshness.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/exp/ch-Rice/taste_with_freshness.eps -------------------------------------------------------------------------------- /exp/ch-Rice/taste_with_freshness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/exp/ch-Rice/taste_with_freshness.txt -------------------------------------------------------------------------------- /exp/ch-Rice/taste_with_meals.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/exp/ch-Rice/taste_with_meals.eps -------------------------------------------------------------------------------- /exp/ch-Rice/taste_with_meals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/exp/ch-Rice/taste_with_meals.txt -------------------------------------------------------------------------------- /fairy-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/fairy-lite/README.md -------------------------------------------------------------------------------- /fairy-lite/_common_lib/argument_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/fairy-lite/_common_lib/argument_utils.sh -------------------------------------------------------------------------------- /fairy-lite/_common_lib/filesystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/fairy-lite/_common_lib/filesystem.sh -------------------------------------------------------------------------------- /fairy-lite/_common_lib/output_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/fairy-lite/_common_lib/output_utils.sh -------------------------------------------------------------------------------- /fairy-lite/_common_lib/system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/fairy-lite/_common_lib/system.sh -------------------------------------------------------------------------------- /fairy-lite/latex/build_latex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/fairy-lite/latex/build_latex.sh -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/main.tex -------------------------------------------------------------------------------- /nusthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/nusthesis.cls -------------------------------------------------------------------------------- /pic/ch-Intro/vege.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/pic/ch-Intro/vege.pdf -------------------------------------------------------------------------------- /pic/ch-Noodle/noodle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/pic/ch-Noodle/noodle.jpg -------------------------------------------------------------------------------- /pic/ch-Rice/rice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/pic/ch-Rice/rice.jpg -------------------------------------------------------------------------------- /pic/signature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/pic/signature.jpg -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamjoin/nusthesis/HEAD/references.bib --------------------------------------------------------------------------------