commit 881e84ed7bd26bacb4f2336e177bf5998dd752b9 Author: louiscklaw Date: Sat Feb 1 02:03:20 2025 +0800 update, diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d54c38a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,31 @@ +*.mp4 filter=lfs diff=lfs merge=lfs +*.zip filter=lfs diff=lfs merge=lfs +*.7z filter=lfs diff=lfs merge=lfs +*.tar.gz filter=lfs diff=lfs merge=lfs +*.jpg filter=lfs diff=lfs merge=lfs +*.png filter=lfs diff=lfs merge=lfs +*.avif filter=lfs diff=lfs merge=lfs +*.webm filter=lfs diff=lfs merge=lfs +*.mkv filter=lfs diff=lfs merge=lfs + +# Documents +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain + +*.gif filter=lfs diff=lfs merge=lfs +*.GIF filter=lfs diff=lfs merge=lfs +*.bmp filter=lfs diff=lfs merge=lfs +*.BMP filter=lfs diff=lfs merge=lfs +*.tiff filter=lfs diff=lfs merge=lfs +*.TIFF filter=lfs diff=lfs merge=lfs +*.wav filter=lfs diff=lfs merge=lfs +*.WAV filter=lfs diff=lfs merge=lfs +*.log filter=lfs diff=lfs merge=lfs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..67a5a14 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/~*.* \ No newline at end of file diff --git a/gitUpdate.bat b/gitUpdate.bat new file mode 100644 index 0000000..fca29c1 --- /dev/null +++ b/gitUpdate.bat @@ -0,0 +1,7 @@ +git status . + +@pause + +git add . +git commit -m"update laitof," +start git push \ No newline at end of file diff --git a/gitUpdate.sh b/gitUpdate.sh new file mode 100755 index 0000000..c96734f --- /dev/null +++ b/gitUpdate.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +set -ex + +git config --global http.version HTTP/1.1 +git config --global lfs.allowincompletepush true +git config --global lfs.locksverify true +git config --global http.postBuffer 5368709120 + +git add . + +git commit -m 'update,' + +git push + +echo "done" diff --git a/static_page/.firebaserc b/static_page/.firebaserc new file mode 100644 index 0000000..99e800a --- /dev/null +++ b/static_page/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "helloworld-b29f6" + } +} diff --git a/static_page/.gitignore b/static_page/.gitignore new file mode 100644 index 0000000..dbb58ff --- /dev/null +++ b/static_page/.gitignore @@ -0,0 +1,66 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +firebase-debug.log* +firebase-debug.*.log* + +# Firebase cache +.firebase/ + +# Firebase config + +# Uncomment this if you'd like others to create their own Firebase project. +# For a team working on the same Firebase project(s), it is recommended to leave +# it commented so all members can deploy to the same project(s) in .firebaserc. +# .firebaserc + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env diff --git a/static_page/NOTES.md b/static_page/NOTES.md new file mode 100644 index 0000000..c30c1bc --- /dev/null +++ b/static_page/NOTES.md @@ -0,0 +1,5 @@ +# NOTES.md + +- website: https://helloworld-b29f6.web.app/ + +delete on 15-Feb-2023 diff --git a/static_page/deploy.sh b/static_page/deploy.sh new file mode 100644 index 0000000..05d13a1 --- /dev/null +++ b/static_page/deploy.sh @@ -0,0 +1,3 @@ +#!/usr/bin zsh + +/usr/bin/firebsae deploy diff --git a/static_page/firebase.json b/static_page/firebase.json new file mode 100644 index 0000000..e782939 --- /dev/null +++ b/static_page/firebase.json @@ -0,0 +1,10 @@ +{ + "hosting": { + "public": "public", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ] + } +} diff --git a/static_page/index.html b/static_page/index.html new file mode 100644 index 0000000..0f63b1b --- /dev/null +++ b/static_page/index.html @@ -0,0 +1,12 @@ + + + + + + + Document + + + helloworld + + \ No newline at end of file diff --git a/static_page/public/404.html b/static_page/public/404.html new file mode 100644 index 0000000..829eda8 --- /dev/null +++ b/static_page/public/404.html @@ -0,0 +1,33 @@ + + + + + + Page Not Found + + + + +
+

404

+

Page Not Found

+

The specified file was not found on this website. Please check the URL for mistakes and try again.

+

Why am I seeing this?

+

This page was generated by the Firebase Command-Line Interface. To modify it, edit the 404.html file in your project's configured public directory.

+
+ + diff --git a/static_page/public/earth.htm b/static_page/public/earth.htm new file mode 100644 index 0000000..5db5ec2 --- /dev/null +++ b/static_page/public/earth.htm @@ -0,0 +1,12 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/static_page/public/earth.jpeg b/static_page/public/earth.jpeg new file mode 100644 index 0000000..f541b52 Binary files /dev/null and b/static_page/public/earth.jpeg differ diff --git a/static_page/public/iframe_a.htm b/static_page/public/iframe_a.htm new file mode 100644 index 0000000..9f5ef44 --- /dev/null +++ b/static_page/public/iframe_a.htm @@ -0,0 +1,14 @@ + + + + + + + Document + + +
+

Space and Astronomy

