├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── Old World Peanut Butter cookies 107 recipes for the ages.md ├── Passive Income Strategies for Financial Freedom.md ├── README.md ├── blogwriter.js ├── dungeonMaster.js ├── gpt4.js ├── index.js ├── markdown-books ├── 17 ways to upgrade your service business website.md ├── 54 Shopify Tips to Increase Sales and Conversions that you can implement today.md ├── DIY vs DFY ├── DIY vs DFY, When should you do your own website and when should you hire an expert.md ├── How to analyze SEO Competition as a Digital Marketer.md ├── How to come up with profitable side hustles.md ├── How to convert a ReactJS site into a Progressive Web App.md ├── How to create an embeddable widget with Javascript.md ├── How to design an app with a great User Experience.md ├── How to generate leads with Digital Marketing.md ├── How to make automated Social Media Scheduling Software.md ├── How to start a business in 2023 using AI for help.md ├── How to start a business while raising 3 kids and holding down a full time job.md ├── How to start a lean startup in 2023.md └── How to write and deploy web components with Javascript.md ├── package.json └── recursiveWriter.js /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_KEY -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/LICENSE -------------------------------------------------------------------------------- /Old World Peanut Butter cookies 107 recipes for the ages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/Old World Peanut Butter cookies 107 recipes for the ages.md -------------------------------------------------------------------------------- /Passive Income Strategies for Financial Freedom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/Passive Income Strategies for Financial Freedom.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/README.md -------------------------------------------------------------------------------- /blogwriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/blogwriter.js -------------------------------------------------------------------------------- /dungeonMaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/dungeonMaster.js -------------------------------------------------------------------------------- /gpt4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/gpt4.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/index.js -------------------------------------------------------------------------------- /markdown-books/17 ways to upgrade your service business website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/17 ways to upgrade your service business website.md -------------------------------------------------------------------------------- /markdown-books/54 Shopify Tips to Increase Sales and Conversions that you can implement today.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/54 Shopify Tips to Increase Sales and Conversions that you can implement today.md -------------------------------------------------------------------------------- /markdown-books/DIY vs DFY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /markdown-books/DIY vs DFY, When should you do your own website and when should you hire an expert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/DIY vs DFY, When should you do your own website and when should you hire an expert.md -------------------------------------------------------------------------------- /markdown-books/How to analyze SEO Competition as a Digital Marketer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to analyze SEO Competition as a Digital Marketer.md -------------------------------------------------------------------------------- /markdown-books/How to come up with profitable side hustles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to come up with profitable side hustles.md -------------------------------------------------------------------------------- /markdown-books/How to convert a ReactJS site into a Progressive Web App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to convert a ReactJS site into a Progressive Web App.md -------------------------------------------------------------------------------- /markdown-books/How to create an embeddable widget with Javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to create an embeddable widget with Javascript.md -------------------------------------------------------------------------------- /markdown-books/How to design an app with a great User Experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to design an app with a great User Experience.md -------------------------------------------------------------------------------- /markdown-books/How to generate leads with Digital Marketing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to generate leads with Digital Marketing.md -------------------------------------------------------------------------------- /markdown-books/How to make automated Social Media Scheduling Software.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /markdown-books/How to start a business in 2023 using AI for help.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /markdown-books/How to start a business while raising 3 kids and holding down a full time job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to start a business while raising 3 kids and holding down a full time job.md -------------------------------------------------------------------------------- /markdown-books/How to start a lean startup in 2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to start a lean startup in 2023.md -------------------------------------------------------------------------------- /markdown-books/How to write and deploy web components with Javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/markdown-books/How to write and deploy web components with Javascript.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/package.json -------------------------------------------------------------------------------- /recursiveWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptboss/experiments/HEAD/recursiveWriter.js --------------------------------------------------------------------------------