├── .env ├── .github └── workflows │ └── autobuild.yml ├── .gitignore ├── README.md ├── contents ├── abilities │ ├── ability1.md │ ├── ability2.md │ ├── ability3.md │ ├── ability4.md │ └── index.md ├── conversations │ ├── conv1.md │ ├── conv2.md │ ├── conv3.md │ ├── conv4.md │ ├── conv5.md │ ├── images │ │ ├── g1.png │ │ ├── g2.png │ │ ├── g3.png │ │ ├── g4.png │ │ ├── m1.png │ │ ├── m2.png │ │ ├── m3.png │ │ └── m4.png │ └── index.md ├── footer.md ├── introduce.md ├── jobs │ ├── bz.md │ ├── cmww.md │ ├── geekpark.md │ ├── index.md │ ├── knb.md │ ├── qdan.md │ ├── qingmang.md │ └── yokeneng.md ├── logo.png ├── memoji.png ├── nav.md ├── pricing │ ├── index.md │ ├── plan1.md │ ├── plan2.md │ └── plan3.md ├── products │ ├── bv.md │ ├── geekpark.md │ ├── images │ │ ├── bv.jpg │ │ ├── geekpark.jpg │ │ ├── knb.jpg │ │ ├── qdan.png │ │ ├── spidenote.png │ │ ├── tichome.jpg │ │ ├── yokeneng.jpg │ │ └── youle.png │ ├── index.md │ ├── knb.md │ ├── qdan.md │ ├── spidernote.md │ ├── tichome.md │ ├── yokeneng.md │ └── youle.md └── works │ ├── easyhomepage.md │ ├── index.md │ ├── knbformatter.md │ ├── llmchatbot.md │ ├── macify.md │ ├── myip.md │ ├── ohearningscal.md │ ├── pingall.md │ ├── pm2048.md │ └── retiremoney.md ├── index.html ├── package.json ├── public ├── favicon.ico └── logo.png ├── server.js ├── src ├── App.vue ├── components │ ├── Abilities.vue │ ├── Conversations.vue │ ├── Footer.vue │ ├── Introduce.vue │ ├── Jobs.vue │ ├── Nav.vue │ ├── Pricing.vue │ ├── Products.vue │ └── Works.vue ├── main.js ├── store.js └── style.css └── vite.config.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/autobuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/.github/workflows/autobuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/README.md -------------------------------------------------------------------------------- /contents/abilities/ability1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/abilities/ability1.md -------------------------------------------------------------------------------- /contents/abilities/ability2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/abilities/ability2.md -------------------------------------------------------------------------------- /contents/abilities/ability3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/abilities/ability3.md -------------------------------------------------------------------------------- /contents/abilities/ability4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/abilities/ability4.md -------------------------------------------------------------------------------- /contents/abilities/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/abilities/index.md -------------------------------------------------------------------------------- /contents/conversations/conv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/conv1.md -------------------------------------------------------------------------------- /contents/conversations/conv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/conv2.md -------------------------------------------------------------------------------- /contents/conversations/conv3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/conv3.md -------------------------------------------------------------------------------- /contents/conversations/conv4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/conv4.md -------------------------------------------------------------------------------- /contents/conversations/conv5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/conv5.md -------------------------------------------------------------------------------- /contents/conversations/images/g1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/g1.png -------------------------------------------------------------------------------- /contents/conversations/images/g2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/g2.png -------------------------------------------------------------------------------- /contents/conversations/images/g3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/g3.png -------------------------------------------------------------------------------- /contents/conversations/images/g4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/g4.png -------------------------------------------------------------------------------- /contents/conversations/images/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/m1.png -------------------------------------------------------------------------------- /contents/conversations/images/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/m2.png -------------------------------------------------------------------------------- /contents/conversations/images/m3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/m3.png -------------------------------------------------------------------------------- /contents/conversations/images/m4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/conversations/images/m4.png -------------------------------------------------------------------------------- /contents/conversations/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | Badge: '造禅者说' 4 | 5 | --- -------------------------------------------------------------------------------- /contents/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/footer.md -------------------------------------------------------------------------------- /contents/introduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/introduce.md -------------------------------------------------------------------------------- /contents/jobs/bz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/bz.md -------------------------------------------------------------------------------- /contents/jobs/cmww.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/cmww.md -------------------------------------------------------------------------------- /contents/jobs/geekpark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/geekpark.md -------------------------------------------------------------------------------- /contents/jobs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/index.md -------------------------------------------------------------------------------- /contents/jobs/knb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/knb.md -------------------------------------------------------------------------------- /contents/jobs/qdan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/qdan.md -------------------------------------------------------------------------------- /contents/jobs/qingmang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/qingmang.md -------------------------------------------------------------------------------- /contents/jobs/yokeneng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/jobs/yokeneng.md -------------------------------------------------------------------------------- /contents/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/logo.png -------------------------------------------------------------------------------- /contents/memoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/memoji.png -------------------------------------------------------------------------------- /contents/nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/nav.md -------------------------------------------------------------------------------- /contents/pricing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/pricing/index.md -------------------------------------------------------------------------------- /contents/pricing/plan1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/pricing/plan1.md -------------------------------------------------------------------------------- /contents/pricing/plan2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/pricing/plan2.md -------------------------------------------------------------------------------- /contents/pricing/plan3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/pricing/plan3.md -------------------------------------------------------------------------------- /contents/products/bv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/bv.md -------------------------------------------------------------------------------- /contents/products/geekpark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/geekpark.md -------------------------------------------------------------------------------- /contents/products/images/bv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/bv.jpg -------------------------------------------------------------------------------- /contents/products/images/geekpark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/geekpark.jpg -------------------------------------------------------------------------------- /contents/products/images/knb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/knb.jpg -------------------------------------------------------------------------------- /contents/products/images/qdan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/qdan.png -------------------------------------------------------------------------------- /contents/products/images/spidenote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/spidenote.png -------------------------------------------------------------------------------- /contents/products/images/tichome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/tichome.jpg -------------------------------------------------------------------------------- /contents/products/images/yokeneng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/yokeneng.jpg -------------------------------------------------------------------------------- /contents/products/images/youle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/images/youle.png -------------------------------------------------------------------------------- /contents/products/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/index.md -------------------------------------------------------------------------------- /contents/products/knb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/knb.md -------------------------------------------------------------------------------- /contents/products/qdan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/qdan.md -------------------------------------------------------------------------------- /contents/products/spidernote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/spidernote.md -------------------------------------------------------------------------------- /contents/products/tichome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/tichome.md -------------------------------------------------------------------------------- /contents/products/yokeneng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/yokeneng.md -------------------------------------------------------------------------------- /contents/products/youle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/products/youle.md -------------------------------------------------------------------------------- /contents/works/easyhomepage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/easyhomepage.md -------------------------------------------------------------------------------- /contents/works/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | Badge: '业余的贡献' 4 | 5 | --- -------------------------------------------------------------------------------- /contents/works/knbformatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/knbformatter.md -------------------------------------------------------------------------------- /contents/works/llmchatbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/llmchatbot.md -------------------------------------------------------------------------------- /contents/works/macify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/macify.md -------------------------------------------------------------------------------- /contents/works/myip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/myip.md -------------------------------------------------------------------------------- /contents/works/ohearningscal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/ohearningscal.md -------------------------------------------------------------------------------- /contents/works/pingall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/pingall.md -------------------------------------------------------------------------------- /contents/works/pm2048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/pm2048.md -------------------------------------------------------------------------------- /contents/works/retiremoney.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/contents/works/retiremoney.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/public/logo.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/server.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/Abilities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Abilities.vue -------------------------------------------------------------------------------- /src/components/Conversations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Conversations.vue -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/Introduce.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Introduce.vue -------------------------------------------------------------------------------- /src/components/Jobs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Jobs.vue -------------------------------------------------------------------------------- /src/components/Nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Nav.vue -------------------------------------------------------------------------------- /src/components/Pricing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Pricing.vue -------------------------------------------------------------------------------- /src/components/Products.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Products.vue -------------------------------------------------------------------------------- /src/components/Works.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/components/Works.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/main.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/store.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/src/style.css -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason5ng32/EasyHomePage/HEAD/vite.config.js --------------------------------------------------------------------------------