+
+ + \ No newline at end of file diff --git a/static_page/public/iframe_b.htm b/static_page/public/iframe_b.htm new file mode 100644 index 0000000..c71d912 --- /dev/null +++ b/static_page/public/iframe_b.htm @@ -0,0 +1,16 @@ + + + + + + + Document + + +
Planets
+
Stars
+
Earth
+
Moon
+
Mars
+ + \ No newline at end of file diff --git a/static_page/public/iframe_c.htm b/static_page/public/iframe_c.htm new file mode 100644 index 0000000..93109af --- /dev/null +++ b/static_page/public/iframe_c.htm @@ -0,0 +1,13 @@ + + + + + + + Document + + + Area C should be the place to show the major contents. The first page should be +showing the picture. + + \ No newline at end of file diff --git a/static_page/public/iframe_d.htm b/static_page/public/iframe_d.htm new file mode 100644 index 0000000..d8bc110 --- /dev/null +++ b/static_page/public/iframe_d.htm @@ -0,0 +1,14 @@ + + + + + + + Document + + + Area D should be some URL to relevant web site on the Internet that is about space +and astronomy, e.g. http://www.nasa.gov. All the links here should be opened as new +window. + + \ No newline at end of file diff --git a/static_page/public/iframe_default.htm b/static_page/public/iframe_default.htm new file mode 100644 index 0000000..8755070 --- /dev/null +++ b/static_page/public/iframe_default.htm @@ -0,0 +1,12 @@ + + + + + + + Document + + + please cilck a link from the left + + \ No newline at end of file diff --git a/static_page/public/iframe_e.htm b/static_page/public/iframe_e.htm new file mode 100644 index 0000000..d1fe8d6 --- /dev/null +++ b/static_page/public/iframe_e.htm @@ -0,0 +1,12 @@ + + + + + + + Document + + + Tomas Lai mimismchan1006@gmail.com + + \ No newline at end of file diff --git a/static_page/public/index copy.html b/static_page/public/index copy.html new file mode 100644 index 0000000..9565e46 --- /dev/null +++ b/static_page/public/index copy.html @@ -0,0 +1,54 @@ + + + + + + + Document + + +
+
Space and Astronomy
+ +
+
+
Planets
+
Stars
+
Earth
+
Moon
+
Mars
+
+ +
+
+ Area C should be the place to show the major contents. The first page should be showing the picture. +
+
+
+ +
+
+ Area D should be some URL to relevant web site on the Internet that is about space + and astronomy, e.g. http://www.nasa.gov. All the links here should be opened as new + window. + + +
+
+
+ +
+
+ Area E should contain your name and email link. + Find a free web hosting service and upload on it. + Sent me the link though google classroom. +
+
+
+ + + + + \ No newline at end of file diff --git a/static_page/public/index.html b/static_page/public/index.html new file mode 100644 index 0000000..e512248 --- /dev/null +++ b/static_page/public/index.html @@ -0,0 +1,71 @@ + + + + + + + Document + + + +
+
+
+ + Space and Astronomy +
+
+
+ +
+
+
+

picture gallery

+
+ +
+
+ +
+
+
+

link here will open a new window

+
+ +
+
+ + + +
+
+
+ Tomas Lai mimismchan1006@gmail.com +
+
+
+ + + + + \ No newline at end of file diff --git a/static_page/public/mars.htm b/static_page/public/mars.htm new file mode 100644 index 0000000..c98947b --- /dev/null +++ b/static_page/public/mars.htm @@ -0,0 +1,12 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/static_page/public/mars.jpg b/static_page/public/mars.jpg new file mode 100644 index 0000000..ab592f9 --- /dev/null +++ b/static_page/public/mars.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629ff2535124362ff23df1dcee84d0905c6b64771937048a5cb8cf3b83f1dab5 +size 249861 diff --git a/static_page/public/moon.htm b/static_page/public/moon.htm new file mode 100644 index 0000000..8443f32 --- /dev/null +++ b/static_page/public/moon.htm @@ -0,0 +1,12 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/static_page/public/moon.jpg b/static_page/public/moon.jpg new file mode 100644 index 0000000..5a8d864 --- /dev/null +++ b/static_page/public/moon.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24abee6e4516d666ccce3ee62114904856e296d29242958e21528e9aae0a7b72 +size 450933 diff --git a/static_page/public/planet.jpg b/static_page/public/planet.jpg new file mode 100644 index 0000000..508f5da --- /dev/null +++ b/static_page/public/planet.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f1e88689482bd1a4ff98186907da4a3723ef14a9baf85f09500c04c0c2de4c +size 1022134 diff --git a/static_page/public/planets.htm b/static_page/public/planets.htm new file mode 100644 index 0000000..0d96eca --- /dev/null +++ b/static_page/public/planets.htm @@ -0,0 +1,12 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/static_page/public/stars.htm b/static_page/public/stars.htm new file mode 100644 index 0000000..f3a227a --- /dev/null +++ b/static_page/public/stars.htm @@ -0,0 +1,12 @@ + + + + + + + Document + + + + + \ No newline at end of file diff --git a/static_page/public/stars.jpg b/static_page/public/stars.jpg new file mode 100644 index 0000000..a8bd26b --- /dev/null +++ b/static_page/public/stars.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c88207c6f1830eecef1ef9815f6c1615adc0eed74b9dcd8590629a0f8ca9874 +size 192540