├── .gitattributes ├── .gitbook └── assets │ └── banner.png ├── .gitignore ├── .obsidian-ocr.sqlite ├── README.md ├── SUMMARY.md ├── ai-mthrfckr ├── ai-apps │ ├── README.md │ ├── android.md │ ├── ios.md │ ├── macos.md │ └── windows.md ├── ai-artnftimages │ ├── 3d-and-animation.md │ ├── README.md │ ├── art.md │ ├── github-repositories.md │ ├── logo-generator.md │ ├── other.md │ ├── photo-editing.md │ ├── prompts.md │ ├── showcase.md │ └── tools.md ├── ai-audio │ ├── README.md │ ├── audio.md │ ├── editing.md │ ├── music.md │ ├── podcasts.md │ ├── speech.md │ └── text-to-speech.md ├── ai-business │ ├── README.md │ ├── customer-support.md │ ├── human-resources.md │ ├── reviews-and-recommendations.md │ ├── search-engine.md │ ├── seo.md │ └── startup.md ├── ai-content │ ├── README.md │ ├── content.md │ ├── creators-toolkit.md │ └── social-media-assistant.md ├── ai-data │ ├── README.md │ ├── data.md │ ├── spreadsheets.md │ └── sql.md ├── ai-design │ ├── README.md │ ├── architecture.md │ └── web-design.md ├── ai-detection.md ├── ai-development │ ├── README.md │ ├── code.md │ ├── database.md │ ├── developer-tools.md │ ├── github.md │ ├── learn-generative-ai.md │ └── no-code.md ├── ai-educationlearning │ ├── README.md │ ├── education-and-learning.md │ └── research.md ├── ai-experiments.md ├── ai-health │ ├── README.md │ ├── health.md │ ├── life-assistant.md │ └── memory.md ├── ai-newsarticlesblogssocial │ ├── README.md │ ├── articles.md │ ├── blogs.md │ ├── news.md │ └── twitter.md ├── ai-other │ ├── README.md │ ├── fashion.md │ ├── gift-ideas.md │ ├── legal.md │ └── real-estate.md ├── ai-productivity │ ├── README.md │ ├── chat.md │ ├── docs.md │ ├── email-assistant.md │ ├── productivity.md │ ├── sales-and-marketing.md │ └── summarizer.md ├── ai-prompts.md ├── ai-resources │ ├── README.md │ ├── pharampyschaotic.md │ ├── reading-list.md │ └── resources.md ├── ai-text.md ├── ai-tools │ ├── README.md │ ├── automation.md │ ├── templates.md │ └── translation-and-transcript.md ├── ai-video │ ├── README.md │ ├── video-animation.md │ ├── video-channels.md │ ├── video-editing.md │ ├── video-generator.md │ ├── video-interpolation.md │ ├── video-personalized.md │ └── video.md └── ai-writing │ ├── README.md │ ├── assistant.md │ ├── copywriting.md │ ├── general.md │ ├── paraphraser.md │ ├── story-teller.md │ ├── summarizing.md │ └── writing.md ├── banner.png └── readme ├── 2023-02-19 ├── 2023-02-10.md ├── 2023-02-18.md └── README.md ├── ai-apps ├── README.md ├── android.md ├── ios.md ├── macos.md └── windows.md ├── ai-artnftimages ├── 3d-and-animation.md ├── README.md ├── art.md ├── github-repositories.md ├── logo-generator.md ├── other.md ├── photo-editing.md ├── prompts.md ├── showcase.md └── tools.md ├── ai-audio ├── README.md ├── audio.md ├── editing.md ├── music.md ├── podcasts.md ├── speech.md └── text-to-speech.md ├── ai-business ├── README.md ├── customer-support.md ├── human-resources.md ├── reviews-and-recommendations.md ├── search-engine.md ├── seo.md └── startup.md ├── ai-content ├── README.md ├── content.md ├── creators-toolkit.md └── social-media-assistant.md ├── ai-data ├── README.md ├── data.md ├── spreadsheets.md └── sql.md ├── ai-design ├── README.md ├── architecture.md └── web-design.md ├── ai-detection.md ├── ai-development ├── README.md ├── code.md ├── database.md ├── developer-tools.md ├── github.md ├── learn-generative-ai.md └── no-code.md ├── ai-educationlearning ├── README.md ├── education-and-learning.md └── research.md ├── ai-experiments.md ├── ai-health ├── README.md ├── health.md ├── life-assistant.md └── memory.md ├── ai-newsarticlesblogssocial ├── README.md ├── articles.md ├── blogs.md ├── news.md └── twitter.md ├── ai-other ├── README.md ├── fashion.md ├── gift-ideas.md ├── legal.md └── real-estate.md ├── ai-productivity ├── README.md ├── chat.md ├── docs.md ├── email-assistant.md ├── productivity.md ├── sales-and-marketing.md └── summarizer.md ├── ai-prompts.md ├── ai-resources ├── README.md ├── pharampyschaotic.md ├── reading-list.md └── resources.md ├── ai-text.md ├── ai-tools ├── README.md ├── automation.md ├── templates.md └── translation-and-transcript.md ├── ai-video ├── README.md ├── video-animation.md ├── video-channels.md ├── video-editing.md ├── video-generator.md ├── video-interpolation.md ├── video-personalized.md └── video.md ├── ai-writing ├── README.md ├── assistant.md ├── copywriting.md ├── general.md ├── paraphraser.md ├── story-teller.md ├── summarizing.md └── writing.md ├── april ├── 2023-04-12.md ├── 2023-04-15.md ├── 2023-04-16.md ├── 2023-04-17.md ├── 2023-04-18.md ├── 2023-04-19.md ├── 2023-04-20.md ├── 2023-04-22.md ├── 2023-04-23.md ├── 2023-04-28.md └── README.md ├── december.md ├── gpt-prompt-guides.md ├── july ├── 2023-07-27.md └── README.md ├── march ├── 2023-03-18.md ├── 2023-03-21.md ├── 2023-03-23.md ├── 2023-03-24.md ├── 2023-03-26.md ├── 2023-03-27.md └── README.md ├── may ├── 2023-05-04.md ├── 2023-05-06.md ├── 2023-05-08.md ├── 2023-05-10.md ├── 2023-05-12.md ├── 2023-05-14.md └── README.md ├── november.md ├── october.md ├── september.md └── september ├── 2023-09-19.md ├── 2023-09-23.md ├── 2023-09-25.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitbook/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisdsmith/MTHRFCKR-AI/3fc2c8c3cb8d31e8163896febf88b6b2293d8fbf/.gitbook/assets/banner.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # to exclude Obsidian's settings (including plugin and hotkey configurations) 2 | .obsidian/ 3 | .obsidian-ocr.sqlite/ 4 | .trash/ 5 | .DS_Store 6 | .vscode/ 7 | .personal/ 8 | 9 | 10 | megalinter-reports/ 11 | 12 | 13 | # Ignore Smart Connections folder because embeddings file is large and updated frequently 14 | .smart-connections -------------------------------------------------------------------------------- /.obsidian-ocr.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisdsmith/MTHRFCKR-AI/3fc2c8c3cb8d31e8163896febf88b6b2293d8fbf/.obsidian-ocr.sqlite -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AI-MTHRFCKR 2 | 3 | ![](.gitbook/assets/banner.png) 4 | 5 | ## AI-MTHRFCKR 6 | 7 | *** 8 | 9 | **This Is A Repository Of Various Artificial Intelligence Applications, Grouped Into Different Categories Such As Art & Image, Audio, Business, And More. The Repository Provides An Overview Of The Applications Of AI In Different Fields And Serves As A Resource For Those Interested In Exploring The Capabilities Of AI. Each Section Includes Examples Of AI Projects, Tools, And Technologies Within The Specific Category, Along With Relevant Resources For Further Learning And Exploration.** 10 | 11 | **Follow Me on Twitter for More Resources!** [wh0isdsmith](https://twitter.com/wh0isdsmith) 12 | 13 | *** 14 | 15 | * **This Is A Continuous Work In Progress.** 16 | * **I Use My Own Personal Aggregator That Pulls From Many Sites And Dumps It Into My Obsidian Vault, If Anything Posted Here Is Your Work And You Want Credit For It, Just Let Me Know And I Apologize If I Have Missed Given You Credit So Far!** 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-apps/README.md: -------------------------------------------------------------------------------- 1 | # AI-Apps 2 | 3 | ## AI-Apps 4 | 5 | **In This Section, You Will Find All Things Related To Software Development Using AI Technology.** 6 | 7 | * [Android](../Android.md) 8 | * [IOS](../IOS.md) 9 | * [MacOS](../MacOS.md) 10 | * [Windows](../Windows.md) 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-apps/android.md: -------------------------------------------------------------------------------- 1 | # Android 2 | 3 | ## Android 4 | 5 | - [Lek.ai](https://lek.ai/) - The Ultimate Content Creator Toolkit Powered By AI. The Fastest And Easiest Way To Create Content And Copy. 6 | - [Notta AI](https://www.notta.ai/en) - A Platform For Hosting, Sharing And Collaborating On Large Files, Without The Constraints Of Cloud Storage Services. 7 | - [AI Writer By Picsart](http://tools.picsart.com) - Edit Images, Videos & Documents For Free - Quicktools By Picsart. Creating Transparent Backgrounds For Your Images, Trimming Videos, And Converting File Types 8 | - [Bigjpg](https://bigjpg.com/) - AI Super-Resolution Lossless Image Enlarging / Upscaling Tool Using Deep Convolutional Neural Networks. 9 | - [Dream](https://dream.ai/) - Artwork Using The Power Of AI. 10 | - [Heark](https://heark.app/) - A Platform That Uses AI To Summarize Long-form Audio Content. 11 | - [Starry AI](https://starryai.com/) - AI Art Generator App - AI Art Maker 12 | - [Synth](https://www.synth.run/) - Transform Text Into Stunning Art In Seconds With Our Prompt-based Tool. 13 | 14 | --- 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-apps/macos.md: -------------------------------------------------------------------------------- 1 | # MacOS 2 | 3 | ## MacOS 4 | 5 | - [AI Writer By Picsart](http://tools.picsart.com) - Edit Images, Videos & Documents For Free - Quicktools By Picsart. Creating Transparent Backgrounds For Your Images, Trimming Videos, And Converting File Types 6 | - [Bigjpg](https://bigjpg.com/) - AI Super-Resolution Lossless Image Enlarging / Upscaling Tool Using Deep Convolutional Neural Networks. 7 | - [CHARL-E](https://www.charl-e.com/) - Make Art With AI On Your Mac 8 | - [Diffusion Bee](http://diffusionbee.com) - Stable Diffusion App For AI Art. DiffusionBee Is The Easiest Way To Generate AI Art On Your Computer With Stable Diffusion. 9 | - [Ebsynth](http://ebsynth.com) - Transform Video By Painting Over A Single Frame. You Paint One Frame And EbSynth Propagates It To The Rest Of The Footage. 10 | - [Elephas](https://elephas.app/) - Personal AI Writing Assistant For Mac 11 | - [Gigapixel AI](https://www.topazlabs.com/gigapixel-ai/) - A Software That Uses AI To Up-res, Or Enlarge, Images While Maintaining The Sharpness And Detail Of The Original Image. 12 | - [Lek.ai](https://lek.ai/) - The Ultimate Content Creator Toolkit Powered By AI. The Fastest And Easiest Way To Create Content And Copy. 13 | - [Liner AI](https://liner.ai/) - Machine Learning Without Code 14 | - [Lobe](https://www.lobe.ai/) - Machine Learning Made Easy. Train Machine Learning Models With A Free, Easy To Use Tool. 15 | - [Mem](https://get.mem.ai/) - The Self-Organizing Workspace For Teams. 16 | - [Notta AI](https://www.notta.ai/en) - A Platform For Hosting, Sharing And Collaborating On Large Files, Without The Constraints Of Cloud Storage Services. 17 | - [Peakto](https://cyme.io/peakto-photo-organizer-software/) - The Game-changing Photo Organizer Software For Mac 18 | - [Topaz Video AI](https://www.topazlabs.com/video-enhance-ai/) - An AI-powered Video Enhancement Software That Can Improve The Quality Of Videos With Features Such As Denoising, Deblocking And Stabilization. 19 | - [Voice AI](http://voice.ai) - Change Your Voice On The Fly 20 | 21 | --- 22 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-apps/windows.md: -------------------------------------------------------------------------------- 1 | # Windows 2 | 3 | ## Windows 4 | 5 | - [ArtRoom AI](https://artroom.ai/download-app) - Local GUI For Stable Diffusion. Make Beautiful AI Generated Art Without Touching A Single Line Of Code. 6 | - [AI Writer By Picsart](http://tools.picsart.com) - Edit Images, Videos & Documents For Free - Quicktools By Picsart. Creating Transparent Backgrounds For Your Images, Trimming Videos, And Converting File Types 7 | - [Bigjpg](https://bigjpg.com/) - AI Super-Resolution Lossless Image Enlarging / Upscaling Tool Using Deep Convolutional Neural Networks. 8 | - [Gigapixel AI](https://www.topazlabs.com/gigapixel-ai/) - A Software That Uses AI To Up-res, Or Enlarge, Images While Maintaining The Sharpness And Detail Of The Original Image. 9 | - [Liner AI](https://liner.ai/) - Machine Learning Without Code 10 | - [Lobe](https://www.lobe.ai/) - Machine Learning Made Easy. Train Machine Learning Models With A Free, Easy To Use Tool. 11 | - [N00MKRAD](https://nmkd.itch.io/) - A Game Developer, Creating And Publishing Games On The Itch.io Platform. 12 | - [NMKD Stable Diffusion GUI](https://nmkd.itch.io/t2i-gui) - AI Image Generator By N00MKRAD 13 | - [Notta AI](https://www.notta.ai/en) - A Platform For Hosting, Sharing And Collaborating On Large Files, Without The Constraints Of Cloud Storage Services. 14 | - [Topaz Video AI](https://www.topazlabs.com/video-enhance-ai/) - An AI-powered Video Enhancement Software That Can Improve The Quality Of Videos With Features Such As Denoising, Deblocking And Stabilization. 15 | - [Visions of Chaos](https://softology.pro/voc.htm) - Visions of Chaos is a professional high end software application for Windows. It is simple enough for people who do not understand the mathematics behind it, but advanced enough for enthusiasts to tweak and customise to their needs. It is the most complete all in one application dealing with Chaos Theory and Machine Learning available. Every mode is written to give the best possible quality output. There are thousands of sample files included to give you an idea of what Visions of Chaos is capable of. 16 | 17 | --- 18 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-artnftimages/README.md: -------------------------------------------------------------------------------- 1 | # AI-ArtNFTImages 2 | 3 | ## AI-Art/NFT/Images 4 | 5 | **In This Section, You Will Find AI Tools And Models For Art And Image Processing. This Includes Tools For 3D And Animation, Art And Avatar Creation, Photo Editing, And More.** 6 | 7 | * [3D & Animation](3d-and-animation.md) 8 | * [Art](../Art.md) 9 | * [Github Repositories](../Github%20Repositories.md) 10 | * [Logo Generator](../Logo%20Generator.md) 11 | * [Other](../Other.md) 12 | * [Photo Editing](../Photo%20Editing.md) 13 | * [Prompts](../Prompts.md) 14 | * [Showcase](../Showcase.md) 15 | * [Tools](../Tools.md) 16 | 17 | *** 18 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-artnftimages/github-repositories.md: -------------------------------------------------------------------------------- 1 | # Github Repositories 2 | 3 | ## Github Repositories 4 | 5 | * [AI4D](https://github.com/mmattyg/AI4D) - A Repository For AI For Development. 6 | * [Dl–colab–notebooks](https://github.com/tugstugi/dl%E2%80%93colab%E2%80%93notebooks) - Deep Learning Tutorials In Colab Notebooks. 7 | * [Dl–colab–notebooks](https://github.com/styler00dollar/dl%E2%80%93colab%E2%80%93notebooks) - A Collection Of Deep Learning Tutorials In Colab Notebooks. 8 | * [Shared\_colab\_notebooks](https://github.com/mrm8488/shared\_colab\_notebooks) - A Repository Of Shared Google Colab Notebooks. 9 | * [Ml–art–colabs](https://github.com/dvschultz/ml%E2%80%93art%E2%80%93colabs) - A Collection Of Machine Learning And Art Colab Notebooks. 10 | * [PINTO Model Zoo](https://github.com/PINTO0309/PINTO\_model\_zoo) - A Collection Of Pre-trained Models For Various Tasks. 11 | * [Mediapipe](https://github.com/google/mediapipe) - A Cross-platform Multimedia Framework By Google. 12 | * [Mediapipe Demos](https://viz.mediapipe.dev/demo) - A Demo Page For Mediapipe Framework. 13 | * [Tensorflow Generative Tutorials](https://github.com/tensorflow/docs/tree/master/site/en/tutorials/generative) - A Repository Of Tensorflow Generative Tutorials. 14 | * [Deep Image Prior](https://github.com/DmitryUlyanov/deep%E2%80%93image%E2%80%93prior) - A Repository For Deep Image Prior. 15 | * [Awesome Colab Notebooks](https://github.com/amrzv/awesome%E2%80%93colab%E2%80%93notebooks) - A Collection Of Awesome Google Colab Notebooks. 16 | * [Useless Pytools](https://colab.research.google.com/github/aicrumb/useless%E2%80%93pytools/blob/main/useless\_py.ipynb) - A Repository For Useless Python Tools. 17 | * [My Colab Experiments](https://github.com/Norod/my%E2%80%93colab%E2%80%93experiments) - A Collection Of Personal Google Colab Experiments. 18 | * [Collection Of Notebooks](https://github.com/tg%E2%80%93bomze/collection%E2%80%93of%E2%80%93notebooks) - A Collection Of Various Notebooks. 19 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-artnftimages/logo-generator.md: -------------------------------------------------------------------------------- 1 | # Logo Generator 2 | 3 | ## Logo Generator 4 | 5 | * [Designs AI](https://designs.ai/) - Creative Work Done Effortlessly 6 | * [Brandmark](http://brandmark.io) - Brandmark Logo Maker - The Most Advanced AI Logo Design Tool 7 | * [Looka](https://looka.grsm.io/jscfk35v34tn) - Free Logo Maker & Intelligent Brand Designer. Make A Logo And Build A Brand You Love With Looka. 8 | * [Make Logo AI](https://makelogo.ai/) - Makelogo. AI Get The Perfect Logo For Your Startup. Generate Beautiful And Unique Logos For Your Startup, Powered By Artificial Intelligence. 9 | * [Namecheap](https://www.namecheap.com/logo-maker/app/new/) - Logo Maker 10 | * [Text To Book Cover](http://stockimg.ai) - AI Image Generation For Teams - You Can Easily Generate AI Logo, AI Book Covers, AI Posters And More - Stockimg AI. AI Image Generation For Teams - You Can Easily Generate AI Logo, AI Book Covers, AI Posters And More - Stockimg AI. 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-artnftimages/other.md: -------------------------------------------------------------------------------- 1 | # Other 2 | 3 | ## Other 4 | 5 | * [DeepAI APIs](https://deepai.org/apis) - A Page For DeepAI APIs. 6 | * [Hitchhiker's Guide To Latent Space Colabs](https://docs.google.com/document/u/1/d/1ON4unvrGC2fSEAHMVb4idopPlWmzM0Lx5cxiOXG47k4/mobilebasic) - A Document Guide For Latent Space Colab. 7 | * [Pharmapsychotic Tools](https://pharmapsychotic.com/tools.html) - A Page For Tools Provided By Pharmapsychotic. 8 | 9 | ### Mediapipe Facemesh 10 | 11 | * [Google Colab Notebook](https://colab.research.google.com/drive/1FCxIsJS9i58uAsgsLFqDwFmiPO14Z2Hd) - A Google Colab Notebook That Demonstrates How To Use The Mediapipe Library To Detect Faces In An Image And Extract Facial Landmarks. 12 | * [Face Landmark](https://eyaler.github.io/tfjs\_webgl\_app/face\_landmark) - A Website That Provides A Face Swap App That Allows You To Swap Faces In A Video Or Camera Feed Using Facial Landmarks. 13 | 14 | ### NLP 15 | 16 | * [Quantum Stat Notebooks](https://notebooks.quantumstat.com/) - NLP Resources By Quantum Stat 17 | 18 | *** 19 | 20 | ### (NSFW) 21 | 22 | * [Penis Generator](https://colab.research.google.com/drive/1DoCxr2pYlxCRv6RmITtFWahVXsbTexYp) - NSFW 23 | * [Penis Generator](https://colab.research.google.com/drive/1-SDjR6ztiExBRmf5xzspNsA5t8y3kEXk) - NSFW 24 | 25 | ### Old School 26 | 27 | * [Picbreeder](http://picbreeder.org/) - A Website That Provides An Interactive Platform To Breed Unique And Interesting Images Using A Genetic Algorithm. 28 | * [GMIC Video](https://j.mp/gmicvid) - A Website That Provides A Video Processing Tool That Uses The GMIC Filters To Enhance The Video Quality. 29 | * [GMIC Online](https://gmicol.greyc.fr/) - An Online Platform That Allows You To Apply GMIC Filters On Images. 30 | * [Plotting Pi](https://bit.li/plotpi) - A Website That Provides A Visual Representation Of The Number Pi Using A Plotting Algorithm. 31 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-artnftimages/prompts.md: -------------------------------------------------------------------------------- 1 | # Prompts 2 | 3 | ## Prompts 4 | 5 | * [CLIP Interrogator 2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - An AI Model That Generates Short Answers To Questions In Natural Language. 6 | * [Home | DiffusionDB](https://poloclub.github.io/diffusiondb/) - A Platform That Helps To Easily Visualize And Explore High-dimensional Data Through Diffusion Maps. 7 | * [Midjourney Prompt Generators/](https://osvik.github.io/prompt-generators/) - A Website That Offers Different Prompt Generators For Creativity And Inspiration. 8 | * [Prompter Guide](https://prompterguide.com/) - A Guide That Provides Tips And Tricks On How To Use Teleprompters Effectively. 9 | * [PromptExtend](https://www.promptextend.com/) - A Platform That Provides Creative Writing Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 10 | * [Prompt Generator For Stable Diffusion](https://www.thomas.io/stable-diffusion-prompt-generator) - A Prompt Generator That Helps To Generate Creative Ideas For Writing And Other Artistic Endeavors. 11 | * [PromptHero](https://prompthero.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 12 | * [Prompt Hunt](https://www.prompthunt.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 13 | * [Promptist](https://huggingface.co/spaces/microsoft/Promptist) - An AI Model That Generates Writing Prompts In Natural Language. 14 | * [PromptLocker](https://www.promptlocker.com/) - A Platform That Provides A Library Of Writing Prompts For Writers, Artists, And Other Creative Minds. 15 | * [Promptmakr](https://promptmakr.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 16 | * [Prompt.Noonshot](https://prompt.noonshot.com/) - Midjourney Prompt Wizard - A Website That Offers A Prompt Generator For Creativity And Inspiration. 17 | * [PromptoMANIA](https://promptomania.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 18 | * [Prompts Database](https://stablediffusionweb.com/prompts) - A Database Of Creative Writing Prompts For Writers, Artists, And Other Creative Minds. 19 | * [Public Prompts](https://publicprompts.art/) - A Platform That Provides A Library Of Public Writing Prompts For Writers, Artists, And Other Creative Minds. 20 | * [Simple Prompt Generator V0.3](https://wine-ineff.github.io/Simple\_Prompt\_Generator/) - A Simple Prompt Generator For Writing And Other Creative Endeavors. 21 | * [Stable Diffusion Prompt Book](https://openart.ai/promptbook) - A Platform That Provides A Library Of Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 22 | * [Super Prompts](https://superprompts.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 23 | 24 | *** 25 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-artnftimages/showcase.md: -------------------------------------------------------------------------------- 1 | # Showcase 2 | 3 | ## Showcase 4 | 5 | * [OnCyber Art Galleries](https://oncyber.io/) - Cool 3D Art Gallery To Showcase Your Art With Links To NFT Market 6 | * [Spatial](https://spatial.io) - Create, Share & Experience Your Creativity In 3D 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-audio/README.md: -------------------------------------------------------------------------------- 1 | # AI-Audio 2 | 3 | ## AI-Audio 4 | 5 | **In This Section, You Will Find All Things Related To Audio Processing Using AI Technology.** 6 | 7 | * [Audio](../Audio.md) 8 | * [Editing](../Editing.md) 9 | * [Music](../Music.md) 10 | * [Podcasts](../Podcasts.md) 11 | * [Speech](../Speech.md) 12 | * [Text To Speech](../Text%20To%20Speech.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-audio/audio.md: -------------------------------------------------------------------------------- 1 | # Audio 2 | 3 | ## Audio 4 | 5 | * [Article](https://article/) - A Website For Converting Articles To Various Formats Using AI Technology. 6 | * [Audo AI](https://audo.ai/) - AI Powered Background Noise Removal 7 | * [Clip](https://www.clip/) - A Website Offering AI-powered Video Editing Services. 8 | * [EarthML1](https://twitter.com/EarthML1/status/1449776224222523397?s=20\&t=oPLA241CLsGzifdwWcFgWQ) - A Twitter Status Update By EarthML1. 9 | * [Free Subtitles](https://freesubtitles.ai/) - A Website For Subtitle Creation Using AI Technology. 10 | * [Moises.ai](https://moises.ai/) - A Website For An AI Tool That Offers Personalized Language Learning Experiences. 11 | * [Parrot AI](https://app.parrot.ai/workspaces/personal?referrer=https%3A%2F%2Fapp.parrot.ai%2Flogout) - A Website For A Personal Workspace Offered By Parrot AI, An AI-powered Tool For Data Analysis And Organization. 12 | * [Whisper Memos](http://whispermemos.com) - Whisper Memos 13 | * [WZRD](https://wzrd.ai/) - A Website Offering AI-powered Sound Design Services. 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-audio/editing.md: -------------------------------------------------------------------------------- 1 | # Editing 2 | 3 | ## Editing 4 | 5 | * [Altered](https://www.altered.ai/) - Altered Is A Platform That Helps You Generate Text In Real-time, By Using Deep Learning Models Trained On A Large Corpus Of Data. 6 | * [Assemblyai](http://www.assemblyai.com) - #1 Api Platform For AI Models. Automatically Convert And Video Files And Live Streams To Text With AssemblyAI's Speech-to-Text APIs. Do More With Intelligence - Summarization, Content Moderation, Topic Detection. 7 | * [Beatoven.ai](https://www.beatoven.ai/) - Beatoven Is An AI-powered Music Production Platform That Provides Beat-making, Production And Sound Design Services. 8 | * [Cleanvoice AI](http://cleanvoice.ai) - Get Rid Of Filler Words From Your Recordings. Cleanvoice Is An Artificial Intelligence Which Removes Filler Sounds, Stuttering And Mouth Sounds From Your Podcast Or Recording. 9 | * [Clip](http://www.clip) - AI Search Engine. The Search Engine. 10 | * [Krisp](https://krisp.ai/) - Krisp Is An AI-powered Noise Cancelling Solution That Removes Background Noise In Real-time During Voice And Video Calls. 11 | * [Strip](https://www.strip.co.uk/) - Strip Is A Digital Payments Platform That Offers Payment Solutions For Individuals And Businesses, With Features Such As A Debit Card, An Online Dashboard, And Instant Notifications. 12 | * [Voicemod](https://www.voicemod.net/) - Voicemod Is A Software That Allows You To Change Your Voice In Real-time, With Options Such As A Robot, A Girl, Or A Troll. 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-audio/podcasts.md: -------------------------------------------------------------------------------- 1 | # Podcasts 2 | 3 | ## Podcasts 4 | 5 | * [Adobe Mic Check](https://podcast.adobe.com/miccheck) - Check Your Mic For Free. Get Advice On How To Improve Your Microphone Setup. We' Ll Make Sure You Sound Podcast-ready. 6 | * [Adobe Podcast](http://podcast.adobe.com) - Adobe Podcast - AI Recording And Editing, All On The Web. An Tool For People With Stories To Tell. 7 | * [Descript](https://www.descript.com/) - Video Editing, Podcast Transcription, Voice Overdub 8 | * [Podcast AI](http://podcast.ai) - A Platform That Provides Tools And Services For Podcast Creators And Listeners. 9 | * [Podcastle](https://podcastle.ai/) - Podcastle Is An AI-powered Platform That Helps You Create High-quality Podcasts, With Features Such As Voice-to-text Transcription, Voice Modification, And Sound Effects. 10 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-audio/speech.md: -------------------------------------------------------------------------------- 1 | # Speech 2 | 3 | ## Speech 4 | 5 | * [Adobe Speech Enhancer](https://podcast.adobe.com/enhance) - Enhance Voice Recordings For Free. Speech Enhancement Makes Voice Recordings Sound As If They Were Recorded In A Professional Studio. 6 | * [Altered](https://www.altered.ai/) - A Website Offering AI-powered Image And Video Manipulation Services. 7 | * [Coqui](http://coqui.ai) - Direct Emotive, Generative AI Voices For Video Games, Post-production, Dubbing And Much More 8 | * [Create AI Voice Overs](https://createaivoiceovers.com/) - A Website Offering AI-powered Voice-over Services. 9 | * [Echo](https://lightning.ai/echo/view/home) - A Website Offering AI-powered Voice-over Services. 10 | * [ELSA SPEECH ANALYZER](http://speechanalyzer.elsaspeak.com) - An AI-powered Speech Recognition And Analysis Tool 11 | * [Fireflies](http://fireflies.ai) - Fireflies AI Notetaker & Conversation Intelligence. Fireflies.AI Helps Your Team Record, Transcribe, Search, And Analyze Voice Conversations. 12 | * [Lingostar](http://www.lingostar.ai) - Lingostar - Real Conversations With Artificial Intelligence. Lingostar Is The AI Who Language Learners Can Speak To In English, Spanish, Or French. Reach Fluency With REAL Spoken Conversations For Free. No More Tutors - Chat With The Lingostar A. I. To Improve Your Pronunciation, Vocabulary, And Comprehension. 13 | * [Voicemod](http://www.voicemod.net) - Free Real Time Voice Changer & Modulator - Voicemod. Express Yourself With Our Real-time AI Voice Changer And Soundboard To Be Who You Want, When You Want In The Metaverse. Build Your Sonic Identity For Platforms Like Roblox, OBS, VRChat, Discord, And More. 14 | * [Voicera](http://www.voicera.co) - Create Life-Like Voice Dictation For Your Blogs And Articles In One Click. Embed The Voice Into Your Content. Increase Users' Engagement. 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-business/README.md: -------------------------------------------------------------------------------- 1 | # AI-Business 2 | 3 | ## AI-Business 4 | 5 | **In This Section, You Will Find AI Tools And Models Related To Business And Commerce.** 6 | 7 | * [Customer Support](../Customer%20Support.md) 8 | * [Human Resources](../Human%20Resources.md) 9 | * [Reviews & Recommendations](../Reviews%20&%20Recommendations.md) 10 | * [Search Engine](../Search%20Engine.md) 11 | * [SEO](../SEO.md) 12 | * [Startup](../Startup.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-business/reviews-and-recommendations.md: -------------------------------------------------------------------------------- 1 | # Reviews & Recommendations 2 | 3 | ## Reviews & Recommendations 4 | 5 | * [AI Review Reply Assistant](http://www.mara-solutions.com) - Respond To Reviews With Your AI Review Reply Assistant. AI Review Reply Generator Reply 3x Faster To Every Customer Review With Individual Responses Written By Your Personal AI Assistant. No Templates Are Needed. 6 | * [Artreviewgenerator](http://artreviewgenerator.com) - Art Review Generator. A Natural Language Processing Tool And Text Generator. It Takes A Set Of Words As A Prompt And Then Generates A Medium Length Set Of Sentences That Approximate The Training Data. 7 | * [Geniusreview](http://geniusreview.xyz) - Geniusreview - 360° AI Performance Reviews. Save Tons Of Hours By Using GeniusReview To Get Tailored Answers To Your Performance Review Questions. 8 | * [Reviewz](http://www.reviewz.ai) - Discover All The Top Things Recommended By AI 9 | * [Sona](http://www.readthistwice.com) - Read This Twice - Books Worth Reading Twice. We Spend Countless Hours Scouring The Internet For The Best Book Recommendations From People You Admire. Our Database Is Constantly Growing, And Every Single Recommendation Has Been Verified For Authenticity And Includes A Link To The Source. Enjoy! 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-business/startup.md: -------------------------------------------------------------------------------- 1 | # Startup 2 | 3 | ## Startup 4 | 5 | * [Broadn](https://www.broadn.io/) - It Is A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 6 | * [Durable](https://durable.co/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 7 | * [Finta](https://www.trustfinta.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 8 | * [Ideabuddy](https://ideabuddy.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 9 | * [IdeasAI](https://ideasai.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 10 | * [Namelix](https://namelix.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 11 | * [Namewizard.ai](https://namewizard.ai/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 12 | * [Paperade](https://www.paperade.co/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 13 | * [Pitchgrade](https://pitchgrade.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 14 | * [Rationale](https://rationale.jina.ai/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 15 | * [Tome](https://beta.tome.app/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 16 | * [Validator AI](https://www.validatorai.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-content/README.md: -------------------------------------------------------------------------------- 1 | # AI-Content 2 | 3 | ## AI-Content 4 | 5 | **In This Section, You Will Find AI Tools And Models For Content Generation.** 6 | 7 | * [Content](../Content.md) 8 | * [Creators Toolkit](../Creators%20Toolkit.md) 9 | * [Social Media Assistant](../Social%20Media%20Assistant.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-content/creators-toolkit.md: -------------------------------------------------------------------------------- 1 | # Creators Toolkit 2 | 3 | ## Creators Toolkit 4 | 5 | * [Clipdrop](http://clipdrop.co) - Create Stunning Visuals In Seconds. The Ultimate Ecosystem Of Apps, Plugins & Resources For All Creators, Powered By Artificial Intelligence. 6 | * [Cutout Pro](http://www.cutout.pro) - Cutout. Pro - AI Photo Editing - Visual Content Generation Platform, Best For Image And Video Design. All-in-one Visual Design Platform Containing AI Photo And Video Editing Tools. Automatic Process For Background Remove, Image Restoration, Graphic Design, And Content Generation. 7 | * [Descript](http://www.descript.com) - There\&Apos; S A New Way To Make Video And Podcasts. A Good Way. Descript Is The Simple, Powerful, And Fun Way To Edit. 8 | * [Fermat](http://fermat.ws) - Creativity Augmented For Content Creation. Unleash Your Creativity With AI On A Collaborative Canvas. 9 | * [Hotpot](http://hotpot.ai) - Hotpot. AI. Hotpot.ai Helps You Create Amazing Graphics, Pictures, And Text. AI Tools Like AI Art Generator Spark Creativity And Automate Drudgery While Easy-to-edit Templates Empower Anyone To Create Device Mockups, Social Media Posts, Marketing Images, App Icons, And Other Work Graphics. 10 | * [Lightricks](http://www.lightricks.com) - Home To Creators Everywhere. Experience The Magic Of Creating With The Best Tools And Services For Creators Facetune 2, Videoleap, Linkinbio & Photoleap. Check It Out Now. 11 | * [Media.io](https://www.media.io/) - Online Video, Audio, Image Creativity Platform Powered By AI. Simplicity. Diversity. Flexibility. 12 | * [Runway](http://runwayml.com) - Runway - Next-Generation Creation Suite - Everything You Need To Make Content, Fast. Discover Advanced Video Editing Capabilities To Take Your Creations To The Next Level. 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-content/social-media-assistant.md: -------------------------------------------------------------------------------- 1 | # Social Media Assistant 2 | 3 | ## Social Media Assistant 4 | 5 | * [Adcreative.ai](https://free-trial.adcreative.ai/yu6pljyh4s0k) - A Website That Provides A Platform For Creating And Optimizing Ad Campaigns With The Help Of AI Technology. 6 | * [AI Social Bio](https://aisocialbio.com/) - A Website That Offers A Tool To Help Users Create Attractive And Effective Social Media Bios Using AI Technology. 7 | * [AI Social Media Post Writerby Socialblu](http://socialbu.com) - Social Media Management And Automation. SocialBu Is The Perfect Solution To Improve Your Social Media Presence And Maximize Your Results. Publish, Respond, Analyze, And Automate - All From Within SocialBu. 8 | * [Audiolabs](https://www.audiolabs.io/) - A Website That Provides An AI-powered Platform For Audio Production And Post-production Services. 9 | * [Canva Text To Image](https://www.canva.com/your-apps/text-to-image) - A Website That Offers A Tool To Transform Text Into Custom Graphics And Images. 10 | * [Contentada](https://contenda.co/) - A Website That Provides A Content Creation Platform Powered By AI Technology. 11 | * [CrawlQ.ai](https://crawlq.ai/) - A Website That Offers A Web Scraping And Data Extraction Service Powered By AI Technology. 12 | * [Editby](https://aiinfinity.blogspot.com/p/smaeditby.html) - Unlock Creativity And Grow Your Twitter Audience With AI. 13 | * [FeedHive](https://aiinfinity.blogspot.com/p/smafeedhive.html) - Create, Schedule, Publish, And Easily Manage Your Social Media Content At Scale With FeedHive's AI-powered Platform. 14 | * [Graham AI](https://aiinfinity.blogspot.com/p/smagraham-ai.html) - Tweet Like A Genius Tech Influencer, Generated By AI. 15 | * [InstaSalesAI](https://aiinfinity.blogspot.com/p/smainstasalesai.html) - Unlock Your Instagram.Get More Organic Traffic.Build Your Credibility And Maximize Your Sales With Fresh Content Using AI. 16 | * [MagicThumbnails](https://aiinfinity.blogspot.com/p/smamagicthumbnails.html) - Generate YouTube Thumbnails With AI. 17 | * [Munch](https://aiinfinity.blogspot.com/p/smamunch.html) - Go Viral Using Your Existing Content Automatically. 18 | * [Ocoya](https://aiinfinity.blogspot.com/p/smaocoya.html) - Social Media Content 10x Faster. 19 | * [Photor AI](https://photor.io/photoscore) - A Website That Provides An AI-powered Photo Management And Optimization Tool. 20 | * [Predis](https://aiinfinity.blogspot.com/p/smapredis.html) - Create Stunning Social Media Video/Reels Posts In Seconds! 21 | * [Repl AI](https://aiinfinity.blogspot.com/p/smarepl-ai.html) - Get 10x Growth With AI-generated Replies. 22 | * [SocialBu](https://aiinfinity.blogspot.com/p/smasocialbu.html) - Easy And Effective Social Media Management Solution. 23 | * [Spatial](https://aiinfinity.blogspot.com/p/smaspatial.html) - Predict And Influence Customer Behavior With The World's First Real-time Social Media Segmentation System. 24 | * [TweetEmote](https://aiinfinity.blogspot.com/p/smatweetemote.html) - The AI-Powered Tweet Assistant. 25 | * [Tweet Hunter](https://aiinfinity.blogspot.com/p/smatweet-hunter.html) - BUILD & MONETIZE YOUR TWITTER AUDIENCE FAST. 26 | * [Wordhero](https://wordhero.co) - A Website That Offers An AI-powered Writing Assistant And Optimization Tool. 27 | 28 | *** 29 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-data/README.md: -------------------------------------------------------------------------------- 1 | # AI-Data 2 | 3 | ## AI-Data 4 | 5 | **In This Section, You Will Find AI Tools And Models Related To Data Processing And Analysis.** 6 | 7 | * [Data](../Data.md) 8 | * [Spreadsheets](../Spreadsheets.md) 9 | * [SQL](../SQL.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-data/data.md: -------------------------------------------------------------------------------- 1 | # Data 2 | 3 | ## Data 4 | 5 | - [AI2sql](https://www.ai2sql.io/) - AI2sql Is A Tool That Enables You To Query Databases Using Natural Language. 6 | - [AI SQL Query Builder](https://aihelperbot.com/) - AI SQL Query Builder Is A Tool That Helps You Build SQL Queries By Simply Asking Natural Language Questions. 7 | - [Dashboard | Sheet+](https://app.sheetplus.ai/) - Sheet+ Is A Platform That Provides A Dashboard For Data Analysis And Visualization. 8 | - [DataRobot](https://www.datarobot.com/) - DataRobot Is An AI-powered Platform For Automating The Building, Deployment, And Management Of Machine Learning Models. 9 | - [EndType](https://endtype.com/) - EndType Is A Platform For Creating And Managing Database Schema And Content. 10 | - [EverSQL | Your Database, Just Faster](https://www.eversql.com/) - EverSQL Is A Database Performance Optimization Platform That Speeds Up Your Database Performance. 11 | - [Excel Formulator](https://excelformulator.com/signin) - Excel Formulator Is A Tool That Helps You Convert Your Data Into An Excel Spreadsheet. 12 | - [Lookup](https://app.uselookup.com/dashboard) - Lookup Is A Platform That Enables You To Search And Visualize Data From Various Sources. 13 | - [Raw Query](https://rawquery.com/) - Raw Query Is A Platform That Enables You To Run SQL Queries On Large Data Sets. 14 | - [Seek AI](https://www.seek.ai/) - Seek AI Is A Platform For Finding And Evaluating AI Models. 15 | - [SeekWell](https://www.seekwell.io/#features) - SeekWell Is A Platform For Writing And Executing SQL Queries. 16 | - [Tabulate](https://github.com/openai/tabulate) - Tabulate Is A Library For Creating Formatted Tables In Various Formats, Including Markdown. 17 | - [Universal Data Generator](https://generate.universaldata.io/) - Universal Data Generator Is A Platform For Generating Synthetic Data For Use In Development, Testing, And Research. 18 | 19 | --- 20 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-data/spreadsheets.md: -------------------------------------------------------------------------------- 1 | # Spreadsheets 2 | 3 | ## Spreadsheets 4 | 5 | - [Excel Formula Bot](https://excelformulabot.com/) - A Website Offering Excel Formula Tutorials, Tips, And Tricks. 6 | - [Goodlookup](https://www.goodlookup.com/) - A Website That Provides A Simple And Easy To Use Tool For Working With Spreadsheets. 7 | - [Sheet+](https://sheetplus.ai/) - A Website Offering An AI-powered Tool For Working With Spreadsheets. 8 | - [Sheet AI](https://www.sheetai.app/) - A Website Offering A Suite Of AI-powered Tools For Working With Spreadsheets. 9 | - [SheetGod](https://www.boloforms.com/sheetgod/) - A Website Offering An AI-powered Tool For Automating Tasks In Spreadsheets. 10 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-data/sql.md: -------------------------------------------------------------------------------- 1 | # SQL 2 | 3 | ## SQL 4 | 5 | - [Ai2sql](http://www.ai2sql.io) - Sql Query Builder AI Bot. With AI2sql, Engineers And Non-engineers Can Easily Write Efficient, Error-free SQL Queries Without Knowing SQL. It's Time To Take Back Your Time. 6 | - [AI Data Sidekick](https://www.airops.com/) - A Website Offering An AI-powered Tool For Analyzing And Optimizing Data. 7 | - [AIHelperBot](https://aihelperbot.com/) - A Website Offering An AI-powered Tool For Working With SQL Databases. 8 | - [Avanty](https://avanty.app/) - A Website Offering An AI-powered Tool For Automating Database Management Tasks. 9 | - [Channel](https://www.usechannel.com/) - A Website Offering An AI-powered Tool For Analyzing And Visualizing Data. 10 | - [CodeSquire](https://codesquire.ai/) - A Website Offering An AI-powered Tool For Automating Database Development Tasks. 11 | - [Continual](https://continual.ai/) - A Website Offering An AI-powered Tool For Automating Database Management Tasks. 12 | - [Seek](https://www.seek.ai/) - A Website Offering An AI-powered Tool For Automating Database Development Tasks. 13 | 14 | --- 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-design/README.md: -------------------------------------------------------------------------------- 1 | # AI-Design 2 | 3 | ## AI-Design 4 | 5 | **In This Section, You Will Find AI Tools And Models For Design And Architecture.** 6 | 7 | * [Architecture](../Architecture.md) 8 | * [Assistant](../Assistant.md) 9 | * [Web Design](../Web%20Design.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-design/architecture.md: -------------------------------------------------------------------------------- 1 | # Architecture 2 | 3 | ## Architecture 4 | 5 | * [AI Room Planner](http://airoomplanner.com) - Interior Design By AI. Get Hundreds Of Interior Design Ideas For Your Room - Free With No Limit 6 | * [Dimensions](http://www.dimensions.ink) - Dimensions - Rapidly Create Visual Concepts With AI. Imagine Being Able To Create Beautiful Interior Designs With Ease–that's What Dimensions Offers 7 | * [Getfloorplan](http://getfloorplan.com) - Creating 2D And 3D Floor Plans With AI. Up To 30% Calls Increase Reported By Our Clients Using 2D, 3D Floor Plans And Virtual Tours 8 | * [Image Computer](http://image.computer) - Generate Your Next Interior Design / Paniting / Fashion Collection / Concept Art. Use Our Powerful AI Technology To Generate Any Type Of Image You Can Think Of. In A Matter Of Seconds 9 | * [Interior AI](http://interiorai.com) - Interior AI: Interior Design Ideas Inspiration, And Virtual Staging App Using Artificial Intelligence. Get Interior Design Ideas Using Artificial Intelligence And Virtually Stage Interiors For Real Estate Listings With Different Interior Styles 10 | * [Makeit.ai](http://www.maket.ai) - Generative Design - Architecture Design Software - Maket. Our Generative Design Software Enables Architects, Builders & Developers To Quickly Generate Thousands Of Architectural Plans Instantly 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-design/web-design.md: -------------------------------------------------------------------------------- 1 | # Web Design 2 | 3 | ## Web Design 4 | 5 | * [AI Design Resource](https://aidesignresource.com/) - A Platform For AI-powered Design Resources. 6 | * [ChatBA](https://www.chatba.com/) - Chatbcg Generative AI For Slides. Instantly Create Slide Decks Using ChatBCG. 7 | * [Durable](http://durable.co) - Durable AI Website Builder And Service Business Software 8 | * [Magician](http://magician.design) - Magician For Figma. A Magical Design Tool For Figma Powered By AI. 9 | * [Piggy](https://piggy.to/magic) - Mobile Content Creator. Creating Stunning Content On Your Phone Just Got Easy. 10 | * [SlidesAI](https://www.slidesai.io/) - Create Presentation Slides With AI In Seconds. Say Goodbye To Tedious, Manual Slides Creation. Let The AI Write The Outline And Presentation Content For You. With Our Tool, You Can Easily Create Professional, Engaging Slides From Any Text In No Time. 11 | * [Tome](http://beta.tome.app) - Generative Storytelling Has Arrived. Unlock Your Best Work With Tome's AI-powered Storytelling Format. 12 | 13 | *** 14 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-detection.md: -------------------------------------------------------------------------------- 1 | # AI-Detection 2 | 3 | ## AI-Detection 4 | 5 | - [BusterAI](https://aiinfinity.blogspot.com/p/ai-detection-busterai.html) - Is Your Text Written By A Human Or AI? Uncover The Truth With BusterAI. 6 | - [Detect GPT](https://aiinfinity.blogspot.com/p/ai-detection-detect-gpt-chrome-extension.html) - Find Out If The Pages You Browse Contain AI-generated Content. 7 | - [GLTR AI Detection](https://aiinfinity.blogspot.com/p/ai-detectiongltr.html) - Catching A Unicorn With GLTR: A Tool To Detect Automatically Generated Text. 8 | - [GPTZero](https://aiinfinity.blogspot.com/p/ai-detectiongptzero.html),[Other](https://etedward-gptzero-main-zqgfwb.streamlit.app/) - GPTZero Turns The Very Technologies Used To Build ChatGPT Around—to Detect AI 9 | - [OpenAI Classifier](https://aiinfinity.blogspot.com/p/ai-detectionopenai-classifierai.html) - A Classifier Trained To Distinguish Between AI-written And Human-written Text. 10 | - [Originaltiy AI](https://aiinfinity.blogspot.com/p/ai-detectionoriginality-ai.html) - A Plagiarism Checker And AI Detector Built For Serious Content Publishers. 11 | - [Writer](https://aiinfinity.blogspot.com/p/ai-detectionwriter.html) - AI Content Detector! 12 | - [ZeroGPT](https://aiinfinity.blogspot.com/p/ai-detectionzerogpt.html) - Detect ChatGPT Content For Free, Simple Way & High Accuracy. OpenAI Detection Tool. 13 | 14 | --- 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-development/README.md: -------------------------------------------------------------------------------- 1 | # AI-Development 2 | 3 | ## AI-Development 4 | 5 | **In This Section, You Will Find AI Tools And Models For Software Development And Programming.** 6 | 7 | * [Code](../Code.md) 8 | * [Database](../Database.md) 9 | * [Developer Tools](../Developer%20Tools.md) 10 | * [Github](../Github.md) 11 | * [Learn Generative AI](../Learn%20Generative%20AI.md) 12 | * [No Code](../No%20Code.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-development/github.md: -------------------------------------------------------------------------------- 1 | # Github 2 | 3 | ## Github 4 | 5 | * [Awesome-chatgpt-prompts](https://github.com/f/awesome-chatgpt-prompts) - Prompts Directory 6 | * [Awesome-pretrained-stylegan2](https://github.com/justinpinkney/awesome-pretrained-stylegan2) - A Curated List Of Pretrained StyleGAN2 Models. 7 | * [ChaiNNer](https://github.com/chaiNNer-org/chaiNNer) - A Node-based Image Processing And AI Upscaling GUI That Makes It Easy To Chain Together Complex Processing Tasks. 8 | * [ChaiNNer](https://github.com/joeyballentine/chaiNNer) - A Deep Neural Network Framework Built On Top Of PyTorch. 9 | * [Chatgpt-api](https://github.com/transitive-bullshit/chatgpt-api) - Node.js Client For The Unofficial ChatGPT API. 10 | * [CLIP\_prefix\_caption](https://github.com/rmokady/CLIP\_prefix\_caption) - Code To Generate Captions From Text Prefixes Using The CLIP Model. 11 | * [Cloob-latent-diffusion](https://github.com/JD-P/cloob-latent-diffusion) - A Tool For Exploring The Latent Space Of StyleGAN Models. 12 | * [Cupscale](https://github.com/n00mkrad/cupscale) - A Tool For Improving The Resolution Of Images Using Deep Learning. 13 | * [Dalle-mini](https://github.com/borisdayma/dalle-mini) - A Tool For Generating Mini Videos From A Single Image. 14 | * [DiscoDiffusion-Warp](https://github.com/Sxela/DiscoDiffusion-Warp) - A Tool For Visualizing And Manipulating The Latent Space Of Generative Models. 15 | * [Dreamfields-3D](https://github.com/shengyu-meng/dreamfields-3D) - A Tool For Generating 3D Scenes From 2D Images Using Deep Learning. 16 | * [Examples Chatbot Template](https://github.com/vercel/examples/tree/main/solutions/ai-chatgpt) - Chat Bot Template 17 | * [Fast-stable-diffusion](https://github.com/TheLastBen/fast-stable-diffusion) - A Fast And Stable Algorithm For Exploring The Latent Space Of Generative Models. 18 | * [Frame-interpolation](https://github.com/google-research/frame-interpolation) - Code For Improving The Frame Rate Of Videos Using Deep Learning. 19 | * [Glid-3](https://github.com/Jack000/glid-3) - A Tool For Generating 3D Scenes From 2D Images Using Deep Learning. 20 | * [Langchain](https://github.com/hwchase17/langchain) - Chaining Prompts, Multi-model Logic, "LLMs Through Composability" 21 | * [Learn\_Prompting](https://github.com/trigaten/Learn\_Prompting) - Docs - Communicating With Artificial Intelligence 22 | * [Lucid-sonic-dreams](https://github.com/mikaelalafriz/lucid-sonic-dreams) - A Tool For Exploring The Latent Space Of Generative Models Using Music. 23 | * [Natbot](https://github.com/nat/natbot) - GitHub's CEO Bot Project To Drive A Browser 24 | * [Openai-fetch](https://github.com/rileytomasek/openai-fetch) - OpenAI Client Powered By Fetch, Works On Vercel Edge, Workers, Size \~5kb Vs. Openai-node \~180kb 25 | * [Rudalle-aspect-ratio](https://github.com/shonenkov-AI/rudalle-aspect-ratio) - A Tool For Changing The Aspect Ratio Of Images And Videos Using Deep Learning. 26 | * [VQGAN-CLIP-animations](https://github.com/chigozienri/VQGAN-CLIP-animations) - Code For Generating Animations From Text Using The VQ-VAE-2 And CLIP Models. 27 | * [Waifu2x](https://github.com/nagadomi/waifu2x) - A Tool For Improving The Resolution Of Images Using Deep Learning. 28 | * [Yt-semantic-search](https://github.com/transitive-bullshit/yt-semantic-search) - OpenAI-powered Semantic Search For Any YouTube Playlist 29 | 30 | *** 31 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-development/learn-generative-ai.md: -------------------------------------------------------------------------------- 1 | # Learn Generative AI 2 | 3 | ## Learn Generative AI 4 | 5 | * AIAIART - Really Nice Ongoing [Youtube Series](https://www.youtube.com/playlist?list=PL23FjyM69j910zCdDFVWcjSIKHbSB7NE8) And Discussion In Its [Discord](https://discord.com/invite/aq3kv4Mtcd) 6 | * [Deep Learning For Art, Aesthetics, And Creativity](https://www.youtube.com/playlist?list=PLCpMvp7ftsnIbNwRnQJbDNRqO6qiN3EyH) - MIT Course Available On Youtube 7 | * [Dive Into Deep Learning](https://d2l.ai/index.html) - (Online, Free, Interactive) 8 | * [Generative Deep Learning](https://amzn.to/3FNr3ap) - Teaching Machines To Paint, Write, Compose, And Play By David Foster \[2019] 9 | * [Ml4a.net](https://ml4a.net/) - Online Textbook, Classes, And Learning Resources \\\ 10 | Not Very Technical But Engaging And Inspiring View Of Many AI Art Projects So Far. \\\ 11 | Really Enjoyed This And It's A Great Book! It's From 2019 So Doesn't Cover The Very Latest Like VQGAN, CLIP, Guided Diffusion Though. 12 | 13 | * [The Artist In The Machine](https://amzn.to/32I0kOm) - The World Of AI-powered Creativity By Arthur I. Miller \[2020] 14 | * [The Illustrated Stable Diffusion](https://jalammar.github.io/illustrated-stable-diffusion/) - Really Nice Overview Of Stable Diffusion And The Pieces That Make It Up 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-educationlearning/README.md: -------------------------------------------------------------------------------- 1 | # AI-EducationLearning 2 | 3 | ## AI-Education/Learning 4 | 5 | **In This Section, You Will Find Resources And Tools Related To Education And Learning In The Field Of AI.** 6 | 7 | * [Education And Learning](../Education%20And%20Learning.md) 8 | * [Research](../Research.md) 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-educationlearning/education-and-learning.md: -------------------------------------------------------------------------------- 1 | # Education And Learning 2 | 3 | ## Education And Learning 4 | 5 | * [Botta](https://askbotta.com/) - Having Trouble With A Topic? Meet Botta. Your Free, Personal Teaching Assistant. Ask Questions, Get Answers. Botta Makes Online Learning A Breeze. 6 | * [Caktus](https://www.caktus.ai/) - A Company Offering AI-powered Solutions For Businesses. 7 | * [ELI5](https://explainlikeimfive.io/) - A Platform For Understanding Complex Topics Through Simple Explanations. 8 | * [LiveReacting AI](https://www.livereacting.com/ai-host-for-live-stream) - An AI-powered Host For Live Streams. 9 | * [Lorro](https://lorro.io/) - Become A Fluent English Speaker For A Fraction Of A Cost. By Talking To An AI Tutor. 10 | * [MindSmith](https://www.mindsmith.ai/) - An AI-powered Tool For Brainstorming And Creative Problem Solving. 11 | * [Quizgecko](https://quizgecko.com/) - A Platform For Creating And Taking Quizzes. 12 | * [Replicate](http://replicate.com) - Machine Learning Doesn\&Apos; T Need To Be So Hard. Run Open-source Models With A Cloud API. 13 | * [Scholarcy](https://www.scholarcy.com/) - A Platform For Summarizing And Analyzing Academic Texts. 14 | * [Speakingclubai](http://speakingclubai.com) - Speaking Club AI. Welcome To Speaking Club AI - The Ultimate Language Learning Tool For Anyone Looking To Improve Their Speaking Skills In A Foreign Language. With Speaking Club AI, You Can Practice Your Conversation Skills With A Personalized AI Language Partner Anytime, Anywhere. 15 | * [TutorAI](https://www.tutorai.me/) - A Platform For Personalized Tutoring And Educational Content. 16 | * [Yip](https://yippity.io/) - A Platform For AI-powered Writing And Content Creation. 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-educationlearning/research.md: -------------------------------------------------------------------------------- 1 | # Research 2 | 3 | ## Research 4 | 5 | * [Adept](https://www.adept.ai/) - Adept Is An AI-powered Writing Assistant. 6 | * [Consensus](https://consensus.app/) - Consensus Is A Project Management And Collaboration Tool. 7 | * [Cradle](https://cradle.bio/) - Cradle Is A Platform For Life Sciences And Biotechnology Research. 8 | * [Elicit](https://elicit.org/) - Elicit Is A Research Platform That Connects Researchers With Participants. 9 | * [Galactica](https://galactica.org/) - Galactica Is A Platform For Space Exploration And Research. 10 | * [Perplexity AI](https://www.perplexity.ai/) - Perplexity AI Is An AI-powered Personalized News Aggregator. 11 | * [Podcast](https://podcast.ai/) - Podcast.ai Is A Platform For Podcast Hosting And Creation. 12 | * [Scholarcy](https://www.scholarcy.com/) - Scholarcy Is An AI-powered Research Tool That Helps Scholars And Students. 13 | * [Scispace](https://typeset.io/) - Scispace Is A Platform For Scientific Research And Collaboration. 14 | * [Socratic By Google](https://socratic.org/) - Socratic By Google Is A Homework Helper And Learning App. 15 | * [Summate](https://summate.it/) - Summate Is An AI-powered Tool For Summarizing Articles And Documents. 16 | * [WolframAlpha](https://www.wolframalpha.com/) - WolframAlpha Is A Knowledge Engine And AI-powered Answer Engine. 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-experiments.md: -------------------------------------------------------------------------------- 1 | # AI-Experiments 2 | 3 | ## AI-Experiments 4 | 5 | - [Alethea AI](https://alethea.ai/) - Enabling Ownership Of Generative AI 6 | - [Ask My Book](https://askmybook.com/) - The Minimalist Entrepreneur 7 | - [Experiments With Google](https://experiments.withgoogle.com/collection/ai) - AI Experiments 8 | - [Talk To Books](https://books.google.com/talktobooks/) - Browse Passages From Books Using Experimental AI 9 | 10 | --- 11 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-health/README.md: -------------------------------------------------------------------------------- 1 | # AI-Health 2 | 3 | ## AI-Health 4 | 5 | **In This Section, AI Tools And Resources To Help You Monitor And Improve Your Health And Wellness.** 6 | 7 | * [Health](../Health.md) 8 | * [Life Assistant](../Life%20Assistant.md) 9 | * [Memory](../Memory.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-health/health.md: -------------------------------------------------------------------------------- 1 | # Health 2 | 3 | ## Health 4 | 5 | * [Cradle](https://cradle.bio/) - Cradle Is A Platform For Scientific Research And Collaboration. According To Their Website, Cradle Provides A "Powerful Platform That Integrates With Scientific Workflows And Enables Seamless Collaboration Between Scientists And Stakeholders." 6 | * [Getactyv](http://getactyv.com) - Getactyv - AI And Computer Vision Assisted Health And Fitness Platform 7 | * [Replika](http://replika.com) - The AI Companion Who Cares. Always Here To Listen And Talk. Always On Your Side. Join The Millions Growing With Their AI Friends Now. 8 | * [Ubie AI Symptom Checker](http://ubiehealth.com) - Check Symptoms & Find Causes By AI. Check Symptoms & Find Causes By AI - Answer Quiz About Your Symptoms To Find Out Possible Causes, Types, Severity, And Treatment For Free By AI. Developed By Doctors. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-health/life-assistant.md: -------------------------------------------------------------------------------- 1 | # Life Assistant 2 | 3 | ## Life Assistant 4 | 5 | * [AI Trip Planner](https://www.buildai.space/app/dae3da25-888e-448f-b15c-5a20ca4ca961) - A Platform For Planning Trips Using AI Technology. 6 | * [Apple Books](https://www.apple.com/in/apple-books/) - An E-book Platform By Apple Inc. 7 | * [BlackInk](https://blackink.ai/) - An AI-powered Writing Assistant. 8 | * [Caktus](https://www.caktus.ai/) - An AI Platform That Provides Solutions For Various Industries. 9 | * [Circle Labs](https://circle.isyourshadowyou.com/Home.html) - An AI-powered Digital Assistant That Helps With Scheduling And Productivity. 10 | * [Elektrif AI](https://www.elektrif.ai/) - An AI Platform That Provides Solutions For Various Industries. 11 | * [Ferret](https://www.ferret.ai/) - An AI-powered Research And Productivity Tool. 12 | * [Find Your Next Book](https://www.findyournextbook.ai/) - An AI-powered Recommendation Platform For Books. 13 | * [JustLearn](https://www.justlearn.com/) - An Online Platform For Language Learning. 14 | * [Looria](https://looria.com/) - An AI-powered Digital Assistant For Scheduling And Productivity. 15 | * [PlaylistAI](https://www.playlistai.app/) - An AI-powered Music Recommendation Platform. 16 | * [Prodigy AI](https://ai.prodi.gg/) - An AI-powered Platform For Skill Assessment And Development. 17 | * [Reggi](https://www.yfj.social/reggi-app) - An AI-powered Scheduling And Productivity Platform. 18 | * [Replika](https://replika.com/) - An AI-powered Personal Chatbot. 19 | * [Resume Worded](https://resumeworded.com/index.php) - A Platform That Uses AI To Enhance Resumes. 20 | * [Rewind AI](https://www.rewind.ai/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 21 | * [Thekeys](https://www.thekeys.ai/) - An AI-powered Platform For Automating Administrative Tasks. 22 | * [TinyWow](https://tinywow.com/) - An AI-powered Writing Assistant. 23 | * [Write Me A Cover Letter](https://writemeacoverletter.com/) - A Platform That Uses AI To Generate Cover Letters. 24 | 25 | *** 26 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-health/memory.md: -------------------------------------------------------------------------------- 1 | # Memory 2 | 3 | ## Memory 4 | 5 | * [Glasp](https://glasp.co/ai-writing) - An AI-powered Writing Assistant. 6 | * [Heyday](https://heyday.xyz/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 7 | * [Mem.ai](https://mem.ai/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 8 | * [Personal.ai](https://www.personal.ai/) - An AI-powered Personal Assistant Platform. 9 | * [Rewind AI](https://www.rewind.ai/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-newsarticlesblogssocial/README.md: -------------------------------------------------------------------------------- 1 | # AI-NewsArticlesBlogsSocial 2 | 3 | ## AI-News/Articles/Blogs/Social 4 | 5 | * [Articles](../Articles.md) 6 | * [Blogs](../Blogs.md) 7 | * [News](../News.md) 8 | * [Twitter](../Twitter.md) 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-newsarticlesblogssocial/blogs.md: -------------------------------------------------------------------------------- 1 | # Blogs 2 | 3 | ## Blogs 4 | 5 | - [Bleeding Edge](https://bleedingedge.ai/) - A Feed Of Noteworthy Developments In AI. 6 | - [UCSB 146AI F2013](https://artificialintelligence2013.wordpress.com/) - A Blog That Covers Topics Related To Artificial Intelligence And Machine Learning, Including Tutorials And Resources. 7 | - [StoriesbyAI](http://storiesby.ai) - Unique tales written, illustrated, and narrated with AI. 8 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-newsarticlesblogssocial/news.md: -------------------------------------------------------------------------------- 1 | # News 2 | 3 | ## News 4 | 5 | - [Headline AI](http://headline-ai.com) - A Platform That Provides AI-powered Headline Generation For Articles And Content 6 | - [Stocknews AI](http://stocknewsai.com) - AI Picked Stock News 7 | - [Artificial Genie AI](https://artificialgenie.ai/) - AI Newsletter 8 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-newsarticlesblogssocial/twitter.md: -------------------------------------------------------------------------------- 1 | # Twitter 2 | 3 | ## Twitter 4 | 5 | - [Andrej Karpathy](https://twitter.com/karpathy) - Ex-OpenAI, Ex-Tesla AI Director 6 | - [Jim Fan](https://twitter.com/DrJimFan) - AI Content 7 | - [Linus](https://twitter.com/LinusEkenstam) - AI Content 8 | - [Logan.GPT](https://twitter.com/OfficialLoganK) - DevRel @ OpenAI 9 | - [Naklecha](https://twitter.com/naklecha) - Ai Research + Doing Art Projects [@notpinkxyz](https://twitter.com/notpinkxyz) + Prev [@morganstanley](https://twitter.com/morganstanley) 10 | - [NVIDIA AI](https://twitter.com/NVIDIAAI) - NVIDIA AI Enterprise Twitter Account 11 | - [Remi Durant](https://twitter.com/remi_durant) - Artist/Alchemist. Explorer of latent space. [linktr.ee](http://linktr.ee/remi_durant) 12 | - [Riley Goodside](https://twitter.com/goodside) - Staff Prompt Engineer @Scale_AI 13 | - [Saboo_Shubham](https://twitter.com/Saboo_Shubham_) - Talking About ML, NLP & Large Language Models 14 | - [Sam Altman](https://twitter.com/sama) - CEO And Founder Of OpenAI 15 | - [TheMoonMidas](https://twitter.com/TheMoonMidas) - AT Tweet News + AI Newsletter @ArtificialGenie 16 | 17 | --- 18 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-other/README.md: -------------------------------------------------------------------------------- 1 | # AI-Other 2 | 3 | ## AI-Other 4 | 5 | **In This Section, You Will Find AI Tools And Resources That Don't Fit Into The Other Categories.** 6 | 7 | * [Fashion](../Fashion.md) 8 | * [Gift Ideas](../Gift%20Ideas.md) 9 | * [Legal](../Legal.md) 10 | * [Real Estate](../Real%20Estate.md) 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-other/fashion.md: -------------------------------------------------------------------------------- 1 | # Fashion 2 | 3 | ## Fashion 4 | 5 | * [Botika](https://botika.io/) - Botika Is A Platform For Building And Deploying Conversational AI Models. 6 | * [Cala](https://ca.la/) - Cala Is A Conversational AI Platform That Enables Businesses To Automate Customer Interactions. 7 | * [FashionAdvisorAI](http://www.fashionadvisorai.com) - Fashionadvisor. AI - Ask Questions & Get Answer'S From Fashionadvisor. AI. FashionAdvisor Is An AI Based On GPT3 Which Will Answer All Your Fashion Related Questions Instantly For Free. 8 | * [Visualhound](http://visualhound.com) - Visualhound - Prototype Your Fashion Design Ideas With AI. Visualize Your Product Designs Before Going To Production. Create Realistic-looking Product Images To Feed Your Moodboards And Boost Your Design Process. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-other/gift-ideas.md: -------------------------------------------------------------------------------- 1 | # Gift Ideas 2 | 3 | ## Gift Ideas 4 | 5 | * [AIchristmascards](http://aichristmascards.com) - Holiday Cards, Reimagined. Personalized AI Art Greetings Cards. 6 | * [AI Holiday Cards](http://aiholiday.cards) - AI Holiday Cards. AI Engine To Create AI Holiday Photorealistic Cards For Couples. 7 | * [CoolGiftIdeas](http://www.coolgiftideas.io) - Cool Gift Ideas - AI-Powered Gift Suggestions 8 | * [Elf Help](http://www.elfhelp.ai) - Elf Help. Need Some Inspo For Your Holiday Gifting? Elf Help Is Your Ultimate Gift-giving Assistant, Offering Creative And Personalized Suggestions For Everyone On Your List. 9 | * [Fabled](http://fabled.ai) - The Ultimate AI Story Generator. Stories Created By You, Powered By AI. With A Single Sentence Fabled.ai Crafts Personal Illustrated Stories, Enriched By Stunning Images. 10 | * [Giftastic AI](http://giftastic.ai) - Giftastic. AI - Perfect Gift For Your Special One. Personalised Gift Ideas For Every Occasion. 11 | * [GiftBot](http://www.getgift.help) - Get Gift Help. Struggling To Figure Out What To Get Someone For The Holidays? GiftBot Asks You Questions To Help Recommend Gift Ideas. 12 | * [Gift Genie](http://www.giftgenie.ai) - Gift Genie AI - Free Personalized Gift Ideas For Christmas, Birthdays, Holidays, Etc. Gift Genie AI Is An AI-powered That Allows You To Find The Perfect Gift In Seconds With AI For Free. Jot Down A Brief Description Of Your Recipient, And Get A List Of Gifts Our AI Genie Believes Will Delight Them. 13 | * [Gifts Genie](https://gen.gifts/) 14 | * [Lovelines](http://lovelines.xyz) - Share Your Love With Custom Keepsakes Made By AI. Create Custom Keepsakes For A Loved One Using AI That Are Optimized For Social Media. AI-generated Poems, Stories, Letters, And Song Lyrics. 15 | * [Santa AI](https://www.santa.artflow.ai/) 16 | * [Suggest Gift](https://suggest.gift/) 17 | * [Text2present](http://text2present.com) - Text2Present. Com - Creative Presents From Busy People. Allows You To Create Creative Customized Presents Using Artificial Intelligence For Your Friends, Family And Acquaintances Without Taking Your Precious Time. Simply Enter A Text Description Of What You Want To Gift And Let Our Artificial Intelligence Do The Rest. 18 | 19 | *** 20 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-other/legal.md: -------------------------------------------------------------------------------- 1 | # Legal 2 | 3 | ## Legal 4 | 5 | * [Activazon](https://activazon.com/) - Activazon Is A Customer Engagement Platform That Leverages AI And Natural Language Processing. 6 | * [Analyzelaw](https://www.analyzelaw.com/) - AnalyzeLaw Is An AI-powered Legal Research Tool. 7 | * [Casetext](https://casetext.com/) - Casetext Is A Legal Research Platform That Provides Access To Case Law, Statutes, And Regulations. 8 | * [Detangle.ai](https://detangle.ai/) - Detangle Is An AI-powered Platform For Automating Contract Management And Analysis. 9 | * [DoNotPay](https://donotpay.com/) - The World'S First Robot Lawyer. Use AI To Make Legal Information Accessible To Everyone. 10 | * [Ferret](https://www.ferret.ai/) - Ferret Is A Search Engine For Legal Information. 11 | * [Harvey](https://harvey.ai/) - Harvey Is An AI-powered Legal Research Tool. 12 | * [Legal Robot](https://legalrobot.com/) - Legal Robot Provides An AI-powered Legal Contract Review Service. 13 | * [PatentPal](http://patentpal.com) - Generative AI For Intellectual Property. Automate Mechanical Writing In Your Patent Applications. 14 | * [Spellbook](https://www.spellbook.legal/) - Draft Contracts 3X Faster With AI. Spellbook Uses GPT-3 To Review And Suggest Language For Your Contracts, Right In Microsoft Word. 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-other/real-estate.md: -------------------------------------------------------------------------------- 1 | # Real Estate 2 | 3 | ## Real Estate 4 | 5 | * [AI Room Planner](https://airoomplanner.com/) 6 | * [CoolAlid](https://coolaiid.com/) 7 | * [GetFloorPlan](https://getfloorplan.com/) 8 | * [InteriorAI](https://interiorai.com/) 9 | * [Maket](https://www.maket.ai/) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-productivity/README.md: -------------------------------------------------------------------------------- 1 | # AI-Productivity 2 | 3 | ## AI-Productivity 4 | 5 | **In This Section, You Will Find AI Tools And Resources To Help You Be More Productive In Your Work And Personal Life.** 6 | 7 | * [Chat](../Chat.md) 8 | * [Docs](../Docs.md) 9 | * [Email Assistant](../Email%20Assistant.md) 10 | * [Productivity](../Productivity.md) 11 | * [Sales & Marketing](../Sales%20&%20Marketing.md) 12 | * [Summarizer](../Summarizer.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-productivity/docs.md: -------------------------------------------------------------------------------- 1 | # Docs 2 | 3 | ## Docs 4 | 5 | * [A Guide To Writing Prompts For Text-to-image AI](https://docs.google.com/document/d/1XUT2G9LmkZataHFzmuOtRXnuWBfhvXDAo8DkS--8tec/edit) - This Is A Google Document That Provides A Guide On Writing Prompts For Text-to-image AI. 6 | * [Disco Diffusion Portrait Study (By @Enviraldesign)](https://docs.google.com/document/d/1Ff8s8CX3xGrVr6AJ94hcvQ\_PYqJ\_mDAXzT3NGb5\_K1w/edit) - A Portrait Study Of Disco Diffusion 7 | * [EZ Charts - Diffusion Parameter Studies](https://docs.google.com/document/d/1ORymHm0Te18qKiHnhcdgGp-WSt8ZkLZvow3raiu2DVU/edit) - This Is A Google Document That Provides Information On Diffusion Parameter Studies In The Context Of EZ Charts. 8 | * [Guide To Jax 2.7 - Google Docs](https://docs.google.com/document/d/11HWN5e57taWdpyZlW5s6gqzrwMsLlmOQivyJncOPPhE/edit) 9 | * \[Hitchhiker's Guide To The Latent Space: Community Notebook Document]\(https://docs.google.com/document/d/1ON4unvrGC2fSEAHMVb4idopPlWmzM0Lx5cxiOXG47k4/edit - A Hitchhiker's Guide To The Latent Space Community Notebook Document 10 | * [How To Train Dance Diffusion AI To Generate Sounds](https://drive.google.com/file/d/1nEFEpK27v0nytNXmmYQb06X\_RI6kKPve/view) - This Is A Google Drive File Which Includes A Guide On How To Train A Dance Diffusion AI To Generate Sounds. 11 | * [MathRock Diffusion Documentation](https://docs.google.com/document/d/1C5wt-q6i1JVb2zGsTCGcZev4NayFKC0p-ejbdZx4AkM/edit) - A Documentation On MathRock Diffusion 12 | * [MRD Cuts Guide](https://docs.google.com/document/d/1oHWoP3i0NFImekinqaaiWXfREkkK\_rbsFMz\_VTWDcRw/edit) - A Guide For MRD Cuts 13 | * [Quick Guide To Deforum V06](https://docs.google.com/document/d/1RrQv7FntzOuLg4ohjRZPVL7iptIyBhwwbcEYEW2OfcI/edit) - This Is A Google Document That Provides A Quick Guide To Deforum V06. 14 | * \[Way Of The TTI Artist]\(https://docs.google.com/document/d/1EvkiHa12ButetruSBr82MJeomHfVRkvczB9-FgqtJ48/mobilebasic - A Guide For TTI Artists 15 | * [Zippy's Disco Diffusion Cheatsheet V0.3](https://docs.google.com/document/d/1l8s7uS2dGqjztYSjPpzlmXLjl5PM3IGkRWI3IiCuK7g/edit) - A Cheatsheet For Zippy's Disco Diffusion 16 | 17 | *** 18 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-productivity/email-assistant.md: -------------------------------------------------------------------------------- 1 | # Email Assistant 2 | 3 | ## Email Assistant 4 | 5 | * [ChatGPT Writer](https://chatgptwriter.ai/) - AI Powered Writing Tool. 6 | * [Creatext](https://www.creatext.ai/) - A Writing Tool That Combines The Power Of AI And Human Creativity. 7 | * [DraftLab](http://draftlab.ai) - An AI-powered Gmail Copilot That Generates High-quality Email Replies For You. 8 | * [Ellie](http://ellieai.com) - Your AI Email Assistant. 9 | * [EmailTriager](http://emailtriager.com) - Email On Autopilot. 10 | * [GETitOUT](https://getitout.io/) - An AI-powered Tool To Help You Manage Your Email And To-do List. 11 | * [HoppyCopy](https://www.hoppycopy.co) - AI-powered Writing And Copywriting Tool. 12 | * [Instantly](https://instantly.ai/) - AI-powered Content Creation And Marketing Platform. 13 | * [Intellimail](https://www.intellimail.xyz/) - Your Personal Email Assistant. 14 | * [Ipso AI](https://ipso.ai/) - AI-powered Writing Platform. 15 | * [Lavender](https://www.lavender.ai/) - An AI-powered Sales Engagement Platform. 16 | * [Luna](https://getluna.dev/) - AI-powered Writing Tool. 17 | * [Magicreach](https://www.magicreach.ai/) - AI-powered Customer Engagement Platform. 18 | * [MateAI](https://www.mateai.io/) - AI-powered Writing Tool. 19 | * [Mentioned](https://www.mentioned.ai/) - AI-powered Marketing Automation Platform. 20 | * [Ortto](https://ortto.com/artificial-intelligence-marketing/) - AI-powered Marketing Automation Platform. 21 | * [Outplayhq](https://outplayhq.com/) - AI-powered Sales Engagement Platform. 22 | * [ParagraphAI](https://paragraphai.com/) - AI-powered Writing And Research Platform. 23 | * [Pipl.ai](https://pipl.ai/) - AI-powered Customer Data Platform. 24 | * [PolitePost](https://politepost.net/) - AI-powered Social Media Scheduling Tool. 25 | * [Postaga](https://postaga.com/) - AI-powered Email Marketing Platform. 26 | * [Quicklines](https://www.quicklines.ai/) - AI-powered Customer Engagement Platform. 27 | * [RapidReply](http://rapidreply.ai) - Rapid Reply - AI Email Assistant. Save 30 Minutes A Day Writing Emails. 28 | * [Recruiting Emails AI By Dover](http://recruitingemails.ai) - Dover - Generate Customized Recruiting Emails 29 | * [Regie](https://www.regie.ai/) - Regie - AI-powered Email Assistant 30 | * [Remail](https://remail.ai/) - Write Emails 10X Faster. Remail Is A Chrome Extension For Gmail That Uses Artificial Intelligence To Draft High-quality Email Replies In Seconds. 31 | * [Reply.io](https://reply.io/sales-email-assistant/) - Reply.io - Sales Email Assistant 32 | * [Robin](https://www.hellorobin.ai/) - Robin - AI Email Assistant 33 | * [Rytr](https://rytr.me) - Rytr - AI-powered Email Assistant 34 | * [SmartWriter](http://www.smartwriter.ai/?via=Beth0) - Generate 1000s Of Personalized Emails That Get You 8x More Replies Within Minutes Using AI 35 | * [SuperReply](http://superreply.co) - Upgrade Your Email Game. The Email Response Hack You've Been Waiting For 36 | * [Warmer.AI](http://warmer.ai) - Warmer.AI - AI Email Writer. Warmer Uses AI Email Personalization To Write Your Email Outreach. 37 | * [WordHero](https://wordhero.co) - WordHero - AI-powered Email Writing Assistance 38 | 39 | *** 40 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-productivity/summarizer.md: -------------------------------------------------------------------------------- 1 | # Summarizer 2 | 3 | ## Summarizer 4 | 5 | * [Bearly](https://bearly.ai/) - An AI-powered Content Analysis And Optimization Tool. 6 | * [ExplainThis](https://explainthis.ai/) - A Natural Language Processing Tool That Helps Users Understand Complex Ideas And Text. 7 | * [Genei](https://www.genei.io/) - An AI-powered Platform That Streamlines Research And Knowledge Discovery. 8 | * [GPT-Prompter](https://gptprompter.com/) - A Tool That Uses AI To Generate Human-like Prompts For Voice And Text-based Applications. 9 | * [Iris.ai](http://iris.ai) - An AI-powered Platform That Helps Researchers And Scientists Discover And Access Relevant Research Articles And Knowledge. 10 | * [Noty.ai](http://noty.ai) - An AI-powered Platform That Automatically Summarizes Business Reports And Documents. 11 | * [Otter AI](https://otter.ai/) - A Platform That Uses AI To Transcribe, Search And Share Voice Conversations. 12 | * [Penelope AI](https://penelope-ai.vercel.app/) - A Platform That Uses AI To Help Users Improve Writing Skills And Productivity. 13 | * [Summari](https://www.summari.com/) - An AI-powered Platform That Automatically Summarizes Articles, Documents, And Websites. 14 | * [Summarize Tech](https://www.summarize.tech/) - A Platform That Uses AI To Summarize And Analyze News Articles, Web Pages And Documents. 15 | * [Summate](https://summate.it/) - A Tool That Uses AI To Summarize And Analyze Text From Websites, Articles And Documents. 16 | * [SummerEyes](https://summereyes.ai/) - An AI-powered Platform That Summarizes And Analyzes Websites, Documents, And Articles. 17 | * [Symbl.ai](http://symbl.ai) - A Platform That Uses AI To Extract Meaning And Insights From Conversations And Calls. 18 | * [TheGist](https://www.thegist.ai/) - An AI-powered Platform That Summarizes And Analyzes News Articles And Websites. 19 | * [TLDR This](https://tldrthis.com/) - A Platform That Uses AI To Summarize And Analyze News Articles And Web Pages. 20 | * [Upword](https://www.upword.ai/) - An AI-powered Platform That Helps Users Improve Their Writing Skills And Productivity. 21 | * [WordfixerBot](https://www.wordfixerbot.com/) - An AI-powered Platform That Helps Users Improve Their Writing Skills And Productivity. 22 | * [Wordtune](https://www.wordtune.com/) - A Platform That Uses AI To Help Users Improve Writing Skills And Productivity. 23 | * [Writely](https://www.writelyai.com/) - An AI-powered Platform That Helps Users Improve Writing Skills And Productivity. 24 | 25 | *** 26 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-prompts.md: -------------------------------------------------------------------------------- 1 | # AI-Prompts 2 | 3 | ## AI-Prompts 4 | 5 | - [Dall-E 2 Prompt Optimizer](https://mostrecommendedbooks.com/dalle) - Learn The Art (And Science) Of Prompt Engineering. 6 | - [Dallelist](https://dallelist.com/) - Dall-E 2 Prompt Helper 7 | - [DICTION·AI·RI](https://dictionairi.notion.site/dictionairi/DICTION-AI-RI-2ec3dd6dc2184a45a9b6b4b8a021f0a6) - Learn How-to DALL·E With DICTION·AI·RI 100’s Of DALL·E Based Art Styles, Tips & Tricks, Prompt Presets And More! 8 | - [Effective GPT](https://effectivegpt.com/) - Get Accurate ChatGPT Prompts 9 | - [Everyprompt](https://everyprompt.com/) - A Playground For GPT-3] 10 | - [Eye For Al](https://eyeforai.xyz/) - Prompt Builder / Editor 11 | - [FlowGPT](https://flowgpt.com/) - Amplify Your Workflow With Best Prompts 12 | - [Img2prompt](https://replicate.com/methexis-inc/img2prompt) - Get An Approximate Text Prompt, With Style, Matching An Image. (Optimized For Stable-Diffusion (Clip ViT-L/14) 13 | - [Jrnylist](https://jrnylist.com/) - Midjourney Prompt Helper 14 | - [KREA](https://krea.ai/) - Create Collections Of Prompts 15 | - [Latentspace](https://latentspace.dev/) - Exploring Stable Diffusion Latent Space 16 | - [Learn Prompting](https://learnprompting.org/) - Learn Prompting 17 | - [Metaphor](https://metaphor.systems/) - Search The Internet With Large Language Models 18 | - [NoPrompt GPT](https://nopromptgpt.com/) - Pre-Prompted ChatGPT For Frequent Users. 19 | - [Openart](https://aiinfinity.blogspot.com/p/promptsopenart.html) - Search 10M+ Of Prompts, And Generate AI Art Via Stable Diffusion, DALL·E 2. 20 | - [PromptBase](https://promptbase.com/) - Prompt Marketplace: DALL·E, Midjourney, Stable Diffusion & GPT-3 21 | - [Prompt Box](https://promptbox.ai/) - Organize And Save Your AI Prompts 22 | - [PromptCircle](https://promptcircle.xyz/) - Create, Share And Discover The Best Prompts 23 | - [PromptDB AI](https://promptdb.ai/) - Marketplace For Prompts 24 | - [Prompter](https://prompter.so/) - AI Prompt Sharing Community Where People Can Share ChatGPT, Midjourney And Other AI Prompts. 25 | - [PromptHero](https://prompthero.com/) - Prompter Is An AI Prompt Sharing Community Where People Can Share ChatGPT, Midjourney And Other AI Prompts. Discover Prompts That Rock! 26 | - [Promptist](https://aiinfinity.blogspot.com/p/promptspromptist.html) - Promptist Is A Prompt Interface For Stable Diffusion V1-4 That Optimizes User Input Into Model-preferred Prompts. 27 | - [PromptLayer](https://promptlayer.com/) - The First Platform Built For Prompt Engineers 28 | - [Prompt Lovers](https://trello.com/b/4BPkSY1w/100-ai-prompts-resources-prompt-lovers?ref=producthunt) - 100+ AI Prompts & Resources 29 | - [PromptoMANIA](https://promptomania.com/generic-prompt-builder/) - Prompt Builder For AI Art Generators 30 | - [PromtBox](https://aiinfinity.blogspot.com/p/promptspromtbox.html) - - Beautifully Store Your Prompts! 31 | - [Public Prompts](https://aiinfinity.blogspot.com/p/promptspublic-prompts.html) - Collection Of ‎ High Quality/Free/Public Prompts! 32 | - [Pyttipanna](https://pyttipanna.xyz/) - An Interface For Pytti 5. It Allows You To Structure, Narrate And Experiment With Prompts For Video Creation. Pytti Is A Framework For Creating And Rendering Videos Using Machine Learning Models. 33 | - [Tulpa Prompter](https://dreamingtulpa.com/tools/prompter) - Tool To Create [Deforum Stable Diffusion](https://deforum.github.io/) Animations 34 | 35 | --- 36 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-resources/README.md: -------------------------------------------------------------------------------- 1 | # AI-Resources 2 | 3 | ## AI-Resources 4 | 5 | *** 6 | 7 | [Pharampyschaotic](../Pharampyschaotic.md)\ 8 | [Reading List](../Reading%20List.md)\ 9 | [Resources](../Resources.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-resources/pharampyschaotic.md: -------------------------------------------------------------------------------- 1 | # Pharampyschaotic 2 | 3 | ## Pharampyschaotic 4 | 5 | **Note, A Lot Of Resources On This Repo Came From Pharampyschaotic's Website, Amazing Stuff! Follow Pharampyschaotic On** [**Instagram**](https://www.instagram.com/pharmapsychotic/) **** [**Twitter**](https://twitter.com/pharmapsychotic) **** [**Reddit**](https://www.reddit.com/user/pharmapsychosis) 6 | 7 | * [Art Of Pharmapsychotic](https://pharmapsychotic.com/) 8 | * [AI Generative Art Tools](https://pharmapsychotic.com/tools.html#sec-5ed6) 9 | * [Pharmapsychotic's Nfts](https://pharmapsychotic.com/nfts.html) 10 | * [Training](https://pharmapsychotic.com/training.html) 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-resources/resources.md: -------------------------------------------------------------------------------- 1 | # Resources 2 | 3 | ## Resources 4 | 5 | * [AGI Labs](https://agilabs.org/ai-helpers-home) - Choose From Hundreds Of Our Highly Trained AI Helpers To Generate Customized High-quality AI Writings For Study, Work, And Life Applications, Or Get Human Services Besides Just AI! 6 | * [AI Art Apps](https://aiartapps.com/) - AI Art Resources, Tools & Inspiration For Designers And Prompt Engineers. 7 | * [AI2045](https://ai2045.com/) - A Platform For Discussing The Future Of AI. 8 | * [Fast AI](https://fast.ai/) - Fastai Is A Deep Learning Library Which Provides Practitioners With High-level Components That Can Quickly And Easily Provide State-of-the-art Results In Standard Deep Learning 9 | * [Phraser](https://phraser.tech/) - Phraser Is An App That Helps You Create Images Using Generative AI (Midjourney, Stable Diffusion, And DALLE 2) 10 | * [The AI Times](https://aitimespage.com/ai) - AI News 11 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-tools/README.md: -------------------------------------------------------------------------------- 1 | # AI-Tools 2 | 3 | ## AI-Tools 4 | 5 | *** 6 | 7 | **In This Section, You Will Find A Collection Of AI Tools And Utilities For A Variety Of Use Cases.** 8 | 9 | * [Automation](../Automation.md) 10 | * [Templates](../Templates.md) 11 | * [Translation & Transcript](../Translation%20&%20Transcript.md) 12 | 13 | *** 14 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-tools/automation.md: -------------------------------------------------------------------------------- 1 | # Automation 2 | 3 | ## Automation 4 | 5 | * [Bardeen](https://www.bardeen.ai/ai) - AI Meets Automations. Coming In 2023–Bardeen Is Introducing Breakthrough AI To Automate Manual Workflows, Save You Time, And Empower Your Creativity. 6 | * [Hexowatch](http://hexact.pxf.io/) - Beyond Availability And Prices, 3Rd Party Websites As A Data Source, Visual Website Monitoring, Competitor Tracking. Hexowatch Is Your AI Sidekick To Monitor Any Website For Visual, Content, Source Code, Technology, Availability, Or Price Changes. 7 | * [Mem](https://get.mem.ai/) - The Self-Organizing Workspace. Mem Is The World's First AI-powered Workspace That's Personalized To You. Amplify Your Creativity, Automate The Mundane, And Stay Organized Automatically. 8 | 9 | *** 10 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-tools/templates.md: -------------------------------------------------------------------------------- 1 | # Templates 2 | 3 | ## Templates 4 | 5 | * [Text-to-color](https://text-to-color.vercel.app/) - Very Simple App That Use OpenAI API To Change Test Into Color 6 | * [Vercel AI Chat GPT-3 Example](https://vercel.com/templates/next.js/ai-gpt3-chatbot) - Template For Next.js, OpenAI Simple Chat GPT-3 Example 7 | * [VercelAI](https://vercel.ai) - Templates For Building Artificial Intelligence (AI) Applications (Fullstack, Front-end Focus) 8 | 9 | *** 10 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-tools/translation-and-transcript.md: -------------------------------------------------------------------------------- 1 | # Translation & Transcript 2 | 3 | ## Translation & Transcript 4 | 5 | * [AnyPod](https://www.anypod.ai/) - An AI-powered Audio Content Platform 6 | * [AssembleAI](https://www.assemblyai.com/) - An API For Speech-to-text Transcription 7 | * [Ava](http://www.ava.me) - Professional & AI-Based Captions For Deaf & Hoh - Ava 8 | * [Contentfries](https://www.contentfries.com/) - An AI-powered Content Creation Platform 9 | * [Context](https://addcontext.xyz/) - An AI-powered Text Enrichment Platform 10 | * [Deciphr AI](http://www.deciphr.ai) - Deciphr AI. Powered By Deep AI, Deciphr Timestamps And Summarizes Your Entire Podcast Transcript For You. In Less Time Than It Takes To Make Coffee. 11 | * [DeepL](http://www.deepl.com) - Deepl Translate The World'S Most Accurate Translator. 12 | * [Fireflies.ai](https://fireflies.ai/) - An AI-powered Meeting Assistant And Transcription Platform 13 | * [Free Subtitle AI](https://freesubtitles.ai/) - An AI-powered Video Subtitle Creation Platform 14 | * [Graphic AI](http://www.stork.ai) - AI Assisted Work Collaboration Platform For Teams. Stork Helps Teams Improve Communications And Productivity. It Is A Business Messenger For Hybrid & Remote Teams That Records And Transcribes All Meetings And Calls Automatically. Made For Asynchronous Post Pandemic World And Assisted By Artificial Intelligence. 15 | * [Noty.ai](https://noty.ai/) - An AI-powered Platform For Voice And Text Messaging 16 | * [Peech](https://www.peech-ai.com/) - An AI-powered Voice And Text Messaging Platform 17 | * [Rephrasely](http://rephrasely.com) - The Free Rephrase Generator For All Languages. Rephrasely Uses State-of-the-art AI To Produce Variations Of Your Text In More Than 100+ Languages For Each Of The Eighteen (12 Free And 6 Premium) - Styles That We Offer. By Doing This, We Are Able To Offer More Value And Variety Than Any Other Service. 18 | * [Rythmex](https://rythmex.com/) - Convert Audio To Text With Rythmex Converter. Transcribe Audio To Text Easily, Quickly, And Effectively. 19 | * [Scribebuddy](http://secure.scribebuddy.com) - Automatically Transcribe Any Audio, Video, Zoom Call, Google Meet, Podcast, Live Speech & More In Minutes. 20 | * [Steno](https://steno.ai/) - An AI-powered Platform For Note-taking And Transcription 21 | * [Supertranslate](https://www.supertranslate.ai/) - An AI-powered Real-time Voice And Text Translation Platform 22 | * [Supertranslate](http://www.supertranslate.ai) - Supertranslate - Add Subtitles To Videos Automatically. Powered By OpenAI's Whisper, The World's Most Accurate Speech-to-text Engine. 23 | * [Taption](http://www.taption.com) - Automatically Generate Transcript, Translation And Subtitles - Taption 24 | * [TranslateVideo](http://www.translate.video) - Translate. Video 25 | * [Type Studio](https://www.typestudio.co/tool/video-to-text/) - An AI-powered Video-to-text Transcribing Tool 26 | * [Voicetapp](http://voicetapp.com) - Voicetapp - Speech To Text Transcription. Get Accurate Transcriptions For Your AUDIO & VIDEO With The Latest Speech Rocognition Technology. 27 | * [Whisper Memos](https://whispermemos.com/) - A Voice Memos App Using AI To Transcribe Speech-to-text 28 | 29 | *** 30 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-video/README.md: -------------------------------------------------------------------------------- 1 | # AI-Video 2 | 3 | ## AI-Video 4 | 5 | **In This Section, You Will Find All Things Related To Video Processing Using AI Technology.** 6 | 7 | [Video](../Video.md)\ 8 | [Video Animation](../Video%20Animation.md)\ 9 | [Video Channels](../Video%20Channels.md)\ 10 | [Video Editing](../Video%20Editing.md)\ 11 | [Video Generator](../Video%20Generator.md)\ 12 | [Video Interpolation](../Video%20Interpolation.md)\ 13 | [Video Personalized](../Video%20Personalized.md) 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-video/video-animation.md: -------------------------------------------------------------------------------- 1 | # Video Animation 2 | 3 | ## Video Animation 4 | 5 | * [AnimationPreview](https://colab.research.google.com/github/pharmapsychotic/ai-notebooks/blob/main/pharmapsychotic\_AnimationPreview.ipynb) By @Pharmapsychotic - Quickly Preview Deforum Camera Animations 6 | * [Audio-reactive-video](https://colab.research.google.com/github/vsewall/too\_motion-colab-notebooks/blob/main/audio\_reactive\_video\_v1\_1.ipynb) - By @Vsewall2motion, Skip Video Frames Based On Volume 7 | * [Audio To Keyframe String Generator For AI Animation Notebooks](https://www.chigozie.co.uk/audio-keyframe-generator/) 8 | * [DALL-E 2.5D Depth Warped Zoom](https://colab.research.google.com/drive/1UxaormHsBgqQN8hM3AnmR87k-sweqIBB?usp=sharing) By @DeKxi 9 | * [FrameSync.xyz](https://www.framesync.xyz/) - Automate Deforum Keyframe Animations With Waveforms 10 | * [Keyframe String Generator](https://keyframe-string-generator.glitch.me/) For AI Animation Notebooks 11 | * [PyDub Audio To Disco Diffusion Keyframe Generator V0.1](https://colab.research.google.com/gist/austinhquinn/52c9a845a3ede3541bf3890efda276e0/pydub-audio-to-disco-diffusion-keyframe-generator-v0-1.ipynb) By Austinhquinn 12 | * [Tulpa Prompter](https://dreamingtulpa.com/tools/prompter) By @Dreamingtulpa - Helper To Build Animation Prompts ([Tweet](https://twitter.com/dreamingtulpa/status/1585368484212772864?s=20\&t=Z\_rnmEJ6W22sluwbjewvIg)) 13 | * [Wiggle Animation Key Frame Generator](https://colab.research.google.com/github/zippy731/wiggle/blob/main/Wiggle\_Standalone\_5\_0.ipynb) By @Zippy731 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-video/video-channels.md: -------------------------------------------------------------------------------- 1 | # Video Channels 2 | 3 | ## Video Channels 4 | 5 | * [@DrAlanDThompson](https://www.youtube.com/@DrAlanDThompson) - AI, News, Reports, Models 6 | * [@Peterdiamandis](https://www.youtube.com/@peterdiamandis) - AI, Longevity, Singluarity 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-video/video-editing.md: -------------------------------------------------------------------------------- 1 | # Video Editing 2 | 3 | ## Video Editing 4 | 5 | * [Beatoven.ai](https://www.beatoven.ai/) - Artificial Intelligence Powered Beat Making Software 6 | * [Colourlab](https://www.colourlab.ai/) - An AI Powered Color Grading Tool 7 | * [Contentfries](https://www.contentfries.com/) - AI-powered Content Creation Platform 8 | * [Dubverse](https://dubverse.ai/) - An AI Voice Actor That Generates Voiceovers For Animations And Videos 9 | * [Gling](https://www.gling.ai/) - An AI-powered Music Video Creation Platform 10 | * [Munch](https://www.getmunch.com/) - A Conversational AI Platform For Customer Service 11 | * [Papercup](https://www.papercup.com/) - A Conversational AI Platform For Customer Service 12 | * [Perfectly Clear Video](https://eyeq.photos/automatic-ai-video-enhancement/) - A Video Enhancement Tool Powered By AI 13 | * [Pictory](https://pictory.ai/) - An AI-powered Picture Optimization Tool 14 | * [Runwayml](https://runwayml.com/) - An ML Platform For Creators And Developers To Experiment With And Build AI Models 15 | * [Shuffll](https://shuffll.com/) - An AI-powered Video Editor 16 | * [Topaz Video AI](https://www.topazlabs.com/topaz-video-ai) - AI-powered Video Enhancement Tool 17 | * [Type Studio](https://www.typestudio.co/tool/video-to-text/) - An AI-powered Video-to-text Transcription Tool 18 | * [Unscreen.com](https://www.unscreen.com/) - An AI-powered Video Background Remover 19 | * [Vidyo.ai](https://vidyo.ai/) - An AI-powered Video Editing And Enhancement Platform 20 | 21 | *** 22 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-video/video-generator.md: -------------------------------------------------------------------------------- 1 | # Video Generator 2 | 3 | ## Video Generator 4 | 5 | * [Astria](https://www.astria.ai/) - Astria Is An AI Powered Storytelling Platform For Books. 6 | * [Audiolabs](https://www.audiolabs.io/) - Audiolabs Provides AI Powered Audio Production Solutions. 7 | * [Colossyan](https://www.colossyan.com/) - Colossyan Is An AI-powered 3D Rendering Platform For Architects And Designers. 8 | * [Creative Reality Studio (D-ID)](https://studio.d-id.com/) - Creative Reality Studio (D-ID) Provides AI-powered Face And Body De-identification Solutions. 9 | * [Designs AI](https://designs.ai/) - Designs AI Is An AI-powered Design Platform That Enables Users To Create Custom Graphics And Designs. 10 | * [FILM](https://replicate.com/google-research/frame-interpolation) - FILM Is A Research Project From Google That Provides AI-powered Frame Interpolation For Videos. 11 | * [Fliki](https://fliki.ai) - Fliki Is An AI-powered Knowledge Platform That Provides Users With Personalized Recommendations For Books, Movies, And TV Shows. 12 | * [Hourone](https://hourone.ai/) - Hourone Is An AI-powered HR Platform That Helps Businesses Streamline Their HR Processes. 13 | * [InVideo](https://invideo.io/) - InVideo Is An AI-powered Video Creation Platform That Enables Users To Create Professional-quality Videos With Ease. 14 | * [LiveReacting AI](https://www.livereacting.com/ai-host-for-live-stream) - LiveReacting AI Is An AI-powered Virtual Host For Live Streams. 15 | * [Movio](https://www.movio.la/) - Movio Is An AI-powered Platform For Movie Marketers That Provides Data-driven Insights For Movie Campaigns. 16 | * [Opus](https://opus.ai/) - Opus Is An AI-powered Platform That Provides Users With Personalized Insights Into Their Spending Patterns. 17 | * [Peech](https://www.peech-ai.com/) - Peech Is An AI-powered Public Speaking Platform That Provides Users With Personalized Feedback On Their Speeches. 18 | * [Pollinations](https://pollinations.ai/) - Pollinations Is An AI-powered Platform That Connects Farmers With Local Beekeepers To Help Increase Crop Yields. 19 | * [Pyttipanna](https://pyttipanna.xyz/) - Pyttipanna Is An AI-powered Recipe Platform That Provides Users With Personalized Meal Recommendations. 20 | * [Shuffll](https://shuffll.com/) - Shuffll Is An AI-powered Platform That Provides Users With Personalized Recommendations For Music, Podcasts, And More. 21 | * [Steve AI](https://www.steve.ai/) - Steve AI Is An AI-powered Personal Assistant That Helps Users Streamline Their Workflow And Stay Organized. 22 | * [Synthesia](https://www.synthesia.io/) - Synthesia Is An AI-powered Music Platform That Provides Users With Personalized Music Lessons And Practice Exercises. 23 | * [Waymark](https://waymark.com/) - Waymark Is An AI-powered Navigation Platform For Drivers That Provides Real-time Traffic Updates And Navigation Assistance. 24 | * [Wonder Dynamics](https://www.wonderdynamics.com/) - Wonder Dynamics Is An AI-powered Platform That Provides Users With Personalized Feedback And Recommendations For Their Sleep Patterns. 25 | * [WowTo](https://wowto.ai/) - A Human-like AI Video Host For Live Streams. 26 | * [Xpression Camera](https://xpressioncamera.com/) - An AI-powered Virtual Camera For Video Conferencing. 27 | 28 | *** 29 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-video/video-interpolation.md: -------------------------------------------------------------------------------- 1 | # Video Interpolation 2 | 3 | ## Video Interpolation 4 | 5 | * [3D Ken Burns Effect From Single Image](https://colab.research.google.com/drive/1hxx4iSuAOyeI2gCL54vQkpEuBVrIv1hY) - Animated Video From 2D Image 6 | * [3D Photo Inpainting](https://colab.research.google.com/github/fzantalis/colab\_collection/blob/master/3D\_Photo\_Inpainting.ipynb) - Cool 3D Effects For 2D Images 7 | * [Animating Pictures With Eulerian Motion Fields](https://eulerian.cs.washington.edu/) - Code Not Out Yet, Looks Like It'll Be Awesome 8 | * [AnimationKit AI](https://colab.research.google.com/github/sadnow/AnimationKit-AI\_Upscaling-Interpolation\_RIFE-RealESRGAN/blob/main/AnimationKit\_Rife\_RealESRGAN\_Upscaling\_Interpolation.ipynb) - Video Upscaling And Interpolation Tool <- Great 9 | * [DAIN Colab](https://colab.research.google.com/github/baowenbo/DAIN/blob/master/Colab\_DAIN.ipynb) - Depth Aware Interpolation 10 | * [EbSynth](https://ebsynth.com/) - Stylize Video By Giving It AI Or Hand Painted Key Frames From Video 11 | * [ESRGAN 4 Video](https://colab.research.google.com/github/MSFTserver/AI-Colab-Notebooks/blob/main/ESRGAN\_4\_Video.ipynb) - Increase Resolution Of Video With ESRGAN 12 | * [FILM Colab](https://colab.research.google.com/drive/1tbbbnQge0yb0LmnWNchEKNhjtBNC6jX-) - By @KyrickYoung Has Pause, Loops, Reverse <- My Fave FILM 13 | * [FILM: Frame Interpolation For Large Motion](https://github.com/google-research/frame-interpolation) - ([Replicate Link](https://replicate.com/google-research/frame-interpolation)) - Smooth Interpolation/morphing 14 | * [Flowframes](https://nmkd.itch.io/flowframes) - Free Windows Tool With Patreon Option, Uses RIFE And Other Models 15 | * [PyTTI-Tools: FILM](https://colab.research.google.com/github/pytti-tools/frame-interpolation/blob/main/PyTTI\_Tools\_FiLM-colab.ipynb) - @DigThatData 'S Version Of FILM For Video Frames 16 | * [RIFE](https://colab.research.google.com/github/HeylonNHP/RIFE-Colab/blob/main/RIFE\_Colab.ipynb) - Smooth Interpolation Of Video To Increase Frame Rate 17 | * [Sequence Frame Interpolation](https://colab.research.google.com/drive/1VA3Mw2Cr3FoChBE7kQlqbS2W2z8DCdBB?usp=sharing) - Batch Version Of FILM 18 | * [Super Slomo](https://colab.research.google.com/github/tugstugi/dl-colab-notebooks/blob/master/notebooks/SuperSloMo.ipynb) - Another Way To Increase Frame Rate Of Video 19 | * [Video Art And Styling Tools](https://colab.research.google.com/drive/1Y3a76IS\_dqqVqjVGuIFPu91dCUmASkB2) - By @Coskaiy (Style Transfer, Interpolation, Superres, And More) 20 | * [Video Enhance AI](https://www.topazlabs.com/video-enhance-ai/ref/1354/) - By Topaz Labs - Commercial Upscaling And Frame Interpolation <- Excellent 21 | 22 | *** 23 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-video/video-personalized.md: -------------------------------------------------------------------------------- 1 | # Video Personalized 2 | 3 | ## Video Personalized 4 | 5 | * [Bhuman](https://www.bhuman.ai/) - An AI Platform That Helps Brands Build, Scale, And Optimize Their Sales, Customer Service, And Marketing. 6 | * [Colossyan](https://www.colossyan.com/) - An AI-powered Platform For Creating And Sharing Interactive 3D Content. 7 | * [InVideo](https://invideo.io/) - An AI-powered Video Creation Platform That Enables Businesses To Produce High-quality Video Content. 8 | * [Maverick](https://www.trymaverick.com/) - An AI-powered Platform That Helps Companies Personalize And Optimize Their Sales And Marketing Efforts. 9 | * [Rephrase](https://www.rephrase.ai/) - An AI Platform That Helps Businesses And Marketers Improve Their Written Content. 10 | * [Tavus](https://www.tavus.io/) - An AI-powered Platform That Helps Businesses Optimize Their Video Production And Distribution. 11 | * [Vidyo](https://vidyo.ai/) - An AI-powered Video Conferencing Solution. 12 | * [Windsor](https://windsor.io/) - An AI-powered Platform That Helps Businesses Automate Their Sales And Marketing Efforts. 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-writing/README.md: -------------------------------------------------------------------------------- 1 | # AI-Writing 2 | 3 | ## AI-Writing 4 | 5 | **In This Section, You Will Find All Things Related To Writing And Language Processing Using AI Technology.** 6 | 7 | [Assistant](assistant.md)\ 8 | [Copywriting](../Copywriting.md)\ 9 | [General](../General.md)\ 10 | [Paraphraser](../Paraphraser.md)\ 11 | [Story Teller](../Story%20Teller.md)\ 12 | [Summarizing](../Summarizing.md)\ 13 | [Writing](../Writing.md) 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-writing/paraphraser.md: -------------------------------------------------------------------------------- 1 | # Paraphraser 2 | 3 | ## Paraphraser 4 | 5 | * [Bearly](https://bearly.ai/) - An AI-powered Text Editor That Can Help You Write Faster And Better. 6 | * [Language Tool](https://languagetool.org/) - A Grammar And Spelling Checker That Supports Multiple Languages. 7 | * [LuciaAI](https://luciaai.com/) - A Language AI Platform That Helps Users Write Better By Using Machine Learning Algorithms. 8 | * [Paraphraser](https://paraphrasetool.com/) - A Website That Provides A Tool For Rephrasing And Summarizing Text. 9 | * [Penelope AI](https://penelope-ai.vercel.app/) - An AI-powered Writing Assistant That Can Help Improve Your Writing Style And Suggest Ideas For Content. 10 | * [Quillbot Paraphraser](https://try.quillbot.com/futurepedia) - A Tool That Can Help You Rephrase Your Text While Maintaining Its Original Meaning. 11 | * [Rephrasely](https://rephrasely.com/) - An AI-powered Tool That Helps Users Rephrase Their Text While Maintaining The Original Meaning. 12 | * [WordAI](https://wordai.com/) - A Tool That Uses AI Algorithms To Rephrase And Spin Text. 13 | * [WordfixerBot](https://www.wordfixerbot.com/) - A Free Grammar And Spelling Checker. 14 | * [Writely](https://www.writelyai.com/) - An AI-powered Writing Assistant That Helps Users Improve Their Writing Style And Suggest Ideas For Content. 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-writing/story-teller.md: -------------------------------------------------------------------------------- 1 | # Story Teller 2 | 3 | ## Story Teller 4 | 5 | * [Artflow AI](https://artflow.ai/) - A Digital Sketchbook For Android. 6 | * [BedtimeStory AI](https://www.bedtimestory.ai/) - AI-powered Bedtime Stories For Children. 7 | * [EndlessVN](https://endlessvn.io/) - A Website To Play Visual Novel Games Created By Users. 8 | * [Fabled](https://fabled.ai/) - A Natural Language Platform That Generates Stories. 9 | * [Neural Canvas](https://neuralcanvas.io/) - A Platform To Create Unique Artwork Using AI. 10 | * [NovelAI](https://novelai.net/) - AI-powered Writing Assistant For Novelists. 11 | * [Once Upon A Bot](https://onceuponabot.com/) - A Conversational Writing Tool For Generating Story Ideas. 12 | * [Scene One](https://sceneone.app/) - An AI-powered Screenwriting Tool. 13 | * [StoriesForKids](https://www.storiesforkids.ai/) - AI-generated Bedtime Stories For Children. 14 | * [Story Path](https://storypath.app/) - An AI-powered Tool For Generating Story Ideas. 15 | * [StoryWizard](https://www.storywizard.ai/) - An AI-powered Writing Assistant For Storytellers. 16 | * [Subtxt](https://subtxt.app/) - An AI-powered Writing Assistant For Screenwriters. 17 | * [Tome](https://beta.tome.app/) - An AI-powered Writing Tool To Help Authors With Their Writing Process. 18 | * [What On Earth?](https://www.whatonearth.xyz/) - A Fun And Educational Platform To Learn About Our Planet. 19 | 20 | *** 21 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-writing/summarizing.md: -------------------------------------------------------------------------------- 1 | # Summarizing 2 | 3 | ## Summarizing 4 | 5 | * [TLDR This](http://tldrthis.com) - Article Summarizer & Online Text Summarizing Tool. This Helps You Summarize Any Piece Of Text Into Concise, Easy To Digest Content So You Can Free Yourself From Information Overload. 6 | -------------------------------------------------------------------------------- /ai-mthrfckr/ai-writing/writing.md: -------------------------------------------------------------------------------- 1 | # Writing 2 | 3 | ## Writing 4 | 5 | * [AI Pickup Lines](https://www.aipickuplines.com/) - A Website That Generates Pickup Lines Using AI. 6 | * [Anyword](https://anyword.com/) - A Platform For Natural Language Generation. 7 | * [Bertha.ai](https://bertha.ai/) - An AI-powered Research Platform. 8 | * [Blog Idea Generator](https://www.usetopic.com/blog-idea-generator) - A Tool To Generate Blog Ideas. 9 | * [Compose AI](https://www.compose.ai/) - A Platform That Uses AI To Generate Content. 10 | * [Content Lake](https://www.contentlake.com/) - An AI-powered Content Creation Platform. 11 | * [Content Villain](https://contentvillain.com/) - An AI-powered Content Generation Platform. 12 | * [CopyAI](https://app.copy.ai) - An AI-powered Copywriting Tool. 13 | * [CopyCreator](https://copycreator.com/) - An AI-powered Copywriting Platform. 14 | * [CopyScouts](https://copyscouts.com/) - An AI-powered Copywriting Assistant. 15 | * [Copysmith](https://copysmith.ai/) - AI-powered Copywriting Tool For Businesses. 16 | * [Creatext](https://www.creatext.ai/) - An AI-powered Content Creation Tool. 17 | * [EleutherAI](https://6b.eleuther.ai/) - A Platform For Natural Language Understanding And Generation. 18 | * [Fabled.ai](https://fabled.ai/welcome) - A Natural Language Platform That Generates Stories. 19 | * [Frase](https://www.frase.io/) - An AI-powered Writing And Research Tool. 20 | * [Free AI Writer](https://simplified.com/ai-writer/) - A Free AI-powered Writing Tool. 21 | * [Headlime](https://headlime.com/features/ai-copywriter) - An AI-powered Copywriting Tool For Marketers. 22 | * [HyperWrite](https://hyperwriteai.com/) - AI Copywriting Tool To Create High-quality Copy. 23 | * [Hypotenuse AI](https://www.hypotenuse.ai/) - A Platform For AI Writing That Helps You In Generating Text. 24 | * [Jasper](https://www.jasper.ai/) - AI Writing Assistant 25 | * [Jenni AI](https://jenni.ai/) - AI-powered Writing Assistant 26 | * [Lex](https://lex.page/) - An AI Copywriting Platform For Businesses 27 | * [Mark Copy](https://www.markcopy.ai/) - AI-powered Copywriting Tool That Helps To Create Engaging Content. 28 | * [Moonbeam](https://www.gomoonbeam.com/) - An AI-powered Writing Assistant 29 | * [NovelAI](https://novelai.net/) - AI Writing Tool To Help You Write Faster And More Effectively. 30 | * [Peppertype.ai](https://www.peppertype.ai/) - An AI Writing Assistant To Write Website Copy. 31 | * [Rytr](https://rytr.me/) - AI-powered Writing Assistant To Help Improve Writing 32 | * [Semantic AI](https://semanticai.app/) - An AI-powered Content Generation Tool. 33 | * [Sincode](https://www.sincode.ai/) - An AI-powered Writing Tool 34 | * [Subtxt](https://subtxt.app/) - An AI Writing Tool That Helps Improve Writing Productivity 35 | * [Sudowrite](https://www.sudowrite.com/) - AI Writing Assistant 36 | * [Summari](https://summari.com/) - AI-powered Content Creation Tool 37 | * [TOME](https://beta.tome.app/) - An AI Writing Assistant 38 | * [Tools](https://app.inkforall.com/tools) - AI-powered Writing And Copywriting Tools 39 | * [TypeDroid](https://typedroid.com/) - AI-powered Writing Assistant 40 | * [Typewise](https://www.typewise.app/desktop) - AI Writing Tool That Helps To Write Better, Faster And More Efficiently. 41 | * [Wordtune](https://www.wordtune.com/) - An AI Writing Tool That Provides Suggestions To Improve Writing 42 | * [Write With LAIKA](https://www.writewithlaika.com/) - AI Writing Assistant To Help Improve Writing Productivity. 43 | 44 | *** 45 | -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisdsmith/MTHRFCKR-AI/3fc2c8c3cb8d31e8163896febf88b6b2293d8fbf/banner.png -------------------------------------------------------------------------------- /readme/ai-apps/README.md: -------------------------------------------------------------------------------- 1 | # AI-Apps 2 | 3 | ## AI-Apps 4 | 5 | **In This Section, You Will Find All Things Related To Software Development Using AI Technology.** 6 | 7 | * [Android](../../ai-mthrfckr/Android.md) 8 | * [IOS](../../ai-mthrfckr/IOS.md) 9 | * [MacOS](../../ai-mthrfckr/MacOS.md) 10 | * [Windows](../../ai-mthrfckr/Windows.md) 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /readme/ai-apps/android.md: -------------------------------------------------------------------------------- 1 | # Android 2 | 3 | ## Android 4 | 5 | - [Lek.ai](https://lek.ai/) - The Ultimate Content Creator Toolkit Powered By AI. The Fastest And Easiest Way To Create Content And Copy. 6 | - [Notta AI](https://www.notta.ai/en) - A Platform For Hosting, Sharing And Collaborating On Large Files, Without The Constraints Of Cloud Storage Services. 7 | - [AI Writer By Picsart](http://tools.picsart.com) - Edit Images, Videos & Documents For Free - Quicktools By Picsart. Creating Transparent Backgrounds For Your Images, Trimming Videos, And Converting File Types 8 | - [Bigjpg](https://bigjpg.com/) - AI Super-Resolution Lossless Image Enlarging / Upscaling Tool Using Deep Convolutional Neural Networks. 9 | - [Dream](https://dream.ai/) - Artwork Using The Power Of AI. 10 | - [Heark](https://heark.app/) - A Platform That Uses AI To Summarize Long-form Audio Content. 11 | - [Starry AI](https://starryai.com/) - AI Art Generator App - AI Art Maker 12 | - [Synth](https://www.synth.run/) - Transform Text Into Stunning Art In Seconds With Our Prompt-based Tool. 13 | 14 | --- 15 | -------------------------------------------------------------------------------- /readme/ai-apps/macos.md: -------------------------------------------------------------------------------- 1 | # MacOS 2 | 3 | ## MacOS 4 | 5 | - [AI Writer By Picsart](http://tools.picsart.com) - Edit Images, Videos & Documents For Free - Quicktools By Picsart. Creating Transparent Backgrounds For Your Images, Trimming Videos, And Converting File Types 6 | - [Bigjpg](https://bigjpg.com/) - AI Super-Resolution Lossless Image Enlarging / Upscaling Tool Using Deep Convolutional Neural Networks. 7 | - [CHARL-E](https://www.charl-e.com/) - Make Art With AI On Your Mac 8 | - [Diffusion Bee](http://diffusionbee.com) - Stable Diffusion App For AI Art. DiffusionBee Is The Easiest Way To Generate AI Art On Your Computer With Stable Diffusion. 9 | - [Ebsynth](http://ebsynth.com) - Transform Video By Painting Over A Single Frame. You Paint One Frame And EbSynth Propagates It To The Rest Of The Footage. 10 | - [Elephas](https://elephas.app/) - Personal AI Writing Assistant For Mac 11 | - [Gigapixel AI](https://www.topazlabs.com/gigapixel-ai/) - A Software That Uses AI To Up-res, Or Enlarge, Images While Maintaining The Sharpness And Detail Of The Original Image. 12 | - [Lek.ai](https://lek.ai/) - The Ultimate Content Creator Toolkit Powered By AI. The Fastest And Easiest Way To Create Content And Copy. 13 | - [Liner AI](https://liner.ai/) - Machine Learning Without Code 14 | - [Lobe](https://www.lobe.ai/) - Machine Learning Made Easy. Train Machine Learning Models With A Free, Easy To Use Tool. 15 | - [Mem](https://get.mem.ai/) - The Self-Organizing Workspace For Teams. 16 | - [Notta AI](https://www.notta.ai/en) - A Platform For Hosting, Sharing And Collaborating On Large Files, Without The Constraints Of Cloud Storage Services. 17 | - [Peakto](https://cyme.io/peakto-photo-organizer-software/) - The Game-changing Photo Organizer Software For Mac 18 | - [Topaz Video AI](https://www.topazlabs.com/video-enhance-ai/) - An AI-powered Video Enhancement Software That Can Improve The Quality Of Videos With Features Such As Denoising, Deblocking And Stabilization. 19 | - [Voice AI](http://voice.ai) - Change Your Voice On The Fly 20 | 21 | --- 22 | -------------------------------------------------------------------------------- /readme/ai-apps/windows.md: -------------------------------------------------------------------------------- 1 | # Windows 2 | 3 | ## Windows 4 | 5 | - [ArtRoom AI](https://artroom.ai/download-app) - Local GUI For Stable Diffusion. Make Beautiful AI Generated Art Without Touching A Single Line Of Code. 6 | - [AI Writer By Picsart](http://tools.picsart.com) - Edit Images, Videos & Documents For Free - Quicktools By Picsart. Creating Transparent Backgrounds For Your Images, Trimming Videos, And Converting File Types 7 | - [Bigjpg](https://bigjpg.com/) - AI Super-Resolution Lossless Image Enlarging / Upscaling Tool Using Deep Convolutional Neural Networks. 8 | - [Gigapixel AI](https://www.topazlabs.com/gigapixel-ai/) - A Software That Uses AI To Up-res, Or Enlarge, Images While Maintaining The Sharpness And Detail Of The Original Image. 9 | - [Liner AI](https://liner.ai/) - Machine Learning Without Code 10 | - [Lobe](https://www.lobe.ai/) - Machine Learning Made Easy. Train Machine Learning Models With A Free, Easy To Use Tool. 11 | - [N00MKRAD](https://nmkd.itch.io/) - A Game Developer, Creating And Publishing Games On The Itch.io Platform. 12 | - [NMKD Stable Diffusion GUI](https://nmkd.itch.io/t2i-gui) - AI Image Generator By N00MKRAD 13 | - [Notta AI](https://www.notta.ai/en) - A Platform For Hosting, Sharing And Collaborating On Large Files, Without The Constraints Of Cloud Storage Services. 14 | - [Topaz Video AI](https://www.topazlabs.com/video-enhance-ai/) - An AI-powered Video Enhancement Software That Can Improve The Quality Of Videos With Features Such As Denoising, Deblocking And Stabilization. 15 | - [Visions of Chaos](https://softology.pro/voc.htm) - Visions of Chaos is a professional high end software application for Windows. It is simple enough for people who do not understand the mathematics behind it, but advanced enough for enthusiasts to tweak and customise to their needs. It is the most complete all in one application dealing with Chaos Theory and Machine Learning available. Every mode is written to give the best possible quality output. There are thousands of sample files included to give you an idea of what Visions of Chaos is capable of. 16 | 17 | --- 18 | -------------------------------------------------------------------------------- /readme/ai-artnftimages/README.md: -------------------------------------------------------------------------------- 1 | # AI-ArtNFTImages 2 | 3 | ## AI-Art/NFT/Images 4 | 5 | **In This Section, You Will Find AI Tools And Models For Art And Image Processing. This Includes Tools For 3D And Animation, Art And Avatar Creation, Photo Editing, And More.** 6 | 7 | * [3D & Animation](3d-and-animation.md) 8 | * [Art](../../ai-mthrfckr/Art.md) 9 | * [Github Repositories](../../ai-mthrfckr/Github%20Repositories.md) 10 | * [Logo Generator](../../ai-mthrfckr/Logo%20Generator.md) 11 | * [Other](../../ai-mthrfckr/Other.md) 12 | * [Photo Editing](../../ai-mthrfckr/Photo%20Editing.md) 13 | * [Prompts](../../ai-mthrfckr/Prompts.md) 14 | * [Showcase](../../ai-mthrfckr/Showcase.md) 15 | * [Tools](../../ai-mthrfckr/Tools.md) 16 | 17 | *** 18 | -------------------------------------------------------------------------------- /readme/ai-artnftimages/github-repositories.md: -------------------------------------------------------------------------------- 1 | # Github Repositories 2 | 3 | ## Github Repositories 4 | 5 | * [AI4D](https://github.com/mmattyg/AI4D) - A Repository For AI For Development. 6 | * [Dl–colab–notebooks](https://github.com/tugstugi/dl%E2%80%93colab%E2%80%93notebooks) - Deep Learning Tutorials In Colab Notebooks. 7 | * [Dl–colab–notebooks](https://github.com/styler00dollar/dl%E2%80%93colab%E2%80%93notebooks) - A Collection Of Deep Learning Tutorials In Colab Notebooks. 8 | * [Shared\_colab\_notebooks](https://github.com/mrm8488/shared\_colab\_notebooks) - A Repository Of Shared Google Colab Notebooks. 9 | * [Ml–art–colabs](https://github.com/dvschultz/ml%E2%80%93art%E2%80%93colabs) - A Collection Of Machine Learning And Art Colab Notebooks. 10 | * [PINTO Model Zoo](https://github.com/PINTO0309/PINTO\_model\_zoo) - A Collection Of Pre-trained Models For Various Tasks. 11 | * [Mediapipe](https://github.com/google/mediapipe) - A Cross-platform Multimedia Framework By Google. 12 | * [Mediapipe Demos](https://viz.mediapipe.dev/demo) - A Demo Page For Mediapipe Framework. 13 | * [Tensorflow Generative Tutorials](https://github.com/tensorflow/docs/tree/master/site/en/tutorials/generative) - A Repository Of Tensorflow Generative Tutorials. 14 | * [Deep Image Prior](https://github.com/DmitryUlyanov/deep%E2%80%93image%E2%80%93prior) - A Repository For Deep Image Prior. 15 | * [Awesome Colab Notebooks](https://github.com/amrzv/awesome%E2%80%93colab%E2%80%93notebooks) - A Collection Of Awesome Google Colab Notebooks. 16 | * [Useless Pytools](https://colab.research.google.com/github/aicrumb/useless%E2%80%93pytools/blob/main/useless\_py.ipynb) - A Repository For Useless Python Tools. 17 | * [My Colab Experiments](https://github.com/Norod/my%E2%80%93colab%E2%80%93experiments) - A Collection Of Personal Google Colab Experiments. 18 | * [Collection Of Notebooks](https://github.com/tg%E2%80%93bomze/collection%E2%80%93of%E2%80%93notebooks) - A Collection Of Various Notebooks. 19 | -------------------------------------------------------------------------------- /readme/ai-artnftimages/logo-generator.md: -------------------------------------------------------------------------------- 1 | # Logo Generator 2 | 3 | ## Logo Generator 4 | 5 | * [Designs AI](https://designs.ai/) - Creative Work Done Effortlessly 6 | * [Brandmark](http://brandmark.io) - Brandmark Logo Maker - The Most Advanced AI Logo Design Tool 7 | * [Looka](https://looka.grsm.io/jscfk35v34tn) - Free Logo Maker & Intelligent Brand Designer. Make A Logo And Build A Brand You Love With Looka. 8 | * [Make Logo AI](https://makelogo.ai/) - Makelogo. AI Get The Perfect Logo For Your Startup. Generate Beautiful And Unique Logos For Your Startup, Powered By Artificial Intelligence. 9 | * [Namecheap](https://www.namecheap.com/logo-maker/app/new/) - Logo Maker 10 | * [Text To Book Cover](http://stockimg.ai) - AI Image Generation For Teams - You Can Easily Generate AI Logo, AI Book Covers, AI Posters And More - Stockimg AI. AI Image Generation For Teams - You Can Easily Generate AI Logo, AI Book Covers, AI Posters And More - Stockimg AI. 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /readme/ai-artnftimages/other.md: -------------------------------------------------------------------------------- 1 | # Other 2 | 3 | ## Other 4 | 5 | * [DeepAI APIs](https://deepai.org/apis) - A Page For DeepAI APIs. 6 | * [Hitchhiker's Guide To Latent Space Colabs](https://docs.google.com/document/u/1/d/1ON4unvrGC2fSEAHMVb4idopPlWmzM0Lx5cxiOXG47k4/mobilebasic) - A Document Guide For Latent Space Colab. 7 | * [Pharmapsychotic Tools](https://pharmapsychotic.com/tools.html) - A Page For Tools Provided By Pharmapsychotic. 8 | 9 | ### Mediapipe Facemesh 10 | 11 | * [Google Colab Notebook](https://colab.research.google.com/drive/1FCxIsJS9i58uAsgsLFqDwFmiPO14Z2Hd) - A Google Colab Notebook That Demonstrates How To Use The Mediapipe Library To Detect Faces In An Image And Extract Facial Landmarks. 12 | * [Face Landmark](https://eyaler.github.io/tfjs\_webgl\_app/face\_landmark) - A Website That Provides A Face Swap App That Allows You To Swap Faces In A Video Or Camera Feed Using Facial Landmarks. 13 | 14 | ### NLP 15 | 16 | * [Quantum Stat Notebooks](https://notebooks.quantumstat.com/) - NLP Resources By Quantum Stat 17 | 18 | *** 19 | 20 | ### (NSFW) 21 | 22 | * [Penis Generator](https://colab.research.google.com/drive/1DoCxr2pYlxCRv6RmITtFWahVXsbTexYp) - NSFW 23 | * [Penis Generator](https://colab.research.google.com/drive/1-SDjR6ztiExBRmf5xzspNsA5t8y3kEXk) - NSFW 24 | 25 | ### Old School 26 | 27 | * [Picbreeder](http://picbreeder.org/) - A Website That Provides An Interactive Platform To Breed Unique And Interesting Images Using A Genetic Algorithm. 28 | * [GMIC Video](https://j.mp/gmicvid) - A Website That Provides A Video Processing Tool That Uses The GMIC Filters To Enhance The Video Quality. 29 | * [GMIC Online](https://gmicol.greyc.fr/) - An Online Platform That Allows You To Apply GMIC Filters On Images. 30 | * [Plotting Pi](https://bit.li/plotpi) - A Website That Provides A Visual Representation Of The Number Pi Using A Plotting Algorithm. 31 | -------------------------------------------------------------------------------- /readme/ai-artnftimages/prompts.md: -------------------------------------------------------------------------------- 1 | # Prompts 2 | 3 | ## Prompts 4 | 5 | * [CLIP Interrogator 2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - An AI Model That Generates Short Answers To Questions In Natural Language. 6 | * [Home | DiffusionDB](https://poloclub.github.io/diffusiondb/) - A Platform That Helps To Easily Visualize And Explore High-dimensional Data Through Diffusion Maps. 7 | * [Midjourney Prompt Generators/](https://osvik.github.io/prompt-generators/) - A Website That Offers Different Prompt Generators For Creativity And Inspiration. 8 | * [Prompter Guide](https://prompterguide.com/) - A Guide That Provides Tips And Tricks On How To Use Teleprompters Effectively. 9 | * [PromptExtend](https://www.promptextend.com/) - A Platform That Provides Creative Writing Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 10 | * [Prompt Generator For Stable Diffusion](https://www.thomas.io/stable-diffusion-prompt-generator) - A Prompt Generator That Helps To Generate Creative Ideas For Writing And Other Artistic Endeavors. 11 | * [PromptHero](https://prompthero.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 12 | * [Prompt Hunt](https://www.prompthunt.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 13 | * [Promptist](https://huggingface.co/spaces/microsoft/Promptist) - An AI Model That Generates Writing Prompts In Natural Language. 14 | * [PromptLocker](https://www.promptlocker.com/) - A Platform That Provides A Library Of Writing Prompts For Writers, Artists, And Other Creative Minds. 15 | * [Promptmakr](https://promptmakr.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 16 | * [Prompt.Noonshot](https://prompt.noonshot.com/) - Midjourney Prompt Wizard - A Website That Offers A Prompt Generator For Creativity And Inspiration. 17 | * [PromptoMANIA](https://promptomania.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 18 | * [Prompts Database](https://stablediffusionweb.com/prompts) - A Database Of Creative Writing Prompts For Writers, Artists, And Other Creative Minds. 19 | * [Public Prompts](https://publicprompts.art/) - A Platform That Provides A Library Of Public Writing Prompts For Writers, Artists, And Other Creative Minds. 20 | * [Simple Prompt Generator V0.3](https://wine-ineff.github.io/Simple\_Prompt\_Generator/) - A Simple Prompt Generator For Writing And Other Creative Endeavors. 21 | * [Stable Diffusion Prompt Book](https://openart.ai/promptbook) - A Platform That Provides A Library Of Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 22 | * [Super Prompts](https://superprompts.com/) - A Platform That Provides Creative Prompts And Inspiration For Writers, Artists, And Other Creative Minds. 23 | 24 | *** 25 | -------------------------------------------------------------------------------- /readme/ai-artnftimages/showcase.md: -------------------------------------------------------------------------------- 1 | # Showcase 2 | 3 | ## Showcase 4 | 5 | * [OnCyber Art Galleries](https://oncyber.io/) - Cool 3D Art Gallery To Showcase Your Art With Links To NFT Market 6 | * [Spatial](https://spatial.io) - Create, Share & Experience Your Creativity In 3D 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /readme/ai-audio/README.md: -------------------------------------------------------------------------------- 1 | # AI-Audio 2 | 3 | ## AI-Audio 4 | 5 | **In This Section, You Will Find All Things Related To Audio Processing Using AI Technology.** 6 | 7 | * [Audio](../../ai-mthrfckr/Audio.md) 8 | * [Editing](../../ai-mthrfckr/Editing.md) 9 | * [Music](../../ai-mthrfckr/Music.md) 10 | * [Podcasts](../../ai-mthrfckr/Podcasts.md) 11 | * [Speech](../../ai-mthrfckr/Speech.md) 12 | * [Text To Speech](../../ai-mthrfckr/Text%20To%20Speech.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /readme/ai-audio/audio.md: -------------------------------------------------------------------------------- 1 | # Audio 2 | 3 | ## Audio 4 | 5 | * [Article](https://article/) - A Website For Converting Articles To Various Formats Using AI Technology. 6 | * [Audo AI](https://audo.ai/) - AI Powered Background Noise Removal 7 | * [Clip](https://www.clip/) - A Website Offering AI-powered Video Editing Services. 8 | * [EarthML1](https://twitter.com/EarthML1/status/1449776224222523397?s=20\&t=oPLA241CLsGzifdwWcFgWQ) - A Twitter Status Update By EarthML1. 9 | * [Free Subtitles](https://freesubtitles.ai/) - A Website For Subtitle Creation Using AI Technology. 10 | * [Moises.ai](https://moises.ai/) - A Website For An AI Tool That Offers Personalized Language Learning Experiences. 11 | * [Parrot AI](https://app.parrot.ai/workspaces/personal?referrer=https%3A%2F%2Fapp.parrot.ai%2Flogout) - A Website For A Personal Workspace Offered By Parrot AI, An AI-powered Tool For Data Analysis And Organization. 12 | * [Whisper Memos](http://whispermemos.com) - Whisper Memos 13 | * [WZRD](https://wzrd.ai/) - A Website Offering AI-powered Sound Design Services. 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /readme/ai-audio/editing.md: -------------------------------------------------------------------------------- 1 | # Editing 2 | 3 | ## Editing 4 | 5 | * [Altered](https://www.altered.ai/) - Altered Is A Platform That Helps You Generate Text In Real-time, By Using Deep Learning Models Trained On A Large Corpus Of Data. 6 | * [Assemblyai](http://www.assemblyai.com) - #1 Api Platform For AI Models. Automatically Convert And Video Files And Live Streams To Text With AssemblyAI's Speech-to-Text APIs. Do More With Intelligence - Summarization, Content Moderation, Topic Detection. 7 | * [Beatoven.ai](https://www.beatoven.ai/) - Beatoven Is An AI-powered Music Production Platform That Provides Beat-making, Production And Sound Design Services. 8 | * [Cleanvoice AI](http://cleanvoice.ai) - Get Rid Of Filler Words From Your Recordings. Cleanvoice Is An Artificial Intelligence Which Removes Filler Sounds, Stuttering And Mouth Sounds From Your Podcast Or Recording. 9 | * [Clip](http://www.clip) - AI Search Engine. The Search Engine. 10 | * [Krisp](https://krisp.ai/) - Krisp Is An AI-powered Noise Cancelling Solution That Removes Background Noise In Real-time During Voice And Video Calls. 11 | * [Strip](https://www.strip.co.uk/) - Strip Is A Digital Payments Platform That Offers Payment Solutions For Individuals And Businesses, With Features Such As A Debit Card, An Online Dashboard, And Instant Notifications. 12 | * [Voicemod](https://www.voicemod.net/) - Voicemod Is A Software That Allows You To Change Your Voice In Real-time, With Options Such As A Robot, A Girl, Or A Troll. 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /readme/ai-audio/podcasts.md: -------------------------------------------------------------------------------- 1 | # Podcasts 2 | 3 | ## Podcasts 4 | 5 | * [Adobe Mic Check](https://podcast.adobe.com/miccheck) - Check Your Mic For Free. Get Advice On How To Improve Your Microphone Setup. We' Ll Make Sure You Sound Podcast-ready. 6 | * [Adobe Podcast](http://podcast.adobe.com) - Adobe Podcast - AI Recording And Editing, All On The Web. An Tool For People With Stories To Tell. 7 | * [Descript](https://www.descript.com/) - Video Editing, Podcast Transcription, Voice Overdub 8 | * [Podcast AI](http://podcast.ai) - A Platform That Provides Tools And Services For Podcast Creators And Listeners. 9 | * [Podcastle](https://podcastle.ai/) - Podcastle Is An AI-powered Platform That Helps You Create High-quality Podcasts, With Features Such As Voice-to-text Transcription, Voice Modification, And Sound Effects. 10 | -------------------------------------------------------------------------------- /readme/ai-audio/speech.md: -------------------------------------------------------------------------------- 1 | # Speech 2 | 3 | ## Speech 4 | 5 | * [Adobe Speech Enhancer](https://podcast.adobe.com/enhance) - Enhance Voice Recordings For Free. Speech Enhancement Makes Voice Recordings Sound As If They Were Recorded In A Professional Studio. 6 | * [Altered](https://www.altered.ai/) - A Website Offering AI-powered Image And Video Manipulation Services. 7 | * [Coqui](http://coqui.ai) - Direct Emotive, Generative AI Voices For Video Games, Post-production, Dubbing And Much More 8 | * [Create AI Voice Overs](https://createaivoiceovers.com/) - A Website Offering AI-powered Voice-over Services. 9 | * [Echo](https://lightning.ai/echo/view/home) - A Website Offering AI-powered Voice-over Services. 10 | * [ELSA SPEECH ANALYZER](http://speechanalyzer.elsaspeak.com) - An AI-powered Speech Recognition And Analysis Tool 11 | * [Fireflies](http://fireflies.ai) - Fireflies AI Notetaker & Conversation Intelligence. Fireflies.AI Helps Your Team Record, Transcribe, Search, And Analyze Voice Conversations. 12 | * [Lingostar](http://www.lingostar.ai) - Lingostar - Real Conversations With Artificial Intelligence. Lingostar Is The AI Who Language Learners Can Speak To In English, Spanish, Or French. Reach Fluency With REAL Spoken Conversations For Free. No More Tutors - Chat With The Lingostar A. I. To Improve Your Pronunciation, Vocabulary, And Comprehension. 13 | * [Voicemod](http://www.voicemod.net) - Free Real Time Voice Changer & Modulator - Voicemod. Express Yourself With Our Real-time AI Voice Changer And Soundboard To Be Who You Want, When You Want In The Metaverse. Build Your Sonic Identity For Platforms Like Roblox, OBS, VRChat, Discord, And More. 14 | * [Voicera](http://www.voicera.co) - Create Life-Like Voice Dictation For Your Blogs And Articles In One Click. Embed The Voice Into Your Content. Increase Users' Engagement. 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /readme/ai-business/README.md: -------------------------------------------------------------------------------- 1 | # AI-Business 2 | 3 | ## AI-Business 4 | 5 | **In This Section, You Will Find AI Tools And Models Related To Business And Commerce.** 6 | 7 | * [Customer Support](../../ai-mthrfckr/Customer%20Support.md) 8 | * [Human Resources](../../ai-mthrfckr/Human%20Resources.md) 9 | * [Reviews & Recommendations](../../ai-mthrfckr/Reviews%20&%20Recommendations.md) 10 | * [Search Engine](../../ai-mthrfckr/Search%20Engine.md) 11 | * [SEO](../../ai-mthrfckr/SEO.md) 12 | * [Startup](../../ai-mthrfckr/Startup.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /readme/ai-business/reviews-and-recommendations.md: -------------------------------------------------------------------------------- 1 | # Reviews & Recommendations 2 | 3 | ## Reviews & Recommendations 4 | 5 | * [AI Review Reply Assistant](http://www.mara-solutions.com) - Respond To Reviews With Your AI Review Reply Assistant. AI Review Reply Generator Reply 3x Faster To Every Customer Review With Individual Responses Written By Your Personal AI Assistant. No Templates Are Needed. 6 | * [Artreviewgenerator](http://artreviewgenerator.com) - Art Review Generator. A Natural Language Processing Tool And Text Generator. It Takes A Set Of Words As A Prompt And Then Generates A Medium Length Set Of Sentences That Approximate The Training Data. 7 | * [Geniusreview](http://geniusreview.xyz) - Geniusreview - 360° AI Performance Reviews. Save Tons Of Hours By Using GeniusReview To Get Tailored Answers To Your Performance Review Questions. 8 | * [Reviewz](http://www.reviewz.ai) - Discover All The Top Things Recommended By AI 9 | * [Sona](http://www.readthistwice.com) - Read This Twice - Books Worth Reading Twice. We Spend Countless Hours Scouring The Internet For The Best Book Recommendations From People You Admire. Our Database Is Constantly Growing, And Every Single Recommendation Has Been Verified For Authenticity And Includes A Link To The Source. Enjoy! 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-business/startup.md: -------------------------------------------------------------------------------- 1 | # Startup 2 | 3 | ## Startup 4 | 5 | * [Broadn](https://www.broadn.io/) - It Is A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 6 | * [Durable](https://durable.co/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 7 | * [Finta](https://www.trustfinta.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 8 | * [Ideabuddy](https://ideabuddy.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 9 | * [IdeasAI](https://ideasai.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 10 | * [Namelix](https://namelix.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 11 | * [Namewizard.ai](https://namewizard.ai/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 12 | * [Paperade](https://www.paperade.co/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 13 | * [Pitchgrade](https://pitchgrade.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 14 | * [Rationale](https://rationale.jina.ai/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 15 | * [Tome](https://beta.tome.app/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 16 | * [Validator AI](https://www.validatorai.com/) - A Tool For Finding The Best Domain Name For Your Business. It Will Give You A List Of Domain Names With An Explanation Of Why They Are Good For Your Business. 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /readme/ai-content/README.md: -------------------------------------------------------------------------------- 1 | # AI-Content 2 | 3 | ## AI-Content 4 | 5 | **In This Section, You Will Find AI Tools And Models For Content Generation.** 6 | 7 | * [Content](../../ai-mthrfckr/Content.md) 8 | * [Creators Toolkit](../../ai-mthrfckr/Creators%20Toolkit.md) 9 | * [Social Media Assistant](../../ai-mthrfckr/Social%20Media%20Assistant.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-content/creators-toolkit.md: -------------------------------------------------------------------------------- 1 | # Creators Toolkit 2 | 3 | ## Creators Toolkit 4 | 5 | * [Clipdrop](http://clipdrop.co) - Create Stunning Visuals In Seconds. The Ultimate Ecosystem Of Apps, Plugins & Resources For All Creators, Powered By Artificial Intelligence. 6 | * [Cutout Pro](http://www.cutout.pro) - Cutout. Pro - AI Photo Editing - Visual Content Generation Platform, Best For Image And Video Design. All-in-one Visual Design Platform Containing AI Photo And Video Editing Tools. Automatic Process For Background Remove, Image Restoration, Graphic Design, And Content Generation. 7 | * [Descript](http://www.descript.com) - There\&Apos; S A New Way To Make Video And Podcasts. A Good Way. Descript Is The Simple, Powerful, And Fun Way To Edit. 8 | * [Fermat](http://fermat.ws) - Creativity Augmented For Content Creation. Unleash Your Creativity With AI On A Collaborative Canvas. 9 | * [Hotpot](http://hotpot.ai) - Hotpot. AI. Hotpot.ai Helps You Create Amazing Graphics, Pictures, And Text. AI Tools Like AI Art Generator Spark Creativity And Automate Drudgery While Easy-to-edit Templates Empower Anyone To Create Device Mockups, Social Media Posts, Marketing Images, App Icons, And Other Work Graphics. 10 | * [Lightricks](http://www.lightricks.com) - Home To Creators Everywhere. Experience The Magic Of Creating With The Best Tools And Services For Creators Facetune 2, Videoleap, Linkinbio & Photoleap. Check It Out Now. 11 | * [Media.io](https://www.media.io/) - Online Video, Audio, Image Creativity Platform Powered By AI. Simplicity. Diversity. Flexibility. 12 | * [Runway](http://runwayml.com) - Runway - Next-Generation Creation Suite - Everything You Need To Make Content, Fast. Discover Advanced Video Editing Capabilities To Take Your Creations To The Next Level. 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /readme/ai-content/social-media-assistant.md: -------------------------------------------------------------------------------- 1 | # Social Media Assistant 2 | 3 | ## Social Media Assistant 4 | 5 | * [Adcreative.ai](https://free-trial.adcreative.ai/yu6pljyh4s0k) - A Website That Provides A Platform For Creating And Optimizing Ad Campaigns With The Help Of AI Technology. 6 | * [AI Social Bio](https://aisocialbio.com/) - A Website That Offers A Tool To Help Users Create Attractive And Effective Social Media Bios Using AI Technology. 7 | * [AI Social Media Post Writerby Socialblu](http://socialbu.com) - Social Media Management And Automation. SocialBu Is The Perfect Solution To Improve Your Social Media Presence And Maximize Your Results. Publish, Respond, Analyze, And Automate - All From Within SocialBu. 8 | * [Audiolabs](https://www.audiolabs.io/) - A Website That Provides An AI-powered Platform For Audio Production And Post-production Services. 9 | * [Canva Text To Image](https://www.canva.com/your-apps/text-to-image) - A Website That Offers A Tool To Transform Text Into Custom Graphics And Images. 10 | * [Contentada](https://contenda.co/) - A Website That Provides A Content Creation Platform Powered By AI Technology. 11 | * [CrawlQ.ai](https://crawlq.ai/) - A Website That Offers A Web Scraping And Data Extraction Service Powered By AI Technology. 12 | * [Editby](https://aiinfinity.blogspot.com/p/smaeditby.html) - Unlock Creativity And Grow Your Twitter Audience With AI. 13 | * [FeedHive](https://aiinfinity.blogspot.com/p/smafeedhive.html) - Create, Schedule, Publish, And Easily Manage Your Social Media Content At Scale With FeedHive's AI-powered Platform. 14 | * [Graham AI](https://aiinfinity.blogspot.com/p/smagraham-ai.html) - Tweet Like A Genius Tech Influencer, Generated By AI. 15 | * [InstaSalesAI](https://aiinfinity.blogspot.com/p/smainstasalesai.html) - Unlock Your Instagram.Get More Organic Traffic.Build Your Credibility And Maximize Your Sales With Fresh Content Using AI. 16 | * [MagicThumbnails](https://aiinfinity.blogspot.com/p/smamagicthumbnails.html) - Generate YouTube Thumbnails With AI. 17 | * [Munch](https://aiinfinity.blogspot.com/p/smamunch.html) - Go Viral Using Your Existing Content Automatically. 18 | * [Ocoya](https://aiinfinity.blogspot.com/p/smaocoya.html) - Social Media Content 10x Faster. 19 | * [Photor AI](https://photor.io/photoscore) - A Website That Provides An AI-powered Photo Management And Optimization Tool. 20 | * [Predis](https://aiinfinity.blogspot.com/p/smapredis.html) - Create Stunning Social Media Video/Reels Posts In Seconds! 21 | * [Repl AI](https://aiinfinity.blogspot.com/p/smarepl-ai.html) - Get 10x Growth With AI-generated Replies. 22 | * [SocialBu](https://aiinfinity.blogspot.com/p/smasocialbu.html) - Easy And Effective Social Media Management Solution. 23 | * [Spatial](https://aiinfinity.blogspot.com/p/smaspatial.html) - Predict And Influence Customer Behavior With The World's First Real-time Social Media Segmentation System. 24 | * [TweetEmote](https://aiinfinity.blogspot.com/p/smatweetemote.html) - The AI-Powered Tweet Assistant. 25 | * [Tweet Hunter](https://aiinfinity.blogspot.com/p/smatweet-hunter.html) - BUILD & MONETIZE YOUR TWITTER AUDIENCE FAST. 26 | * [Wordhero](https://wordhero.co) - A Website That Offers An AI-powered Writing Assistant And Optimization Tool. 27 | 28 | *** 29 | -------------------------------------------------------------------------------- /readme/ai-data/README.md: -------------------------------------------------------------------------------- 1 | # AI-Data 2 | 3 | ## AI-Data 4 | 5 | **In This Section, You Will Find AI Tools And Models Related To Data Processing And Analysis.** 6 | 7 | * [Data](../../ai-mthrfckr/Data.md) 8 | * [Spreadsheets](../../ai-mthrfckr/Spreadsheets.md) 9 | * [SQL](../../ai-mthrfckr/SQL.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-data/data.md: -------------------------------------------------------------------------------- 1 | # Data 2 | 3 | ## Data 4 | 5 | - [AI2sql](https://www.ai2sql.io/) - AI2sql Is A Tool That Enables You To Query Databases Using Natural Language. 6 | - [AI SQL Query Builder](https://aihelperbot.com/) - AI SQL Query Builder Is A Tool That Helps You Build SQL Queries By Simply Asking Natural Language Questions. 7 | - [Dashboard | Sheet+](https://app.sheetplus.ai/) - Sheet+ Is A Platform That Provides A Dashboard For Data Analysis And Visualization. 8 | - [DataRobot](https://www.datarobot.com/) - DataRobot Is An AI-powered Platform For Automating The Building, Deployment, And Management Of Machine Learning Models. 9 | - [EndType](https://endtype.com/) - EndType Is A Platform For Creating And Managing Database Schema And Content. 10 | - [EverSQL | Your Database, Just Faster](https://www.eversql.com/) - EverSQL Is A Database Performance Optimization Platform That Speeds Up Your Database Performance. 11 | - [Excel Formulator](https://excelformulator.com/signin) - Excel Formulator Is A Tool That Helps You Convert Your Data Into An Excel Spreadsheet. 12 | - [Lookup](https://app.uselookup.com/dashboard) - Lookup Is A Platform That Enables You To Search And Visualize Data From Various Sources. 13 | - [Raw Query](https://rawquery.com/) - Raw Query Is A Platform That Enables You To Run SQL Queries On Large Data Sets. 14 | - [Seek AI](https://www.seek.ai/) - Seek AI Is A Platform For Finding And Evaluating AI Models. 15 | - [SeekWell](https://www.seekwell.io/#features) - SeekWell Is A Platform For Writing And Executing SQL Queries. 16 | - [Tabulate](https://github.com/openai/tabulate) - Tabulate Is A Library For Creating Formatted Tables In Various Formats, Including Markdown. 17 | - [Universal Data Generator](https://generate.universaldata.io/) - Universal Data Generator Is A Platform For Generating Synthetic Data For Use In Development, Testing, And Research. 18 | 19 | --- 20 | -------------------------------------------------------------------------------- /readme/ai-data/spreadsheets.md: -------------------------------------------------------------------------------- 1 | # Spreadsheets 2 | 3 | ## Spreadsheets 4 | 5 | - [Excel Formula Bot](https://excelformulabot.com/) - A Website Offering Excel Formula Tutorials, Tips, And Tricks. 6 | - [Goodlookup](https://www.goodlookup.com/) - A Website That Provides A Simple And Easy To Use Tool For Working With Spreadsheets. 7 | - [Sheet+](https://sheetplus.ai/) - A Website Offering An AI-powered Tool For Working With Spreadsheets. 8 | - [Sheet AI](https://www.sheetai.app/) - A Website Offering A Suite Of AI-powered Tools For Working With Spreadsheets. 9 | - [SheetGod](https://www.boloforms.com/sheetgod/) - A Website Offering An AI-powered Tool For Automating Tasks In Spreadsheets. 10 | -------------------------------------------------------------------------------- /readme/ai-data/sql.md: -------------------------------------------------------------------------------- 1 | # SQL 2 | 3 | ## SQL 4 | 5 | - [Ai2sql](http://www.ai2sql.io) - Sql Query Builder AI Bot. With AI2sql, Engineers And Non-engineers Can Easily Write Efficient, Error-free SQL Queries Without Knowing SQL. It's Time To Take Back Your Time. 6 | - [AI Data Sidekick](https://www.airops.com/) - A Website Offering An AI-powered Tool For Analyzing And Optimizing Data. 7 | - [AIHelperBot](https://aihelperbot.com/) - A Website Offering An AI-powered Tool For Working With SQL Databases. 8 | - [Avanty](https://avanty.app/) - A Website Offering An AI-powered Tool For Automating Database Management Tasks. 9 | - [Channel](https://www.usechannel.com/) - A Website Offering An AI-powered Tool For Analyzing And Visualizing Data. 10 | - [CodeSquire](https://codesquire.ai/) - A Website Offering An AI-powered Tool For Automating Database Development Tasks. 11 | - [Continual](https://continual.ai/) - A Website Offering An AI-powered Tool For Automating Database Management Tasks. 12 | - [Seek](https://www.seek.ai/) - A Website Offering An AI-powered Tool For Automating Database Development Tasks. 13 | 14 | --- 15 | -------------------------------------------------------------------------------- /readme/ai-design/README.md: -------------------------------------------------------------------------------- 1 | # AI-Design 2 | 3 | ## AI-Design 4 | 5 | **In This Section, You Will Find AI Tools And Models For Design And Architecture.** 6 | 7 | * [Architecture](../../ai-mthrfckr/Architecture.md) 8 | * [Assistant](../../ai-mthrfckr/Assistant.md) 9 | * [Web Design](../../ai-mthrfckr/Web%20Design.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-design/architecture.md: -------------------------------------------------------------------------------- 1 | # Architecture 2 | 3 | ## Architecture 4 | 5 | * [AI Room Planner](http://airoomplanner.com) - Interior Design By AI. Get Hundreds Of Interior Design Ideas For Your Room - Free With No Limit 6 | * [Dimensions](http://www.dimensions.ink) - Dimensions - Rapidly Create Visual Concepts With AI. Imagine Being Able To Create Beautiful Interior Designs With Ease–that's What Dimensions Offers 7 | * [Getfloorplan](http://getfloorplan.com) - Creating 2D And 3D Floor Plans With AI. Up To 30% Calls Increase Reported By Our Clients Using 2D, 3D Floor Plans And Virtual Tours 8 | * [Image Computer](http://image.computer) - Generate Your Next Interior Design / Paniting / Fashion Collection / Concept Art. Use Our Powerful AI Technology To Generate Any Type Of Image You Can Think Of. In A Matter Of Seconds 9 | * [Interior AI](http://interiorai.com) - Interior AI: Interior Design Ideas Inspiration, And Virtual Staging App Using Artificial Intelligence. Get Interior Design Ideas Using Artificial Intelligence And Virtually Stage Interiors For Real Estate Listings With Different Interior Styles 10 | * [Makeit.ai](http://www.maket.ai) - Generative Design - Architecture Design Software - Maket. Our Generative Design Software Enables Architects, Builders & Developers To Quickly Generate Thousands Of Architectural Plans Instantly 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /readme/ai-design/web-design.md: -------------------------------------------------------------------------------- 1 | # Web Design 2 | 3 | ## Web Design 4 | 5 | * [AI Design Resource](https://aidesignresource.com/) - A Platform For AI-powered Design Resources. 6 | * [ChatBA](https://www.chatba.com/) - Chatbcg Generative AI For Slides. Instantly Create Slide Decks Using ChatBCG. 7 | * [Durable](http://durable.co) - Durable AI Website Builder And Service Business Software 8 | * [Magician](http://magician.design) - Magician For Figma. A Magical Design Tool For Figma Powered By AI. 9 | * [Piggy](https://piggy.to/magic) - Mobile Content Creator. Creating Stunning Content On Your Phone Just Got Easy. 10 | * [SlidesAI](https://www.slidesai.io/) - Create Presentation Slides With AI In Seconds. Say Goodbye To Tedious, Manual Slides Creation. Let The AI Write The Outline And Presentation Content For You. With Our Tool, You Can Easily Create Professional, Engaging Slides From Any Text In No Time. 11 | * [Tome](http://beta.tome.app) - Generative Storytelling Has Arrived. Unlock Your Best Work With Tome's AI-powered Storytelling Format. 12 | 13 | *** 14 | -------------------------------------------------------------------------------- /readme/ai-detection.md: -------------------------------------------------------------------------------- 1 | # AI-Detection 2 | 3 | ## AI-Detection 4 | 5 | - [BusterAI](https://aiinfinity.blogspot.com/p/ai-detection-busterai.html) - Is Your Text Written By A Human Or AI? Uncover The Truth With BusterAI. 6 | - [Detect GPT](https://aiinfinity.blogspot.com/p/ai-detection-detect-gpt-chrome-extension.html) - Find Out If The Pages You Browse Contain AI-generated Content. 7 | - [GLTR AI Detection](https://aiinfinity.blogspot.com/p/ai-detectiongltr.html) - Catching A Unicorn With GLTR: A Tool To Detect Automatically Generated Text. 8 | - [GPTZero](https://aiinfinity.blogspot.com/p/ai-detectiongptzero.html),[Other](https://etedward-gptzero-main-zqgfwb.streamlit.app/) - GPTZero Turns The Very Technologies Used To Build ChatGPT Around—to Detect AI 9 | - [OpenAI Classifier](https://aiinfinity.blogspot.com/p/ai-detectionopenai-classifierai.html) - A Classifier Trained To Distinguish Between AI-written And Human-written Text. 10 | - [Originaltiy AI](https://aiinfinity.blogspot.com/p/ai-detectionoriginality-ai.html) - A Plagiarism Checker And AI Detector Built For Serious Content Publishers. 11 | - [Writer](https://aiinfinity.blogspot.com/p/ai-detectionwriter.html) - AI Content Detector! 12 | - [ZeroGPT](https://aiinfinity.blogspot.com/p/ai-detectionzerogpt.html) - Detect ChatGPT Content For Free, Simple Way & High Accuracy. OpenAI Detection Tool. 13 | 14 | --- 15 | -------------------------------------------------------------------------------- /readme/ai-development/README.md: -------------------------------------------------------------------------------- 1 | # AI-Development 2 | 3 | ## AI-Development 4 | 5 | **In This Section, You Will Find AI Tools And Models For Software Development And Programming.** 6 | 7 | * [Code](../../ai-mthrfckr/Code.md) 8 | * [Database](../../ai-mthrfckr/Database.md) 9 | * [Developer Tools](../../ai-mthrfckr/Developer%20Tools.md) 10 | * [Github](../../ai-mthrfckr/Github.md) 11 | * [Learn Generative AI](../../ai-mthrfckr/Learn%20Generative%20AI.md) 12 | * [No Code](../../ai-mthrfckr/No%20Code.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /readme/ai-development/github.md: -------------------------------------------------------------------------------- 1 | # Github 2 | 3 | ## Github 4 | 5 | * [Awesome-chatgpt-prompts](https://github.com/f/awesome-chatgpt-prompts) - Prompts Directory 6 | * [Awesome-pretrained-stylegan2](https://github.com/justinpinkney/awesome-pretrained-stylegan2) - A Curated List Of Pretrained StyleGAN2 Models. 7 | * [ChaiNNer](https://github.com/chaiNNer-org/chaiNNer) - A Node-based Image Processing And AI Upscaling GUI That Makes It Easy To Chain Together Complex Processing Tasks. 8 | * [ChaiNNer](https://github.com/joeyballentine/chaiNNer) - A Deep Neural Network Framework Built On Top Of PyTorch. 9 | * [Chatgpt-api](https://github.com/transitive-bullshit/chatgpt-api) - Node.js Client For The Unofficial ChatGPT API. 10 | * [CLIP\_prefix\_caption](https://github.com/rmokady/CLIP\_prefix\_caption) - Code To Generate Captions From Text Prefixes Using The CLIP Model. 11 | * [Cloob-latent-diffusion](https://github.com/JD-P/cloob-latent-diffusion) - A Tool For Exploring The Latent Space Of StyleGAN Models. 12 | * [Cupscale](https://github.com/n00mkrad/cupscale) - A Tool For Improving The Resolution Of Images Using Deep Learning. 13 | * [Dalle-mini](https://github.com/borisdayma/dalle-mini) - A Tool For Generating Mini Videos From A Single Image. 14 | * [DiscoDiffusion-Warp](https://github.com/Sxela/DiscoDiffusion-Warp) - A Tool For Visualizing And Manipulating The Latent Space Of Generative Models. 15 | * [Dreamfields-3D](https://github.com/shengyu-meng/dreamfields-3D) - A Tool For Generating 3D Scenes From 2D Images Using Deep Learning. 16 | * [Examples Chatbot Template](https://github.com/vercel/examples/tree/main/solutions/ai-chatgpt) - Chat Bot Template 17 | * [Fast-stable-diffusion](https://github.com/TheLastBen/fast-stable-diffusion) - A Fast And Stable Algorithm For Exploring The Latent Space Of Generative Models. 18 | * [Frame-interpolation](https://github.com/google-research/frame-interpolation) - Code For Improving The Frame Rate Of Videos Using Deep Learning. 19 | * [Glid-3](https://github.com/Jack000/glid-3) - A Tool For Generating 3D Scenes From 2D Images Using Deep Learning. 20 | * [Langchain](https://github.com/hwchase17/langchain) - Chaining Prompts, Multi-model Logic, "LLMs Through Composability" 21 | * [Learn\_Prompting](https://github.com/trigaten/Learn\_Prompting) - Docs - Communicating With Artificial Intelligence 22 | * [Lucid-sonic-dreams](https://github.com/mikaelalafriz/lucid-sonic-dreams) - A Tool For Exploring The Latent Space Of Generative Models Using Music. 23 | * [Natbot](https://github.com/nat/natbot) - GitHub's CEO Bot Project To Drive A Browser 24 | * [Openai-fetch](https://github.com/rileytomasek/openai-fetch) - OpenAI Client Powered By Fetch, Works On Vercel Edge, Workers, Size \~5kb Vs. Openai-node \~180kb 25 | * [Rudalle-aspect-ratio](https://github.com/shonenkov-AI/rudalle-aspect-ratio) - A Tool For Changing The Aspect Ratio Of Images And Videos Using Deep Learning. 26 | * [VQGAN-CLIP-animations](https://github.com/chigozienri/VQGAN-CLIP-animations) - Code For Generating Animations From Text Using The VQ-VAE-2 And CLIP Models. 27 | * [Waifu2x](https://github.com/nagadomi/waifu2x) - A Tool For Improving The Resolution Of Images Using Deep Learning. 28 | * [Yt-semantic-search](https://github.com/transitive-bullshit/yt-semantic-search) - OpenAI-powered Semantic Search For Any YouTube Playlist 29 | 30 | *** 31 | -------------------------------------------------------------------------------- /readme/ai-development/learn-generative-ai.md: -------------------------------------------------------------------------------- 1 | # Learn Generative AI 2 | 3 | ## Learn Generative AI 4 | 5 | * AIAIART - Really Nice Ongoing [Youtube Series](https://www.youtube.com/playlist?list=PL23FjyM69j910zCdDFVWcjSIKHbSB7NE8) And Discussion In Its [Discord](https://discord.com/invite/aq3kv4Mtcd) 6 | * [Deep Learning For Art, Aesthetics, And Creativity](https://www.youtube.com/playlist?list=PLCpMvp7ftsnIbNwRnQJbDNRqO6qiN3EyH) - MIT Course Available On Youtube 7 | * [Dive Into Deep Learning](https://d2l.ai/index.html) - (Online, Free, Interactive) 8 | * [Generative Deep Learning](https://amzn.to/3FNr3ap) - Teaching Machines To Paint, Write, Compose, And Play By David Foster \[2019] 9 | * [Ml4a.net](https://ml4a.net/) - Online Textbook, Classes, And Learning Resources \\\ 10 | Not Very Technical But Engaging And Inspiring View Of Many AI Art Projects So Far. \\\ 11 | Really Enjoyed This And It's A Great Book! It's From 2019 So Doesn't Cover The Very Latest Like VQGAN, CLIP, Guided Diffusion Though. 12 | 13 | * [The Artist In The Machine](https://amzn.to/32I0kOm) - The World Of AI-powered Creativity By Arthur I. Miller \[2020] 14 | * [The Illustrated Stable Diffusion](https://jalammar.github.io/illustrated-stable-diffusion/) - Really Nice Overview Of Stable Diffusion And The Pieces That Make It Up 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /readme/ai-educationlearning/README.md: -------------------------------------------------------------------------------- 1 | # AI-EducationLearning 2 | 3 | ## AI-Education/Learning 4 | 5 | **In This Section, You Will Find Resources And Tools Related To Education And Learning In The Field Of AI.** 6 | 7 | * [Education And Learning](../../ai-mthrfckr/Education%20And%20Learning.md) 8 | * [Research](../../ai-mthrfckr/Research.md) 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /readme/ai-educationlearning/education-and-learning.md: -------------------------------------------------------------------------------- 1 | # Education And Learning 2 | 3 | ## Education And Learning 4 | 5 | * [Botta](https://askbotta.com/) - Having Trouble With A Topic? Meet Botta. Your Free, Personal Teaching Assistant. Ask Questions, Get Answers. Botta Makes Online Learning A Breeze. 6 | * [Caktus](https://www.caktus.ai/) - A Company Offering AI-powered Solutions For Businesses. 7 | * [ELI5](https://explainlikeimfive.io/) - A Platform For Understanding Complex Topics Through Simple Explanations. 8 | * [LiveReacting AI](https://www.livereacting.com/ai-host-for-live-stream) - An AI-powered Host For Live Streams. 9 | * [Lorro](https://lorro.io/) - Become A Fluent English Speaker For A Fraction Of A Cost. By Talking To An AI Tutor. 10 | * [MindSmith](https://www.mindsmith.ai/) - An AI-powered Tool For Brainstorming And Creative Problem Solving. 11 | * [Quizgecko](https://quizgecko.com/) - A Platform For Creating And Taking Quizzes. 12 | * [Replicate](http://replicate.com) - Machine Learning Doesn\&Apos; T Need To Be So Hard. Run Open-source Models With A Cloud API. 13 | * [Scholarcy](https://www.scholarcy.com/) - A Platform For Summarizing And Analyzing Academic Texts. 14 | * [Speakingclubai](http://speakingclubai.com) - Speaking Club AI. Welcome To Speaking Club AI - The Ultimate Language Learning Tool For Anyone Looking To Improve Their Speaking Skills In A Foreign Language. With Speaking Club AI, You Can Practice Your Conversation Skills With A Personalized AI Language Partner Anytime, Anywhere. 15 | * [TutorAI](https://www.tutorai.me/) - A Platform For Personalized Tutoring And Educational Content. 16 | * [Yip](https://yippity.io/) - A Platform For AI-powered Writing And Content Creation. 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /readme/ai-educationlearning/research.md: -------------------------------------------------------------------------------- 1 | # Research 2 | 3 | ## Research 4 | 5 | * [Adept](https://www.adept.ai/) - Adept Is An AI-powered Writing Assistant. 6 | * [Consensus](https://consensus.app/) - Consensus Is A Project Management And Collaboration Tool. 7 | * [Cradle](https://cradle.bio/) - Cradle Is A Platform For Life Sciences And Biotechnology Research. 8 | * [Elicit](https://elicit.org/) - Elicit Is A Research Platform That Connects Researchers With Participants. 9 | * [Galactica](https://galactica.org/) - Galactica Is A Platform For Space Exploration And Research. 10 | * [Perplexity AI](https://www.perplexity.ai/) - Perplexity AI Is An AI-powered Personalized News Aggregator. 11 | * [Podcast](https://podcast.ai/) - Podcast.ai Is A Platform For Podcast Hosting And Creation. 12 | * [Scholarcy](https://www.scholarcy.com/) - Scholarcy Is An AI-powered Research Tool That Helps Scholars And Students. 13 | * [Scispace](https://typeset.io/) - Scispace Is A Platform For Scientific Research And Collaboration. 14 | * [Socratic By Google](https://socratic.org/) - Socratic By Google Is A Homework Helper And Learning App. 15 | * [Summate](https://summate.it/) - Summate Is An AI-powered Tool For Summarizing Articles And Documents. 16 | * [WolframAlpha](https://www.wolframalpha.com/) - WolframAlpha Is A Knowledge Engine And AI-powered Answer Engine. 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /readme/ai-experiments.md: -------------------------------------------------------------------------------- 1 | # AI-Experiments 2 | 3 | ## AI-Experiments 4 | 5 | - [Alethea AI](https://alethea.ai/) - Enabling Ownership Of Generative AI 6 | - [Ask My Book](https://askmybook.com/) - The Minimalist Entrepreneur 7 | - [Experiments With Google](https://experiments.withgoogle.com/collection/ai) - AI Experiments 8 | - [Talk To Books](https://books.google.com/talktobooks/) - Browse Passages From Books Using Experimental AI 9 | 10 | --- 11 | -------------------------------------------------------------------------------- /readme/ai-health/README.md: -------------------------------------------------------------------------------- 1 | # AI-Health 2 | 3 | ## AI-Health 4 | 5 | **In This Section, AI Tools And Resources To Help You Monitor And Improve Your Health And Wellness.** 6 | 7 | * [Health](../../ai-mthrfckr/Health.md) 8 | * [Life Assistant](../../ai-mthrfckr/Life%20Assistant.md) 9 | * [Memory](../../ai-mthrfckr/Memory.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-health/health.md: -------------------------------------------------------------------------------- 1 | # Health 2 | 3 | ## Health 4 | 5 | * [Cradle](https://cradle.bio/) - Cradle Is A Platform For Scientific Research And Collaboration. According To Their Website, Cradle Provides A "Powerful Platform That Integrates With Scientific Workflows And Enables Seamless Collaboration Between Scientists And Stakeholders." 6 | * [Getactyv](http://getactyv.com) - Getactyv - AI And Computer Vision Assisted Health And Fitness Platform 7 | * [Replika](http://replika.com) - The AI Companion Who Cares. Always Here To Listen And Talk. Always On Your Side. Join The Millions Growing With Their AI Friends Now. 8 | * [Ubie AI Symptom Checker](http://ubiehealth.com) - Check Symptoms & Find Causes By AI. Check Symptoms & Find Causes By AI - Answer Quiz About Your Symptoms To Find Out Possible Causes, Types, Severity, And Treatment For Free By AI. Developed By Doctors. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /readme/ai-health/life-assistant.md: -------------------------------------------------------------------------------- 1 | # Life Assistant 2 | 3 | ## Life Assistant 4 | 5 | * [AI Trip Planner](https://www.buildai.space/app/dae3da25-888e-448f-b15c-5a20ca4ca961) - A Platform For Planning Trips Using AI Technology. 6 | * [Apple Books](https://www.apple.com/in/apple-books/) - An E-book Platform By Apple Inc. 7 | * [BlackInk](https://blackink.ai/) - An AI-powered Writing Assistant. 8 | * [Caktus](https://www.caktus.ai/) - An AI Platform That Provides Solutions For Various Industries. 9 | * [Circle Labs](https://circle.isyourshadowyou.com/Home.html) - An AI-powered Digital Assistant That Helps With Scheduling And Productivity. 10 | * [Elektrif AI](https://www.elektrif.ai/) - An AI Platform That Provides Solutions For Various Industries. 11 | * [Ferret](https://www.ferret.ai/) - An AI-powered Research And Productivity Tool. 12 | * [Find Your Next Book](https://www.findyournextbook.ai/) - An AI-powered Recommendation Platform For Books. 13 | * [JustLearn](https://www.justlearn.com/) - An Online Platform For Language Learning. 14 | * [Looria](https://looria.com/) - An AI-powered Digital Assistant For Scheduling And Productivity. 15 | * [PlaylistAI](https://www.playlistai.app/) - An AI-powered Music Recommendation Platform. 16 | * [Prodigy AI](https://ai.prodi.gg/) - An AI-powered Platform For Skill Assessment And Development. 17 | * [Reggi](https://www.yfj.social/reggi-app) - An AI-powered Scheduling And Productivity Platform. 18 | * [Replika](https://replika.com/) - An AI-powered Personal Chatbot. 19 | * [Resume Worded](https://resumeworded.com/index.php) - A Platform That Uses AI To Enhance Resumes. 20 | * [Rewind AI](https://www.rewind.ai/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 21 | * [Thekeys](https://www.thekeys.ai/) - An AI-powered Platform For Automating Administrative Tasks. 22 | * [TinyWow](https://tinywow.com/) - An AI-powered Writing Assistant. 23 | * [Write Me A Cover Letter](https://writemeacoverletter.com/) - A Platform That Uses AI To Generate Cover Letters. 24 | 25 | *** 26 | -------------------------------------------------------------------------------- /readme/ai-health/memory.md: -------------------------------------------------------------------------------- 1 | # Memory 2 | 3 | ## Memory 4 | 5 | * [Glasp](https://glasp.co/ai-writing) - An AI-powered Writing Assistant. 6 | * [Heyday](https://heyday.xyz/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 7 | * [Mem.ai](https://mem.ai/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 8 | * [Personal.ai](https://www.personal.ai/) - An AI-powered Personal Assistant Platform. 9 | * [Rewind AI](https://www.rewind.ai/) - An AI-powered Memory Platform That Helps Users Preserve And Relive Their Memories. 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-newsarticlesblogssocial/README.md: -------------------------------------------------------------------------------- 1 | # AI-NewsArticlesBlogsSocial 2 | 3 | ## AI-News/Articles/Blogs/Social 4 | 5 | * [Articles](../../ai-mthrfckr/Articles.md) 6 | * [Blogs](../../ai-mthrfckr/Blogs.md) 7 | * [News](../../ai-mthrfckr/News.md) 8 | * [Twitter](../../ai-mthrfckr/Twitter.md) 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /readme/ai-newsarticlesblogssocial/blogs.md: -------------------------------------------------------------------------------- 1 | # Blogs 2 | 3 | ## Blogs 4 | 5 | - [Bleeding Edge](https://bleedingedge.ai/) - A Feed Of Noteworthy Developments In AI. 6 | - [UCSB 146AI F2013](https://artificialintelligence2013.wordpress.com/) - A Blog That Covers Topics Related To Artificial Intelligence And Machine Learning, Including Tutorials And Resources. 7 | - [StoriesbyAI](http://storiesby.ai) - Unique tales written, illustrated, and narrated with AI. 8 | -------------------------------------------------------------------------------- /readme/ai-newsarticlesblogssocial/news.md: -------------------------------------------------------------------------------- 1 | # News 2 | 3 | ## News 4 | 5 | - [Headline AI](http://headline-ai.com) - A Platform That Provides AI-powered Headline Generation For Articles And Content 6 | - [Stocknews AI](http://stocknewsai.com) - AI Picked Stock News 7 | - [Artificial Genie AI](https://artificialgenie.ai/) - AI Newsletter 8 | -------------------------------------------------------------------------------- /readme/ai-newsarticlesblogssocial/twitter.md: -------------------------------------------------------------------------------- 1 | # Twitter 2 | 3 | ## Twitter 4 | 5 | - [Andrej Karpathy](https://twitter.com/karpathy) - Ex-OpenAI, Ex-Tesla AI Director 6 | - [Jim Fan](https://twitter.com/DrJimFan) - AI Content 7 | - [Linus](https://twitter.com/LinusEkenstam) - AI Content 8 | - [Logan.GPT](https://twitter.com/OfficialLoganK) - DevRel @ OpenAI 9 | - [Naklecha](https://twitter.com/naklecha) - Ai Research + Doing Art Projects [@notpinkxyz](https://twitter.com/notpinkxyz) + Prev [@morganstanley](https://twitter.com/morganstanley) 10 | - [NVIDIA AI](https://twitter.com/NVIDIAAI) - NVIDIA AI Enterprise Twitter Account 11 | - [Remi Durant](https://twitter.com/remi_durant) - Artist/Alchemist. Explorer of latent space. [linktr.ee](http://linktr.ee/remi_durant) 12 | - [Riley Goodside](https://twitter.com/goodside) - Staff Prompt Engineer @Scale_AI 13 | - [Saboo_Shubham](https://twitter.com/Saboo_Shubham_) - Talking About ML, NLP & Large Language Models 14 | - [Sam Altman](https://twitter.com/sama) - CEO And Founder Of OpenAI 15 | - [TheMoonMidas](https://twitter.com/TheMoonMidas) - AT Tweet News + AI Newsletter @ArtificialGenie 16 | 17 | --- 18 | -------------------------------------------------------------------------------- /readme/ai-other/README.md: -------------------------------------------------------------------------------- 1 | # AI-Other 2 | 3 | ## AI-Other 4 | 5 | **In This Section, You Will Find AI Tools And Resources That Don't Fit Into The Other Categories.** 6 | 7 | * [Fashion](../../ai-mthrfckr/Fashion.md) 8 | * [Gift Ideas](../../ai-mthrfckr/Gift%20Ideas.md) 9 | * [Legal](../../ai-mthrfckr/Legal.md) 10 | * [Real Estate](../../ai-mthrfckr/Real%20Estate.md) 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /readme/ai-other/fashion.md: -------------------------------------------------------------------------------- 1 | # Fashion 2 | 3 | ## Fashion 4 | 5 | * [Botika](https://botika.io/) - Botika Is A Platform For Building And Deploying Conversational AI Models. 6 | * [Cala](https://ca.la/) - Cala Is A Conversational AI Platform That Enables Businesses To Automate Customer Interactions. 7 | * [FashionAdvisorAI](http://www.fashionadvisorai.com) - Fashionadvisor. AI - Ask Questions & Get Answer'S From Fashionadvisor. AI. FashionAdvisor Is An AI Based On GPT3 Which Will Answer All Your Fashion Related Questions Instantly For Free. 8 | * [Visualhound](http://visualhound.com) - Visualhound - Prototype Your Fashion Design Ideas With AI. Visualize Your Product Designs Before Going To Production. Create Realistic-looking Product Images To Feed Your Moodboards And Boost Your Design Process. 9 | 10 | *** 11 | -------------------------------------------------------------------------------- /readme/ai-other/gift-ideas.md: -------------------------------------------------------------------------------- 1 | # Gift Ideas 2 | 3 | ## Gift Ideas 4 | 5 | * [AIchristmascards](http://aichristmascards.com) - Holiday Cards, Reimagined. Personalized AI Art Greetings Cards. 6 | * [AI Holiday Cards](http://aiholiday.cards) - AI Holiday Cards. AI Engine To Create AI Holiday Photorealistic Cards For Couples. 7 | * [CoolGiftIdeas](http://www.coolgiftideas.io) - Cool Gift Ideas - AI-Powered Gift Suggestions 8 | * [Elf Help](http://www.elfhelp.ai) - Elf Help. Need Some Inspo For Your Holiday Gifting? Elf Help Is Your Ultimate Gift-giving Assistant, Offering Creative And Personalized Suggestions For Everyone On Your List. 9 | * [Fabled](http://fabled.ai) - The Ultimate AI Story Generator. Stories Created By You, Powered By AI. With A Single Sentence Fabled.ai Crafts Personal Illustrated Stories, Enriched By Stunning Images. 10 | * [Giftastic AI](http://giftastic.ai) - Giftastic. AI - Perfect Gift For Your Special One. Personalised Gift Ideas For Every Occasion. 11 | * [GiftBot](http://www.getgift.help) - Get Gift Help. Struggling To Figure Out What To Get Someone For The Holidays? GiftBot Asks You Questions To Help Recommend Gift Ideas. 12 | * [Gift Genie](http://www.giftgenie.ai) - Gift Genie AI - Free Personalized Gift Ideas For Christmas, Birthdays, Holidays, Etc. Gift Genie AI Is An AI-powered That Allows You To Find The Perfect Gift In Seconds With AI For Free. Jot Down A Brief Description Of Your Recipient, And Get A List Of Gifts Our AI Genie Believes Will Delight Them. 13 | * [Gifts Genie](https://gen.gifts/) 14 | * [Lovelines](http://lovelines.xyz) - Share Your Love With Custom Keepsakes Made By AI. Create Custom Keepsakes For A Loved One Using AI That Are Optimized For Social Media. AI-generated Poems, Stories, Letters, And Song Lyrics. 15 | * [Santa AI](https://www.santa.artflow.ai/) 16 | * [Suggest Gift](https://suggest.gift/) 17 | * [Text2present](http://text2present.com) - Text2Present. Com - Creative Presents From Busy People. Allows You To Create Creative Customized Presents Using Artificial Intelligence For Your Friends, Family And Acquaintances Without Taking Your Precious Time. Simply Enter A Text Description Of What You Want To Gift And Let Our Artificial Intelligence Do The Rest. 18 | 19 | *** 20 | -------------------------------------------------------------------------------- /readme/ai-other/legal.md: -------------------------------------------------------------------------------- 1 | # Legal 2 | 3 | ## Legal 4 | 5 | * [Activazon](https://activazon.com/) - Activazon Is A Customer Engagement Platform That Leverages AI And Natural Language Processing. 6 | * [Analyzelaw](https://www.analyzelaw.com/) - AnalyzeLaw Is An AI-powered Legal Research Tool. 7 | * [Casetext](https://casetext.com/) - Casetext Is A Legal Research Platform That Provides Access To Case Law, Statutes, And Regulations. 8 | * [Detangle.ai](https://detangle.ai/) - Detangle Is An AI-powered Platform For Automating Contract Management And Analysis. 9 | * [DoNotPay](https://donotpay.com/) - The World'S First Robot Lawyer. Use AI To Make Legal Information Accessible To Everyone. 10 | * [Ferret](https://www.ferret.ai/) - Ferret Is A Search Engine For Legal Information. 11 | * [Harvey](https://harvey.ai/) - Harvey Is An AI-powered Legal Research Tool. 12 | * [Legal Robot](https://legalrobot.com/) - Legal Robot Provides An AI-powered Legal Contract Review Service. 13 | * [PatentPal](http://patentpal.com) - Generative AI For Intellectual Property. Automate Mechanical Writing In Your Patent Applications. 14 | * [Spellbook](https://www.spellbook.legal/) - Draft Contracts 3X Faster With AI. Spellbook Uses GPT-3 To Review And Suggest Language For Your Contracts, Right In Microsoft Word. 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /readme/ai-other/real-estate.md: -------------------------------------------------------------------------------- 1 | # Real Estate 2 | 3 | ## Real Estate 4 | 5 | * [AI Room Planner](https://airoomplanner.com/) 6 | * [CoolAlid](https://coolaiid.com/) 7 | * [GetFloorPlan](https://getfloorplan.com/) 8 | * [InteriorAI](https://interiorai.com/) 9 | * [Maket](https://www.maket.ai/) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-productivity/README.md: -------------------------------------------------------------------------------- 1 | # AI-Productivity 2 | 3 | ## AI-Productivity 4 | 5 | **In This Section, You Will Find AI Tools And Resources To Help You Be More Productive In Your Work And Personal Life.** 6 | 7 | * [Chat](../../ai-mthrfckr/Chat.md) 8 | * [Docs](../../ai-mthrfckr/Docs.md) 9 | * [Email Assistant](../../ai-mthrfckr/Email%20Assistant.md) 10 | * [Productivity](../../ai-mthrfckr/Productivity.md) 11 | * [Sales & Marketing](../../ai-mthrfckr/Sales%20&%20Marketing.md) 12 | * [Summarizer](../../ai-mthrfckr/Summarizer.md) 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /readme/ai-productivity/docs.md: -------------------------------------------------------------------------------- 1 | # Docs 2 | 3 | ## Docs 4 | 5 | * [A Guide To Writing Prompts For Text-to-image AI](https://docs.google.com/document/d/1XUT2G9LmkZataHFzmuOtRXnuWBfhvXDAo8DkS--8tec/edit) - This Is A Google Document That Provides A Guide On Writing Prompts For Text-to-image AI. 6 | * [Disco Diffusion Portrait Study (By @Enviraldesign)](https://docs.google.com/document/d/1Ff8s8CX3xGrVr6AJ94hcvQ\_PYqJ\_mDAXzT3NGb5\_K1w/edit) - A Portrait Study Of Disco Diffusion 7 | * [EZ Charts - Diffusion Parameter Studies](https://docs.google.com/document/d/1ORymHm0Te18qKiHnhcdgGp-WSt8ZkLZvow3raiu2DVU/edit) - This Is A Google Document That Provides Information On Diffusion Parameter Studies In The Context Of EZ Charts. 8 | * [Guide To Jax 2.7 - Google Docs](https://docs.google.com/document/d/11HWN5e57taWdpyZlW5s6gqzrwMsLlmOQivyJncOPPhE/edit) 9 | * \[Hitchhiker's Guide To The Latent Space: Community Notebook Document]\(https://docs.google.com/document/d/1ON4unvrGC2fSEAHMVb4idopPlWmzM0Lx5cxiOXG47k4/edit - A Hitchhiker's Guide To The Latent Space Community Notebook Document 10 | * [How To Train Dance Diffusion AI To Generate Sounds](https://drive.google.com/file/d/1nEFEpK27v0nytNXmmYQb06X\_RI6kKPve/view) - This Is A Google Drive File Which Includes A Guide On How To Train A Dance Diffusion AI To Generate Sounds. 11 | * [MathRock Diffusion Documentation](https://docs.google.com/document/d/1C5wt-q6i1JVb2zGsTCGcZev4NayFKC0p-ejbdZx4AkM/edit) - A Documentation On MathRock Diffusion 12 | * [MRD Cuts Guide](https://docs.google.com/document/d/1oHWoP3i0NFImekinqaaiWXfREkkK\_rbsFMz\_VTWDcRw/edit) - A Guide For MRD Cuts 13 | * [Quick Guide To Deforum V06](https://docs.google.com/document/d/1RrQv7FntzOuLg4ohjRZPVL7iptIyBhwwbcEYEW2OfcI/edit) - This Is A Google Document That Provides A Quick Guide To Deforum V06. 14 | * \[Way Of The TTI Artist]\(https://docs.google.com/document/d/1EvkiHa12ButetruSBr82MJeomHfVRkvczB9-FgqtJ48/mobilebasic - A Guide For TTI Artists 15 | * [Zippy's Disco Diffusion Cheatsheet V0.3](https://docs.google.com/document/d/1l8s7uS2dGqjztYSjPpzlmXLjl5PM3IGkRWI3IiCuK7g/edit) - A Cheatsheet For Zippy's Disco Diffusion 16 | 17 | *** 18 | -------------------------------------------------------------------------------- /readme/ai-productivity/email-assistant.md: -------------------------------------------------------------------------------- 1 | # Email Assistant 2 | 3 | ## Email Assistant 4 | 5 | * [ChatGPT Writer](https://chatgptwriter.ai/) - AI Powered Writing Tool. 6 | * [Creatext](https://www.creatext.ai/) - A Writing Tool That Combines The Power Of AI And Human Creativity. 7 | * [DraftLab](http://draftlab.ai) - An AI-powered Gmail Copilot That Generates High-quality Email Replies For You. 8 | * [Ellie](http://ellieai.com) - Your AI Email Assistant. 9 | * [EmailTriager](http://emailtriager.com) - Email On Autopilot. 10 | * [GETitOUT](https://getitout.io/) - An AI-powered Tool To Help You Manage Your Email And To-do List. 11 | * [HoppyCopy](https://www.hoppycopy.co) - AI-powered Writing And Copywriting Tool. 12 | * [Instantly](https://instantly.ai/) - AI-powered Content Creation And Marketing Platform. 13 | * [Intellimail](https://www.intellimail.xyz/) - Your Personal Email Assistant. 14 | * [Ipso AI](https://ipso.ai/) - AI-powered Writing Platform. 15 | * [Lavender](https://www.lavender.ai/) - An AI-powered Sales Engagement Platform. 16 | * [Luna](https://getluna.dev/) - AI-powered Writing Tool. 17 | * [Magicreach](https://www.magicreach.ai/) - AI-powered Customer Engagement Platform. 18 | * [MateAI](https://www.mateai.io/) - AI-powered Writing Tool. 19 | * [Mentioned](https://www.mentioned.ai/) - AI-powered Marketing Automation Platform. 20 | * [Ortto](https://ortto.com/artificial-intelligence-marketing/) - AI-powered Marketing Automation Platform. 21 | * [Outplayhq](https://outplayhq.com/) - AI-powered Sales Engagement Platform. 22 | * [ParagraphAI](https://paragraphai.com/) - AI-powered Writing And Research Platform. 23 | * [Pipl.ai](https://pipl.ai/) - AI-powered Customer Data Platform. 24 | * [PolitePost](https://politepost.net/) - AI-powered Social Media Scheduling Tool. 25 | * [Postaga](https://postaga.com/) - AI-powered Email Marketing Platform. 26 | * [Quicklines](https://www.quicklines.ai/) - AI-powered Customer Engagement Platform. 27 | * [RapidReply](http://rapidreply.ai) - Rapid Reply - AI Email Assistant. Save 30 Minutes A Day Writing Emails. 28 | * [Recruiting Emails AI By Dover](http://recruitingemails.ai) - Dover - Generate Customized Recruiting Emails 29 | * [Regie](https://www.regie.ai/) - Regie - AI-powered Email Assistant 30 | * [Remail](https://remail.ai/) - Write Emails 10X Faster. Remail Is A Chrome Extension For Gmail That Uses Artificial Intelligence To Draft High-quality Email Replies In Seconds. 31 | * [Reply.io](https://reply.io/sales-email-assistant/) - Reply.io - Sales Email Assistant 32 | * [Robin](https://www.hellorobin.ai/) - Robin - AI Email Assistant 33 | * [Rytr](https://rytr.me) - Rytr - AI-powered Email Assistant 34 | * [SmartWriter](http://www.smartwriter.ai/?via=Beth0) - Generate 1000s Of Personalized Emails That Get You 8x More Replies Within Minutes Using AI 35 | * [SuperReply](http://superreply.co) - Upgrade Your Email Game. The Email Response Hack You've Been Waiting For 36 | * [Warmer.AI](http://warmer.ai) - Warmer.AI - AI Email Writer. Warmer Uses AI Email Personalization To Write Your Email Outreach. 37 | * [WordHero](https://wordhero.co) - WordHero - AI-powered Email Writing Assistance 38 | 39 | *** 40 | -------------------------------------------------------------------------------- /readme/ai-productivity/summarizer.md: -------------------------------------------------------------------------------- 1 | # Summarizer 2 | 3 | ## Summarizer 4 | 5 | * [Bearly](https://bearly.ai/) - An AI-powered Content Analysis And Optimization Tool. 6 | * [ExplainThis](https://explainthis.ai/) - A Natural Language Processing Tool That Helps Users Understand Complex Ideas And Text. 7 | * [Genei](https://www.genei.io/) - An AI-powered Platform That Streamlines Research And Knowledge Discovery. 8 | * [GPT-Prompter](https://gptprompter.com/) - A Tool That Uses AI To Generate Human-like Prompts For Voice And Text-based Applications. 9 | * [Iris.ai](http://iris.ai) - An AI-powered Platform That Helps Researchers And Scientists Discover And Access Relevant Research Articles And Knowledge. 10 | * [Noty.ai](http://noty.ai) - An AI-powered Platform That Automatically Summarizes Business Reports And Documents. 11 | * [Otter AI](https://otter.ai/) - A Platform That Uses AI To Transcribe, Search And Share Voice Conversations. 12 | * [Penelope AI](https://penelope-ai.vercel.app/) - A Platform That Uses AI To Help Users Improve Writing Skills And Productivity. 13 | * [Summari](https://www.summari.com/) - An AI-powered Platform That Automatically Summarizes Articles, Documents, And Websites. 14 | * [Summarize Tech](https://www.summarize.tech/) - A Platform That Uses AI To Summarize And Analyze News Articles, Web Pages And Documents. 15 | * [Summate](https://summate.it/) - A Tool That Uses AI To Summarize And Analyze Text From Websites, Articles And Documents. 16 | * [SummerEyes](https://summereyes.ai/) - An AI-powered Platform That Summarizes And Analyzes Websites, Documents, And Articles. 17 | * [Symbl.ai](http://symbl.ai) - A Platform That Uses AI To Extract Meaning And Insights From Conversations And Calls. 18 | * [TheGist](https://www.thegist.ai/) - An AI-powered Platform That Summarizes And Analyzes News Articles And Websites. 19 | * [TLDR This](https://tldrthis.com/) - A Platform That Uses AI To Summarize And Analyze News Articles And Web Pages. 20 | * [Upword](https://www.upword.ai/) - An AI-powered Platform That Helps Users Improve Their Writing Skills And Productivity. 21 | * [WordfixerBot](https://www.wordfixerbot.com/) - An AI-powered Platform That Helps Users Improve Their Writing Skills And Productivity. 22 | * [Wordtune](https://www.wordtune.com/) - A Platform That Uses AI To Help Users Improve Writing Skills And Productivity. 23 | * [Writely](https://www.writelyai.com/) - An AI-powered Platform That Helps Users Improve Writing Skills And Productivity. 24 | 25 | *** 26 | -------------------------------------------------------------------------------- /readme/ai-prompts.md: -------------------------------------------------------------------------------- 1 | # AI-Prompts 2 | 3 | ## AI-Prompts 4 | 5 | - [Dall-E 2 Prompt Optimizer](https://mostrecommendedbooks.com/dalle) - Learn The Art (And Science) Of Prompt Engineering. 6 | - [Dallelist](https://dallelist.com/) - Dall-E 2 Prompt Helper 7 | - [DICTION·AI·RI](https://dictionairi.notion.site/dictionairi/DICTION-AI-RI-2ec3dd6dc2184a45a9b6b4b8a021f0a6) - Learn How-to DALL·E With DICTION·AI·RI 100’s Of DALL·E Based Art Styles, Tips & Tricks, Prompt Presets And More! 8 | - [Effective GPT](https://effectivegpt.com/) - Get Accurate ChatGPT Prompts 9 | - [Everyprompt](https://everyprompt.com/) - A Playground For GPT-3] 10 | - [Eye For Al](https://eyeforai.xyz/) - Prompt Builder / Editor 11 | - [FlowGPT](https://flowgpt.com/) - Amplify Your Workflow With Best Prompts 12 | - [Img2prompt](https://replicate.com/methexis-inc/img2prompt) - Get An Approximate Text Prompt, With Style, Matching An Image. (Optimized For Stable-Diffusion (Clip ViT-L/14) 13 | - [Jrnylist](https://jrnylist.com/) - Midjourney Prompt Helper 14 | - [KREA](https://krea.ai/) - Create Collections Of Prompts 15 | - [Latentspace](https://latentspace.dev/) - Exploring Stable Diffusion Latent Space 16 | - [Learn Prompting](https://learnprompting.org/) - Learn Prompting 17 | - [Metaphor](https://metaphor.systems/) - Search The Internet With Large Language Models 18 | - [NoPrompt GPT](https://nopromptgpt.com/) - Pre-Prompted ChatGPT For Frequent Users. 19 | - [Openart](https://aiinfinity.blogspot.com/p/promptsopenart.html) - Search 10M+ Of Prompts, And Generate AI Art Via Stable Diffusion, DALL·E 2. 20 | - [PromptBase](https://promptbase.com/) - Prompt Marketplace: DALL·E, Midjourney, Stable Diffusion & GPT-3 21 | - [Prompt Box](https://promptbox.ai/) - Organize And Save Your AI Prompts 22 | - [PromptCircle](https://promptcircle.xyz/) - Create, Share And Discover The Best Prompts 23 | - [PromptDB AI](https://promptdb.ai/) - Marketplace For Prompts 24 | - [Prompter](https://prompter.so/) - AI Prompt Sharing Community Where People Can Share ChatGPT, Midjourney And Other AI Prompts. 25 | - [PromptHero](https://prompthero.com/) - Prompter Is An AI Prompt Sharing Community Where People Can Share ChatGPT, Midjourney And Other AI Prompts. Discover Prompts That Rock! 26 | - [Promptist](https://aiinfinity.blogspot.com/p/promptspromptist.html) - Promptist Is A Prompt Interface For Stable Diffusion V1-4 That Optimizes User Input Into Model-preferred Prompts. 27 | - [PromptLayer](https://promptlayer.com/) - The First Platform Built For Prompt Engineers 28 | - [Prompt Lovers](https://trello.com/b/4BPkSY1w/100-ai-prompts-resources-prompt-lovers?ref=producthunt) - 100+ AI Prompts & Resources 29 | - [PromptoMANIA](https://promptomania.com/generic-prompt-builder/) - Prompt Builder For AI Art Generators 30 | - [PromtBox](https://aiinfinity.blogspot.com/p/promptspromtbox.html) - - Beautifully Store Your Prompts! 31 | - [Public Prompts](https://aiinfinity.blogspot.com/p/promptspublic-prompts.html) - Collection Of ‎ High Quality/Free/Public Prompts! 32 | - [Pyttipanna](https://pyttipanna.xyz/) - An Interface For Pytti 5. It Allows You To Structure, Narrate And Experiment With Prompts For Video Creation. Pytti Is A Framework For Creating And Rendering Videos Using Machine Learning Models. 33 | - [Tulpa Prompter](https://dreamingtulpa.com/tools/prompter) - Tool To Create [Deforum Stable Diffusion](https://deforum.github.io/) Animations 34 | 35 | --- 36 | -------------------------------------------------------------------------------- /readme/ai-resources/README.md: -------------------------------------------------------------------------------- 1 | # AI-Resources 2 | 3 | ## AI-Resources 4 | 5 | *** 6 | 7 | [Pharampyschaotic](../../ai-mthrfckr/Pharampyschaotic.md)\ 8 | [Reading List](../../ai-mthrfckr/Reading%20List.md)\ 9 | [Resources](../../ai-mthrfckr/Resources.md) 10 | 11 | *** 12 | -------------------------------------------------------------------------------- /readme/ai-resources/pharampyschaotic.md: -------------------------------------------------------------------------------- 1 | # Pharampyschaotic 2 | 3 | ## Pharampyschaotic 4 | 5 | **Note, A Lot Of Resources On This Repo Came From Pharampyschaotic's Website, Amazing Stuff! Follow Pharampyschaotic On** [**Instagram**](https://www.instagram.com/pharmapsychotic/) **** [**Twitter**](https://twitter.com/pharmapsychotic) **** [**Reddit**](https://www.reddit.com/user/pharmapsychosis) 6 | 7 | * [Art Of Pharmapsychotic](https://pharmapsychotic.com/) 8 | * [AI Generative Art Tools](https://pharmapsychotic.com/tools.html#sec-5ed6) 9 | * [Pharmapsychotic's Nfts](https://pharmapsychotic.com/nfts.html) 10 | * [Training](https://pharmapsychotic.com/training.html) 11 | 12 | *** 13 | -------------------------------------------------------------------------------- /readme/ai-resources/resources.md: -------------------------------------------------------------------------------- 1 | # Resources 2 | 3 | ## Resources 4 | 5 | * [AGI Labs](https://agilabs.org/ai-helpers-home) - Choose From Hundreds Of Our Highly Trained AI Helpers To Generate Customized High-quality AI Writings For Study, Work, And Life Applications, Or Get Human Services Besides Just AI! 6 | * [AI Art Apps](https://aiartapps.com/) - AI Art Resources, Tools & Inspiration For Designers And Prompt Engineers. 7 | * [AI2045](https://ai2045.com/) - A Platform For Discussing The Future Of AI. 8 | * [Fast AI](https://fast.ai/) - Fastai Is A Deep Learning Library Which Provides Practitioners With High-level Components That Can Quickly And Easily Provide State-of-the-art Results In Standard Deep Learning 9 | * [Phraser](https://phraser.tech/) - Phraser Is An App That Helps You Create Images Using Generative AI (Midjourney, Stable Diffusion, And DALLE 2) 10 | * [The AI Times](https://aitimespage.com/ai) - AI News 11 | -------------------------------------------------------------------------------- /readme/ai-tools/README.md: -------------------------------------------------------------------------------- 1 | # AI-Tools 2 | 3 | ## AI-Tools 4 | 5 | *** 6 | 7 | **In This Section, You Will Find A Collection Of AI Tools And Utilities For A Variety Of Use Cases.** 8 | 9 | * [Automation](../../ai-mthrfckr/Automation.md) 10 | * [Templates](../../ai-mthrfckr/Templates.md) 11 | * [Translation & Transcript](../../ai-mthrfckr/Translation%20&%20Transcript.md) 12 | 13 | *** 14 | -------------------------------------------------------------------------------- /readme/ai-tools/automation.md: -------------------------------------------------------------------------------- 1 | # Automation 2 | 3 | ## Automation 4 | 5 | * [Bardeen](https://www.bardeen.ai/ai) - AI Meets Automations. Coming In 2023–Bardeen Is Introducing Breakthrough AI To Automate Manual Workflows, Save You Time, And Empower Your Creativity. 6 | * [Hexowatch](http://hexact.pxf.io/) - Beyond Availability And Prices, 3Rd Party Websites As A Data Source, Visual Website Monitoring, Competitor Tracking. Hexowatch Is Your AI Sidekick To Monitor Any Website For Visual, Content, Source Code, Technology, Availability, Or Price Changes. 7 | * [Mem](https://get.mem.ai/) - The Self-Organizing Workspace. Mem Is The World's First AI-powered Workspace That's Personalized To You. Amplify Your Creativity, Automate The Mundane, And Stay Organized Automatically. 8 | 9 | *** 10 | -------------------------------------------------------------------------------- /readme/ai-tools/templates.md: -------------------------------------------------------------------------------- 1 | # Templates 2 | 3 | ## Templates 4 | 5 | * [Text-to-color](https://text-to-color.vercel.app/) - Very Simple App That Use OpenAI API To Change Test Into Color 6 | * [Vercel AI Chat GPT-3 Example](https://vercel.com/templates/next.js/ai-gpt3-chatbot) - Template For Next.js, OpenAI Simple Chat GPT-3 Example 7 | * [VercelAI](https://vercel.ai) - Templates For Building Artificial Intelligence (AI) Applications (Fullstack, Front-end Focus) 8 | 9 | *** 10 | -------------------------------------------------------------------------------- /readme/ai-tools/translation-and-transcript.md: -------------------------------------------------------------------------------- 1 | # Translation & Transcript 2 | 3 | ## Translation & Transcript 4 | 5 | * [AnyPod](https://www.anypod.ai/) - An AI-powered Audio Content Platform 6 | * [AssembleAI](https://www.assemblyai.com/) - An API For Speech-to-text Transcription 7 | * [Ava](http://www.ava.me) - Professional & AI-Based Captions For Deaf & Hoh - Ava 8 | * [Contentfries](https://www.contentfries.com/) - An AI-powered Content Creation Platform 9 | * [Context](https://addcontext.xyz/) - An AI-powered Text Enrichment Platform 10 | * [Deciphr AI](http://www.deciphr.ai) - Deciphr AI. Powered By Deep AI, Deciphr Timestamps And Summarizes Your Entire Podcast Transcript For You. In Less Time Than It Takes To Make Coffee. 11 | * [DeepL](http://www.deepl.com) - Deepl Translate The World'S Most Accurate Translator. 12 | * [Fireflies.ai](https://fireflies.ai/) - An AI-powered Meeting Assistant And Transcription Platform 13 | * [Free Subtitle AI](https://freesubtitles.ai/) - An AI-powered Video Subtitle Creation Platform 14 | * [Graphic AI](http://www.stork.ai) - AI Assisted Work Collaboration Platform For Teams. Stork Helps Teams Improve Communications And Productivity. It Is A Business Messenger For Hybrid & Remote Teams That Records And Transcribes All Meetings And Calls Automatically. Made For Asynchronous Post Pandemic World And Assisted By Artificial Intelligence. 15 | * [Noty.ai](https://noty.ai/) - An AI-powered Platform For Voice And Text Messaging 16 | * [Peech](https://www.peech-ai.com/) - An AI-powered Voice And Text Messaging Platform 17 | * [Rephrasely](http://rephrasely.com) - The Free Rephrase Generator For All Languages. Rephrasely Uses State-of-the-art AI To Produce Variations Of Your Text In More Than 100+ Languages For Each Of The Eighteen (12 Free And 6 Premium) - Styles That We Offer. By Doing This, We Are Able To Offer More Value And Variety Than Any Other Service. 18 | * [Rythmex](https://rythmex.com/) - Convert Audio To Text With Rythmex Converter. Transcribe Audio To Text Easily, Quickly, And Effectively. 19 | * [Scribebuddy](http://secure.scribebuddy.com) - Automatically Transcribe Any Audio, Video, Zoom Call, Google Meet, Podcast, Live Speech & More In Minutes. 20 | * [Steno](https://steno.ai/) - An AI-powered Platform For Note-taking And Transcription 21 | * [Supertranslate](https://www.supertranslate.ai/) - An AI-powered Real-time Voice And Text Translation Platform 22 | * [Supertranslate](http://www.supertranslate.ai) - Supertranslate - Add Subtitles To Videos Automatically. Powered By OpenAI's Whisper, The World's Most Accurate Speech-to-text Engine. 23 | * [Taption](http://www.taption.com) - Automatically Generate Transcript, Translation And Subtitles - Taption 24 | * [TranslateVideo](http://www.translate.video) - Translate. Video 25 | * [Type Studio](https://www.typestudio.co/tool/video-to-text/) - An AI-powered Video-to-text Transcribing Tool 26 | * [Voicetapp](http://voicetapp.com) - Voicetapp - Speech To Text Transcription. Get Accurate Transcriptions For Your AUDIO & VIDEO With The Latest Speech Rocognition Technology. 27 | * [Whisper Memos](https://whispermemos.com/) - A Voice Memos App Using AI To Transcribe Speech-to-text 28 | 29 | *** 30 | -------------------------------------------------------------------------------- /readme/ai-video/README.md: -------------------------------------------------------------------------------- 1 | # AI-Video 2 | 3 | ## AI-Video 4 | 5 | **In This Section, You Will Find All Things Related To Video Processing Using AI Technology.** 6 | 7 | [Video](../../ai-mthrfckr/Video.md)\ 8 | [Video Animation](../../ai-mthrfckr/Video%20Animation.md)\ 9 | [Video Channels](../../ai-mthrfckr/Video%20Channels.md)\ 10 | [Video Editing](../../ai-mthrfckr/Video%20Editing.md)\ 11 | [Video Generator](../../ai-mthrfckr/Video%20Generator.md)\ 12 | [Video Interpolation](../../ai-mthrfckr/Video%20Interpolation.md)\ 13 | [Video Personalized](../../ai-mthrfckr/Video%20Personalized.md) 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /readme/ai-video/video-animation.md: -------------------------------------------------------------------------------- 1 | # Video Animation 2 | 3 | ## Video Animation 4 | 5 | * [AnimationPreview](https://colab.research.google.com/github/pharmapsychotic/ai-notebooks/blob/main/pharmapsychotic\_AnimationPreview.ipynb) By @Pharmapsychotic - Quickly Preview Deforum Camera Animations 6 | * [Audio-reactive-video](https://colab.research.google.com/github/vsewall/too\_motion-colab-notebooks/blob/main/audio\_reactive\_video\_v1\_1.ipynb) - By @Vsewall2motion, Skip Video Frames Based On Volume 7 | * [Audio To Keyframe String Generator For AI Animation Notebooks](https://www.chigozie.co.uk/audio-keyframe-generator/) 8 | * [DALL-E 2.5D Depth Warped Zoom](https://colab.research.google.com/drive/1UxaormHsBgqQN8hM3AnmR87k-sweqIBB?usp=sharing) By @DeKxi 9 | * [FrameSync.xyz](https://www.framesync.xyz/) - Automate Deforum Keyframe Animations With Waveforms 10 | * [Keyframe String Generator](https://keyframe-string-generator.glitch.me/) For AI Animation Notebooks 11 | * [PyDub Audio To Disco Diffusion Keyframe Generator V0.1](https://colab.research.google.com/gist/austinhquinn/52c9a845a3ede3541bf3890efda276e0/pydub-audio-to-disco-diffusion-keyframe-generator-v0-1.ipynb) By Austinhquinn 12 | * [Tulpa Prompter](https://dreamingtulpa.com/tools/prompter) By @Dreamingtulpa - Helper To Build Animation Prompts ([Tweet](https://twitter.com/dreamingtulpa/status/1585368484212772864?s=20\&t=Z\_rnmEJ6W22sluwbjewvIg)) 13 | * [Wiggle Animation Key Frame Generator](https://colab.research.google.com/github/zippy731/wiggle/blob/main/Wiggle\_Standalone\_5\_0.ipynb) By @Zippy731 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /readme/ai-video/video-channels.md: -------------------------------------------------------------------------------- 1 | # Video Channels 2 | 3 | ## Video Channels 4 | 5 | * [@DrAlanDThompson](https://www.youtube.com/@DrAlanDThompson) - AI, News, Reports, Models 6 | * [@Peterdiamandis](https://www.youtube.com/@peterdiamandis) - AI, Longevity, Singluarity 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /readme/ai-video/video-editing.md: -------------------------------------------------------------------------------- 1 | # Video Editing 2 | 3 | ## Video Editing 4 | 5 | * [Beatoven.ai](https://www.beatoven.ai/) - Artificial Intelligence Powered Beat Making Software 6 | * [Colourlab](https://www.colourlab.ai/) - An AI Powered Color Grading Tool 7 | * [Contentfries](https://www.contentfries.com/) - AI-powered Content Creation Platform 8 | * [Dubverse](https://dubverse.ai/) - An AI Voice Actor That Generates Voiceovers For Animations And Videos 9 | * [Gling](https://www.gling.ai/) - An AI-powered Music Video Creation Platform 10 | * [Munch](https://www.getmunch.com/) - A Conversational AI Platform For Customer Service 11 | * [Papercup](https://www.papercup.com/) - A Conversational AI Platform For Customer Service 12 | * [Perfectly Clear Video](https://eyeq.photos/automatic-ai-video-enhancement/) - A Video Enhancement Tool Powered By AI 13 | * [Pictory](https://pictory.ai/) - An AI-powered Picture Optimization Tool 14 | * [Runwayml](https://runwayml.com/) - An ML Platform For Creators And Developers To Experiment With And Build AI Models 15 | * [Shuffll](https://shuffll.com/) - An AI-powered Video Editor 16 | * [Topaz Video AI](https://www.topazlabs.com/topaz-video-ai) - AI-powered Video Enhancement Tool 17 | * [Type Studio](https://www.typestudio.co/tool/video-to-text/) - An AI-powered Video-to-text Transcription Tool 18 | * [Unscreen.com](https://www.unscreen.com/) - An AI-powered Video Background Remover 19 | * [Vidyo.ai](https://vidyo.ai/) - An AI-powered Video Editing And Enhancement Platform 20 | 21 | *** 22 | -------------------------------------------------------------------------------- /readme/ai-video/video-generator.md: -------------------------------------------------------------------------------- 1 | # Video Generator 2 | 3 | ## Video Generator 4 | 5 | * [Astria](https://www.astria.ai/) - Astria Is An AI Powered Storytelling Platform For Books. 6 | * [Audiolabs](https://www.audiolabs.io/) - Audiolabs Provides AI Powered Audio Production Solutions. 7 | * [Colossyan](https://www.colossyan.com/) - Colossyan Is An AI-powered 3D Rendering Platform For Architects And Designers. 8 | * [Creative Reality Studio (D-ID)](https://studio.d-id.com/) - Creative Reality Studio (D-ID) Provides AI-powered Face And Body De-identification Solutions. 9 | * [Designs AI](https://designs.ai/) - Designs AI Is An AI-powered Design Platform That Enables Users To Create Custom Graphics And Designs. 10 | * [FILM](https://replicate.com/google-research/frame-interpolation) - FILM Is A Research Project From Google That Provides AI-powered Frame Interpolation For Videos. 11 | * [Fliki](https://fliki.ai) - Fliki Is An AI-powered Knowledge Platform That Provides Users With Personalized Recommendations For Books, Movies, And TV Shows. 12 | * [Hourone](https://hourone.ai/) - Hourone Is An AI-powered HR Platform That Helps Businesses Streamline Their HR Processes. 13 | * [InVideo](https://invideo.io/) - InVideo Is An AI-powered Video Creation Platform That Enables Users To Create Professional-quality Videos With Ease. 14 | * [LiveReacting AI](https://www.livereacting.com/ai-host-for-live-stream) - LiveReacting AI Is An AI-powered Virtual Host For Live Streams. 15 | * [Movio](https://www.movio.la/) - Movio Is An AI-powered Platform For Movie Marketers That Provides Data-driven Insights For Movie Campaigns. 16 | * [Opus](https://opus.ai/) - Opus Is An AI-powered Platform That Provides Users With Personalized Insights Into Their Spending Patterns. 17 | * [Peech](https://www.peech-ai.com/) - Peech Is An AI-powered Public Speaking Platform That Provides Users With Personalized Feedback On Their Speeches. 18 | * [Pollinations](https://pollinations.ai/) - Pollinations Is An AI-powered Platform That Connects Farmers With Local Beekeepers To Help Increase Crop Yields. 19 | * [Pyttipanna](https://pyttipanna.xyz/) - Pyttipanna Is An AI-powered Recipe Platform That Provides Users With Personalized Meal Recommendations. 20 | * [Shuffll](https://shuffll.com/) - Shuffll Is An AI-powered Platform That Provides Users With Personalized Recommendations For Music, Podcasts, And More. 21 | * [Steve AI](https://www.steve.ai/) - Steve AI Is An AI-powered Personal Assistant That Helps Users Streamline Their Workflow And Stay Organized. 22 | * [Synthesia](https://www.synthesia.io/) - Synthesia Is An AI-powered Music Platform That Provides Users With Personalized Music Lessons And Practice Exercises. 23 | * [Waymark](https://waymark.com/) - Waymark Is An AI-powered Navigation Platform For Drivers That Provides Real-time Traffic Updates And Navigation Assistance. 24 | * [Wonder Dynamics](https://www.wonderdynamics.com/) - Wonder Dynamics Is An AI-powered Platform That Provides Users With Personalized Feedback And Recommendations For Their Sleep Patterns. 25 | * [WowTo](https://wowto.ai/) - A Human-like AI Video Host For Live Streams. 26 | * [Xpression Camera](https://xpressioncamera.com/) - An AI-powered Virtual Camera For Video Conferencing. 27 | 28 | *** 29 | -------------------------------------------------------------------------------- /readme/ai-video/video-interpolation.md: -------------------------------------------------------------------------------- 1 | # Video Interpolation 2 | 3 | ## Video Interpolation 4 | 5 | * [3D Ken Burns Effect From Single Image](https://colab.research.google.com/drive/1hxx4iSuAOyeI2gCL54vQkpEuBVrIv1hY) - Animated Video From 2D Image 6 | * [3D Photo Inpainting](https://colab.research.google.com/github/fzantalis/colab\_collection/blob/master/3D\_Photo\_Inpainting.ipynb) - Cool 3D Effects For 2D Images 7 | * [Animating Pictures With Eulerian Motion Fields](https://eulerian.cs.washington.edu/) - Code Not Out Yet, Looks Like It'll Be Awesome 8 | * [AnimationKit AI](https://colab.research.google.com/github/sadnow/AnimationKit-AI\_Upscaling-Interpolation\_RIFE-RealESRGAN/blob/main/AnimationKit\_Rife\_RealESRGAN\_Upscaling\_Interpolation.ipynb) - Video Upscaling And Interpolation Tool <- Great 9 | * [DAIN Colab](https://colab.research.google.com/github/baowenbo/DAIN/blob/master/Colab\_DAIN.ipynb) - Depth Aware Interpolation 10 | * [EbSynth](https://ebsynth.com/) - Stylize Video By Giving It AI Or Hand Painted Key Frames From Video 11 | * [ESRGAN 4 Video](https://colab.research.google.com/github/MSFTserver/AI-Colab-Notebooks/blob/main/ESRGAN\_4\_Video.ipynb) - Increase Resolution Of Video With ESRGAN 12 | * [FILM Colab](https://colab.research.google.com/drive/1tbbbnQge0yb0LmnWNchEKNhjtBNC6jX-) - By @KyrickYoung Has Pause, Loops, Reverse <- My Fave FILM 13 | * [FILM: Frame Interpolation For Large Motion](https://github.com/google-research/frame-interpolation) - ([Replicate Link](https://replicate.com/google-research/frame-interpolation)) - Smooth Interpolation/morphing 14 | * [Flowframes](https://nmkd.itch.io/flowframes) - Free Windows Tool With Patreon Option, Uses RIFE And Other Models 15 | * [PyTTI-Tools: FILM](https://colab.research.google.com/github/pytti-tools/frame-interpolation/blob/main/PyTTI\_Tools\_FiLM-colab.ipynb) - @DigThatData 'S Version Of FILM For Video Frames 16 | * [RIFE](https://colab.research.google.com/github/HeylonNHP/RIFE-Colab/blob/main/RIFE\_Colab.ipynb) - Smooth Interpolation Of Video To Increase Frame Rate 17 | * [Sequence Frame Interpolation](https://colab.research.google.com/drive/1VA3Mw2Cr3FoChBE7kQlqbS2W2z8DCdBB?usp=sharing) - Batch Version Of FILM 18 | * [Super Slomo](https://colab.research.google.com/github/tugstugi/dl-colab-notebooks/blob/master/notebooks/SuperSloMo.ipynb) - Another Way To Increase Frame Rate Of Video 19 | * [Video Art And Styling Tools](https://colab.research.google.com/drive/1Y3a76IS\_dqqVqjVGuIFPu91dCUmASkB2) - By @Coskaiy (Style Transfer, Interpolation, Superres, And More) 20 | * [Video Enhance AI](https://www.topazlabs.com/video-enhance-ai/ref/1354/) - By Topaz Labs - Commercial Upscaling And Frame Interpolation <- Excellent 21 | 22 | *** 23 | -------------------------------------------------------------------------------- /readme/ai-video/video-personalized.md: -------------------------------------------------------------------------------- 1 | # Video Personalized 2 | 3 | ## Video Personalized 4 | 5 | * [Bhuman](https://www.bhuman.ai/) - An AI Platform That Helps Brands Build, Scale, And Optimize Their Sales, Customer Service, And Marketing. 6 | * [Colossyan](https://www.colossyan.com/) - An AI-powered Platform For Creating And Sharing Interactive 3D Content. 7 | * [InVideo](https://invideo.io/) - An AI-powered Video Creation Platform That Enables Businesses To Produce High-quality Video Content. 8 | * [Maverick](https://www.trymaverick.com/) - An AI-powered Platform That Helps Companies Personalize And Optimize Their Sales And Marketing Efforts. 9 | * [Rephrase](https://www.rephrase.ai/) - An AI Platform That Helps Businesses And Marketers Improve Their Written Content. 10 | * [Tavus](https://www.tavus.io/) - An AI-powered Platform That Helps Businesses Optimize Their Video Production And Distribution. 11 | * [Vidyo](https://vidyo.ai/) - An AI-powered Video Conferencing Solution. 12 | * [Windsor](https://windsor.io/) - An AI-powered Platform That Helps Businesses Automate Their Sales And Marketing Efforts. 13 | 14 | *** 15 | -------------------------------------------------------------------------------- /readme/ai-writing/README.md: -------------------------------------------------------------------------------- 1 | # AI-Writing 2 | 3 | ## AI-Writing 4 | 5 | **In This Section, You Will Find All Things Related To Writing And Language Processing Using AI Technology.** 6 | 7 | [Assistant](assistant.md)\ 8 | [Copywriting](../../ai-mthrfckr/Copywriting.md)\ 9 | [General](../../ai-mthrfckr/General.md)\ 10 | [Paraphraser](../../ai-mthrfckr/Paraphraser.md)\ 11 | [Story Teller](../../ai-mthrfckr/Story%20Teller.md)\ 12 | [Summarizing](../../ai-mthrfckr/Summarizing.md)\ 13 | [Writing](../../ai-mthrfckr/Writing.md) 14 | 15 | *** 16 | -------------------------------------------------------------------------------- /readme/ai-writing/paraphraser.md: -------------------------------------------------------------------------------- 1 | # Paraphraser 2 | 3 | ## Paraphraser 4 | 5 | * [Bearly](https://bearly.ai/) - An AI-powered Text Editor That Can Help You Write Faster And Better. 6 | * [Language Tool](https://languagetool.org/) - A Grammar And Spelling Checker That Supports Multiple Languages. 7 | * [LuciaAI](https://luciaai.com/) - A Language AI Platform That Helps Users Write Better By Using Machine Learning Algorithms. 8 | * [Paraphraser](https://paraphrasetool.com/) - A Website That Provides A Tool For Rephrasing And Summarizing Text. 9 | * [Penelope AI](https://penelope-ai.vercel.app/) - An AI-powered Writing Assistant That Can Help Improve Your Writing Style And Suggest Ideas For Content. 10 | * [Quillbot Paraphraser](https://try.quillbot.com/futurepedia) - A Tool That Can Help You Rephrase Your Text While Maintaining Its Original Meaning. 11 | * [Rephrasely](https://rephrasely.com/) - An AI-powered Tool That Helps Users Rephrase Their Text While Maintaining The Original Meaning. 12 | * [WordAI](https://wordai.com/) - A Tool That Uses AI Algorithms To Rephrase And Spin Text. 13 | * [WordfixerBot](https://www.wordfixerbot.com/) - A Free Grammar And Spelling Checker. 14 | * [Writely](https://www.writelyai.com/) - An AI-powered Writing Assistant That Helps Users Improve Their Writing Style And Suggest Ideas For Content. 15 | 16 | *** 17 | -------------------------------------------------------------------------------- /readme/ai-writing/story-teller.md: -------------------------------------------------------------------------------- 1 | # Story Teller 2 | 3 | ## Story Teller 4 | 5 | * [Artflow AI](https://artflow.ai/) - A Digital Sketchbook For Android. 6 | * [BedtimeStory AI](https://www.bedtimestory.ai/) - AI-powered Bedtime Stories For Children. 7 | * [EndlessVN](https://endlessvn.io/) - A Website To Play Visual Novel Games Created By Users. 8 | * [Fabled](https://fabled.ai/) - A Natural Language Platform That Generates Stories. 9 | * [Neural Canvas](https://neuralcanvas.io/) - A Platform To Create Unique Artwork Using AI. 10 | * [NovelAI](https://novelai.net/) - AI-powered Writing Assistant For Novelists. 11 | * [Once Upon A Bot](https://onceuponabot.com/) - A Conversational Writing Tool For Generating Story Ideas. 12 | * [Scene One](https://sceneone.app/) - An AI-powered Screenwriting Tool. 13 | * [StoriesForKids](https://www.storiesforkids.ai/) - AI-generated Bedtime Stories For Children. 14 | * [Story Path](https://storypath.app/) - An AI-powered Tool For Generating Story Ideas. 15 | * [StoryWizard](https://www.storywizard.ai/) - An AI-powered Writing Assistant For Storytellers. 16 | * [Subtxt](https://subtxt.app/) - An AI-powered Writing Assistant For Screenwriters. 17 | * [Tome](https://beta.tome.app/) - An AI-powered Writing Tool To Help Authors With Their Writing Process. 18 | * [What On Earth?](https://www.whatonearth.xyz/) - A Fun And Educational Platform To Learn About Our Planet. 19 | 20 | *** 21 | -------------------------------------------------------------------------------- /readme/ai-writing/summarizing.md: -------------------------------------------------------------------------------- 1 | # Summarizing 2 | 3 | ## Summarizing 4 | 5 | * [TLDR This](http://tldrthis.com) - Article Summarizer & Online Text Summarizing Tool. This Helps You Summarize Any Piece Of Text Into Concise, Easy To Digest Content So You Can Free Yourself From Information Overload. 6 | -------------------------------------------------------------------------------- /readme/ai-writing/writing.md: -------------------------------------------------------------------------------- 1 | # Writing 2 | 3 | ## Writing 4 | 5 | * [AI Pickup Lines](https://www.aipickuplines.com/) - A Website That Generates Pickup Lines Using AI. 6 | * [Anyword](https://anyword.com/) - A Platform For Natural Language Generation. 7 | * [Bertha.ai](https://bertha.ai/) - An AI-powered Research Platform. 8 | * [Blog Idea Generator](https://www.usetopic.com/blog-idea-generator) - A Tool To Generate Blog Ideas. 9 | * [Compose AI](https://www.compose.ai/) - A Platform That Uses AI To Generate Content. 10 | * [Content Lake](https://www.contentlake.com/) - An AI-powered Content Creation Platform. 11 | * [Content Villain](https://contentvillain.com/) - An AI-powered Content Generation Platform. 12 | * [CopyAI](https://app.copy.ai) - An AI-powered Copywriting Tool. 13 | * [CopyCreator](https://copycreator.com/) - An AI-powered Copywriting Platform. 14 | * [CopyScouts](https://copyscouts.com/) - An AI-powered Copywriting Assistant. 15 | * [Copysmith](https://copysmith.ai/) - AI-powered Copywriting Tool For Businesses. 16 | * [Creatext](https://www.creatext.ai/) - An AI-powered Content Creation Tool. 17 | * [EleutherAI](https://6b.eleuther.ai/) - A Platform For Natural Language Understanding And Generation. 18 | * [Fabled.ai](https://fabled.ai/welcome) - A Natural Language Platform That Generates Stories. 19 | * [Frase](https://www.frase.io/) - An AI-powered Writing And Research Tool. 20 | * [Free AI Writer](https://simplified.com/ai-writer/) - A Free AI-powered Writing Tool. 21 | * [Headlime](https://headlime.com/features/ai-copywriter) - An AI-powered Copywriting Tool For Marketers. 22 | * [HyperWrite](https://hyperwriteai.com/) - AI Copywriting Tool To Create High-quality Copy. 23 | * [Hypotenuse AI](https://www.hypotenuse.ai/) - A Platform For AI Writing That Helps You In Generating Text. 24 | * [Jasper](https://www.jasper.ai/) - AI Writing Assistant 25 | * [Jenni AI](https://jenni.ai/) - AI-powered Writing Assistant 26 | * [Lex](https://lex.page/) - An AI Copywriting Platform For Businesses 27 | * [Mark Copy](https://www.markcopy.ai/) - AI-powered Copywriting Tool That Helps To Create Engaging Content. 28 | * [Moonbeam](https://www.gomoonbeam.com/) - An AI-powered Writing Assistant 29 | * [NovelAI](https://novelai.net/) - AI Writing Tool To Help You Write Faster And More Effectively. 30 | * [Peppertype.ai](https://www.peppertype.ai/) - An AI Writing Assistant To Write Website Copy. 31 | * [Rytr](https://rytr.me/) - AI-powered Writing Assistant To Help Improve Writing 32 | * [Semantic AI](https://semanticai.app/) - An AI-powered Content Generation Tool. 33 | * [Sincode](https://www.sincode.ai/) - An AI-powered Writing Tool 34 | * [Subtxt](https://subtxt.app/) - An AI Writing Tool That Helps Improve Writing Productivity 35 | * [Sudowrite](https://www.sudowrite.com/) - AI Writing Assistant 36 | * [Summari](https://summari.com/) - AI-powered Content Creation Tool 37 | * [TOME](https://beta.tome.app/) - An AI Writing Assistant 38 | * [Tools](https://app.inkforall.com/tools) - AI-powered Writing And Copywriting Tools 39 | * [TypeDroid](https://typedroid.com/) - AI-powered Writing Assistant 40 | * [Typewise](https://www.typewise.app/desktop) - AI Writing Tool That Helps To Write Better, Faster And More Efficiently. 41 | * [Wordtune](https://www.wordtune.com/) - An AI Writing Tool That Provides Suggestions To Improve Writing 42 | * [Write With LAIKA](https://www.writewithlaika.com/) - AI Writing Assistant To Help Improve Writing Productivity. 43 | 44 | *** 45 | -------------------------------------------------------------------------------- /readme/april/2023-04-15.md: -------------------------------------------------------------------------------- 1 | # 2023-04-15 2 | 3 | ### 2023-04-15 4 | 5 | * [AI Code Mentor](https://code-mentor.ai/) - An AI-powered coding assistant that helps developers write code more efficiently. 6 | * [AirOps](https://www.airops.com/) - Copywriting at Scale. Create personalized emails, product descriptions or SEO content. 7 | * [AIZONIX](https://aizonix.com/) - A platform for AI-driven data analysis and insights, helping businesses improve decision-making. 8 | * [Code Translator](https://ai-code-translator.vercel.app/) - Translate code between two different coding languages. 9 | * [easyMessageAI](https://easymessage.ai/ai-generated-messages) - A tool that generates AI-crafted messages to improve engagement and conversions. 10 | * [FindMyAITool](https://findmyaitool.com/) - A search engine for AI tools, making it easier to discover the right AI solutions for your needs. 11 | * [GPT Lab](https://gptlab.streamlit.app/) - An interactive platform that enables users to experiment with GPT models and generate text. 12 | * [Iterate.World](https://iterate.world/) - A platform for building and deploying AI models, providing an easy-to-use interface for rapid development. 13 | * [JackChat](https://app.jackchat.ai/) - A chatbot platform for creating and deploying AI-powered chatbots for businesses and personal use. 14 | * [SD Toolset](https://sdtools.org/) - A comprehensive collection of software development tools, libraries, and resources to assist developers in their projects. 15 | * [SID Search](https://www.sidsearch.com/?via=aitoolhunt) - A specialized search engine focused on finding AI tools and services for various industries. 16 | * [Spell](https://spell.so/) - A web-based platform for crafting and deploying machine learning models with a focus on simplicity and ease of use. 17 | * [UBOS](https://ubos.tech/) - A decentralized platform that connects developers and businesses to build, deploy, and manage AI applications. 18 | -------------------------------------------------------------------------------- /readme/april/2023-04-16.md: -------------------------------------------------------------------------------- 1 | # 2023-04-16 2 | 3 | ### 2023-04-16 4 | 5 | * [AgentGPT](https://agentgpt.reworkd.ai/) - A powerful AI-driven platform for creating, managing, and optimizing chatbots and virtual agents. 6 | * [AI Studio](https://aistud.io/) - A collaborative platform for creating and sharing AI-based projects and models. 7 | * [Amazon Bedrock](https://aws.amazon.com/bedrock/) - A foundational service by Amazon Web Services (AWS) that simplifies machine learning infrastructure management. 8 | * [Any Summary](https://www.anysummary.app/) - An AI-powered tool that automatically summarizes articles, documents, or text for a quick understanding. 9 | * [Autoblocks](https://www.autoblocks.ai/) - An AI-driven platform that helps in generating code automatically to speed up software development. 10 | * [Autory](https://autory.ai/) - An AI-powered content creation tool that automatically writes articles, blog posts, and social media content. 11 | * [Brancher.ai](https://www.brancher.ai/) - A platform that uses AI to predict user actions and optimize digital marketing efforts. 12 | * [Bricabrac AI](https://bricabrac.ai/) - A machine learning solution provider offering custom AI models and data solutions for businesses. 13 | * [ClipGPT](https://clipgpt.io/) - An AI-based image recognition and generation tool that combines visual and textual information. 14 | * [Cognosys](https://www.cognosys.ai/) - A platform offering AI-powered predictive analytics and insights for businesses. 15 | * [DocumentationLab](https://documentationlab.com/) - A platform that uses AI to generate and maintain software documentation automatically. 16 | * [Exo](https://www.getexo.dev/) - A developer tool that leverages AI to predict and autocomplete code, making development faster and more efficient. 17 | * [Godmode.space](https://godmode.space/) - A platform for creating AI-powered web apps and services with no-code or low-code tools. 18 | * [Grammar GPT](https://www.grammar-gpt.com/) - An AI-driven grammar correction tool that helps improve the quality and readability of text. 19 | * [MapDeduce](https://mapdeduce.com/) - An AI-based platform that provides geospatial analysis and insights for business and research purposes. 20 | * [Meet Mynd](https://www.mynd.so/) - A smart AI-powered calendar assistant that schedules and manages meetings efficiently. 21 | * [ProductiveGPT](https://productivegpt.vercel.app/) - An AI-powered productivity tool that helps users complete tasks and manage their time effectively. 22 | * [PromptBot](https://www.messengerx.io/promptbot) - A chatbot that generates creative prompts for writing, brainstorming, and idea generation. 23 | * [Reprompt](https://reprompt.dev/) - A platform that uses AI to improve the efficiency and effectiveness of content editing and proofreading. 24 | * [RevocalizeAI](https://www.revocalize.ai/) - An AI-powered voice cloning solution that enables the creation of realistic, human-like voices. 25 | * [Transformify](https://www.transformify.ai/automate) - A platform that automates business processes using AI and machine learning to increase efficiency. 26 | * [Trudo AI](https://www.trudo.ai/) - An AI-driven platform that generates high-quality content for marketing and communication purposes. 27 | * [Uncody](https://uncody.com/) - A code generation platform that leverages AI to create and optimize software code. 28 | -------------------------------------------------------------------------------- /readme/april/2023-04-20.md: -------------------------------------------------------------------------------- 1 | # 2023-04-20 2 | 3 | ### 2023-04-20 4 | 5 | * [AMA GPT-3](https://amagpt3.com/) - A platform that allows users to ask GPT-3 questions and receive AI-generated responses. 6 | * [Awesome-chatgpt-plugins](https://github.com/jeadie/awesome-chatgpt-plugins) - A curated list of plugins and integrations for ChatGPT. 7 | * [ChainBrain AI](https://www.chainbrainai.com/) - An AI-powered solution for analyzing and predicting cryptocurrency markets. 8 | * [ChatGPT Hackers](https://www.chatgpthackers.dev/) - A community of developers and enthusiasts working with ChatGPT. 9 | * [ChatGPT Online](https://chatgptbay.com/) - A platform for users to access ChatGPT and engage in AI-generated conversations. 10 | * [ChatGPT Splitter](https://chatgptsplitter.com/) - A tool to split long text into smaller chunks suitable for ChatGPT processing. 11 | * [CodePrompt](https://codeprompt.xyz/) - An AI-based code generation platform that uses GPT technology to provide programming assistance. 12 | * [GPT Prompter](https://www.gptprompter.com/) - A tool that helps users generate high-quality prompts for GPT-powered models. 13 | * [GPT Prompts](https://grand.app/gallery) - A gallery of prompts for GPT-powered models, designed to help users create engaging content. 14 | * [GPT Tools](https://gpttools.com/) - A suite of tools for working with GPT-powered models, including prompt generators, splitters, and more. 15 | * [GPTPro](https://gptpro.sh/) - A platform offering advanced GPT-based AI services for various applications. 16 | * [ListGPT](https://listgpt.com/) - A directory of GPT-powered tools and services. 17 | * [PostPromptsAI](https://postprompts.ai/) - A platform that provides AI-generated writing prompts for content creators. 18 | * [PROMPT EXPLORER (GPT-3)](https://docs.google.com/spreadsheets/d/1oi0fwTNuJu5EYM2DIndyk0KeAY8tL6-Qd1BozFb9Zls/edit#gid=1567267935) - A spreadsheet containing a list of GPT-3 prompts and their outcomes. 19 | * [Prompt Reducer](https://www.promptreducer.com/) - A tool that helps users create concise and effective prompts for GPT models. 20 | * [Text Splitter](https://slicer.centminmod.com/) - A utility for splitting long text into smaller, more manageable pieces. 21 | * [Tokenizer](https://chatgpt-tokenizer.com/en/index.html#!/) - A tool for tokenizing text in preparation for use with ChatGPT. 22 | -------------------------------------------------------------------------------- /readme/april/README.md: -------------------------------------------------------------------------------- 1 | # April 2 | 3 | {% content-ref url="2023-04-28.md" %} 4 | [2023-04-28.md](2023-04-28.md) 5 | {% endcontent-ref %} 6 | 7 | {% content-ref url="2023-04-23.md" %} 8 | [2023-04-23.md](2023-04-23.md) 9 | {% endcontent-ref %} 10 | 11 | {% content-ref url="2023-04-22.md" %} 12 | [2023-04-22.md](2023-04-22.md) 13 | {% endcontent-ref %} 14 | 15 | {% content-ref url="2023-04-20.md" %} 16 | [2023-04-20.md](2023-04-20.md) 17 | {% endcontent-ref %} 18 | 19 | {% content-ref url="2023-04-19.md" %} 20 | [2023-04-19.md](2023-04-19.md) 21 | {% endcontent-ref %} 22 | 23 | {% content-ref url="2023-04-18.md" %} 24 | [2023-04-18.md](2023-04-18.md) 25 | {% endcontent-ref %} 26 | 27 | {% content-ref url="2023-04-17.md" %} 28 | [2023-04-17.md](2023-04-17.md) 29 | {% endcontent-ref %} 30 | 31 | {% content-ref url="2023-04-16.md" %} 32 | [2023-04-16.md](2023-04-16.md) 33 | {% endcontent-ref %} 34 | 35 | {% content-ref url="2023-04-15.md" %} 36 | [2023-04-15.md](2023-04-15.md) 37 | {% endcontent-ref %} 38 | 39 | {% content-ref url="2023-04-12.md" %} 40 | [2023-04-12.md](2023-04-12.md) 41 | {% endcontent-ref %} 42 | -------------------------------------------------------------------------------- /readme/gpt-prompt-guides.md: -------------------------------------------------------------------------------- 1 | # GPT Prompt Guides 2 | 3 | ### GPT | Prompt Guides 4 | 5 | * [Awesome-chatgpt-suggestions](https://github.com/aminblm/awesome-chatgpt-suggestions) - A curated list of resources and suggestions for working with ChatGPT. 6 | * [ChatGPT Prompt Guide](https://chatgptguide.pro/chatgpt-prompt-guide/) - A comprehensive guide for creating effective prompts for ChatGPT. 7 | * [ChatGPT Prompt Resources And Prompt Making Guide](https://docs.google.com/spreadsheets/d/1xqm94LH9ydiilsWvylS3LdRZIRFnnEyft\_X6HLnlex4/edit#gid=434902957) - A spreadsheet containing resources and tips for creating ChatGPT prompts. 8 | * [ChatGPT Prompts](https://docs.google.com/spreadsheets/d/1wLuXmaHLfXQq\_VxJSVS5FpS73ftCqZm5oO682jdctQM/edit#gid=0) - A collection of ChatGPT prompts that users can browse and draw inspiration from. 9 | * [ChatGPT Tips](https://www.chatgpttips.com/) - A website offering tips and tricks for working with ChatGPT effectively. 10 | * [ChatGPT Writing Prompt](https://pastebin.com/ygK4sLjG) - A Pastebin post containing a list of ChatGPT writing prompts. 11 | * [Exploiting ChatGPT’s Potential](https://medium.com/@r.prilepskiy/exploiting-chatgpts-potential-33-tips-for-crafting-advanced-prompts-6d2cc22fcf53) - A Medium article discussing tips for crafting advanced prompts with ChatGPT. 12 | * [GPT Craft](http://gptcraft.tech/) - A website dedicated to helping users improve their GPT model interactions and prompt crafting skills. 13 | * [GPT-3 Creative Fiction](https://gwern.net/gpt-3) - A collection of creative fiction works generated by GPT-3. 14 | * [How To Make Complex ChatGPT Prompts](https://chatgptips.ai/learn-how-to-make-complex-chatgpt-prompts-with-the-chatgpt-method/) - A tutorial on creating complex prompts for ChatGPT using the ChatGPT Method. 15 | * [LIST OF 50+ CLEVER GPT-3 PROMPTS](https://docs.google.com/spreadsheets/u/0/d/1EuciDyKqFg2CIoQS89tF238oGtJq8a4mRx8kV9eA1Lc/htmlview) - A Google Sheets document containing over 50 clever prompts for GPT-3. 16 | * [Mastering ChatGPT](https://gptbot.io/master-chatgpt-prompting-techniques-guide/) - A guide that covers advanced ChatGPT prompting techniques. 17 | * [OpenAI GPT Prompt Generator](https://gptforwork.com/tools/prompt-generator) - A tool for generating prompts for use with OpenAI's GPT models. 18 | * [Prompt Engineering 101](https://humanloop.com/blog/prompt-engineering-101) - An introduction to prompt engineering techniques for AI models. 19 | * [Prompt Engineering Guide](https://www.promptingguide.ai/) - A comprehensive guide to prompt engineering with AI models. 20 | * [The ChatGPT Prompt Book](https://docs.google.com/presentation/d/17b\_ocq-GL5lhV\_bYSShzUgxL02mtWDoiw9xEroJ5m3Q/edit#slide=id.g1b8e0b333f6\_0\_238) - A Google Slides presentation containing a collection of ChatGPT prompts. 21 | * [The Fine Art Of Prompting](https://aiascendant.substack.com/p/the-fine-art-of-prompting?publication\_id=1140621\&post\_id=93777426\&isFreemail=true) - An article that discusses the importance of crafting effective prompts for AI models. 22 | -------------------------------------------------------------------------------- /readme/july/README.md: -------------------------------------------------------------------------------- 1 | # July 2 | 3 | -------------------------------------------------------------------------------- /readme/march/2023-03-21.md: -------------------------------------------------------------------------------- 1 | # 2023-03-21 2 | 3 | ## 2023-03-21 4 | 5 | * [A.I. Apps 🤖 On AppRaven](https://appraven.net/collection.php?listId=6416a370904afd2a981d73ed) - A Curated List Of Productivity Apps Related To Artificial Intelligence On AppRaven. 6 | * [A.I. Apps By Whoisdsmith](https://appraven.net/collection.php?listId=63b5eef1904afd2a981cead0) - A Collection Of AI-powered Apps For IOS And Android Curated By Whoisdsmith On AppRaven. 7 | * [AI Apps On AppRaven](https://appraven.net/collection.php?listId=63a67959904afd2a981cd63d) - A Curated List Of Remote Work Apps Related To Artificial Intelligence On AppRaven. 8 | * [AI Awesome](https://www.aiawesome.com/) - A Curated List Of Resources, Tools, And Articles Related To Artificial Intelligence. 9 | * [ChatGPT Apps On AppRaven](https://appraven.net/collection.php?listId=6417bf8d904afd2a981d75e7) - A Collection Of Educational Apps For Kids Curated By ChatGPT On AppRaven. 10 | * [Daily Tech AI](https://www.dailytech.ai/) - A Platform For News And Analysis On Artificial Intelligence, Machine Learning, And Data Science. 11 | * [Easy Prompt](https://www.easyprompt.xyz/) - A Free And Easy-to-use Online Tool For Generating Writing Prompts. 12 | * [Generative AI On AppRaven](https://appraven.net/collection.php?listId=64095357904afd2a981d5eb4) - A Curated List Of Photography Apps Related To Generative Artificial Intelligence On AppRaven. 13 | * [Generative Tools](https://generativetools.pages.dev/) - A Collection Of Creative Coding And Generative Art Tools. 14 | * [Scrip AI](https://scripai.com/) - A Platform For Generating AI-powered Content, Including Blog Posts, Social Media Captions, And More. 15 | * [Tome](https://tome.app/whoisdsmith) - A Personal Knowledge Management Tool That Helps You Organize And Recall Your Notes, Thoughts, And Ideas. 16 | * [Transpic](https://transpic.ai/) - A Platform For Generating Realistic AI-generated Images And Videos. 17 | * [TTSMaker](https://ttsmaker.com/) - A Free Online Text-to-speech (TTS) Tool That Allows You To Convert Any Text Into Natural-sounding Speech. 18 | * [Variart](https://variart.ai/) - A Collection Of AI-powered Tools For Artists And Designers, Including Image And Video Style Transfer, Face Morphing, And More. 19 | 20 | *** 21 | -------------------------------------------------------------------------------- /readme/march/2023-03-27.md: -------------------------------------------------------------------------------- 1 | # 2023-03-27 2 | 3 | ## 2023-03-27 4 | 5 | * [AI Tools Directory](https://aitoolsdirectory.com/) - A Directory Of AI Tools And Resources That Helps You Discover And Compare Various Tools In Different Categories Related To Artificial Intelligence. 6 | * [Architect.io](https://www.architect.io/) - Architect.io Is A Platform That Helps You To Easily Create, Deploy And Manage Applications In The Cloud Using Kubernetes. 7 | * [Business Generator](https://business-generator.vercel.app/?ref=producthunt) - A Simple And User-friendly Tool That Helps You To Create A Business Plan And Generate Financial Projections In Just A Few Minutes. 8 | * [Current Report](https://current.report/) - A News And Insights Platform For The Finance Industry That Delivers Real-time News, Data And Analytics To Traders, Investors And Analysts. 9 | * [Design Tools AI](https://designtools.ai/) - A Design Assistant Powered By Artificial Intelligence That Helps You To Create And Optimize Designs For Various Platforms Such As Social Media, Websites, And Ads. 10 | * [Everyday AI Tools](https://everydayaitools.com/) - A Collection Of Free AI Tools For Everyday Use That Includes Tools For Image Recognition, Language Translation, Text Summarization And More. 11 | * [Fleetic](https://fleetic.com/) - Fleetic Is An AI-powered Platform That Helps Fleet Managers Optimize And Automate Their Fleet Operations To Improve Efficiency And Reduce Costs. 12 | * [Modly AI](https://www.modly.ai/) - Modly AI Is A Chatbot Platform That Helps Businesses Automate Their Customer Support And Engagement Using Natural Language Processing And Machine Learning. 13 | * [NeuralPen](https://neuralpen.net/) - A Neural Network-based Handwriting Recognition Tool That Converts Handwritten Notes Into Digital Text. 14 | * [OpenAI Tools](https://openai.tube/) - OpenAI Tools Chatgpt Tools Base On Openai. 15 | * [Punya.ai](https://punya.ai/) - Customize Your Own Version Of ChatGPT. 16 | * [WeLists](https://welists.co/) - WeLists Is A Platform That Enables Businesses To Create And Share Lists For Different Purposes Such As Marketing, Content Creation And More. 17 | 18 | *** 19 | -------------------------------------------------------------------------------- /readme/may/2023-05-10.md: -------------------------------------------------------------------------------- 1 | # 2023-05-10 2 | 3 | ### 2023-05-10 4 | 5 | * [AI Genius - Chrome Web Store](https://chrome.google.com/webstore/detail/ai-genius/ohepjelkmfachklkbaidkgeidegifmdj?utm\_source=futurepedia\&utm\_medium=marketplace\&utm\_campaign=futurepedia) - An AI Chrome extension designed to provide smart suggestions and aid in productivity. 6 | * [AI Resource Finder Tool](https://www.interestedinai.com/ai-resource-finder-tool) - A comprehensive tool to help locate valuable AI resources based on specific interests and needs. 7 | * [AudioNotes](https://audionotes.app/) - An app that uses AI to transcribe audio files into text, simplifying note-taking and transcription tasks. 8 | * [BarkAI](https://serp.ai/tools/bark-text-to-speech-ai-voice-clone-app/) - An AI tool that offers text-to-speech services with voice cloning capabilities. 9 | * [ByeBlankPage.ai](https://www.byeblankpage.ai/) - An AI-powered writing assistant designed to assist in overcoming writer's block. 10 | * [Chat LLaMA](https://serp.ai/tools/chat-llama/) - A conversational AI platform that creates more interactive and engaging customer service experiences. 11 | * [chatwithpdf](https://chatwithpdf.sdan.io/) - A service that allows for interactive, conversational engagement with PDF files. 12 | * [Get ChatGPT API](https://getgptapi.com/) - An API service to integrate OpenAI's advanced language model, GPT, into applications. 13 | * [GitPoet](https://www.gitpoet.dev/) - An AI tool intended to assist in code generation and development tasks. 14 | * [GitWit](https://www.gitwit.dev/) - An intelligent coding assistant designed to improve coding efficiency. 15 | * [GrantWizard](https://collegegrantwizard.com/) - A tool leveraging AI to help students find suitable grants for college education. 16 | * [Insightful](https://insightful.page/) - An AI-powered tool that provides insights and analytics for webpages. 17 | * [nūton](https://www.nuton.ai/) - An AI platform offering solutions for various complex tasks including pattern recognition, anomaly detection, and automation. 18 | * [PDF.ai](https://pdf.ai/) - An AI tool designed for smarter interaction with PDFs, including extraction, analysis, and conversion of PDF data. 19 | * [Pi, your personal AI](https://heypi.com/talk) - An AI-powered personal assistant designed to help manage tasks, answer questions, and provide personalized recommendations. 20 | * [Prompt Journey](https://promptjourney.aiboat.io/) - An AI tool to generate creative prompts for writing, brainstorming, and ideation. 21 | * [Reemix.co](https://reemix.co/) - An AI-powered platform for remixing and creating new music tracks. 22 | * [Suggest AI](https://suggest-ai.vercel.app/) - An AI tool that provides writing suggestions to improve content quality and readability. 23 | -------------------------------------------------------------------------------- /readme/may/README.md: -------------------------------------------------------------------------------- 1 | # May 2 | 3 | {% content-ref url="2023-05-14.md" %} 4 | [2023-05-14.md](2023-05-14.md) 5 | {% endcontent-ref %} 6 | 7 | {% content-ref url="2023-05-12.md" %} 8 | [2023-05-12.md](2023-05-12.md) 9 | {% endcontent-ref %} 10 | 11 | {% content-ref url="2023-05-10.md" %} 12 | [2023-05-10.md](2023-05-10.md) 13 | {% endcontent-ref %} 14 | 15 | {% content-ref url="2023-05-08.md" %} 16 | [2023-05-08.md](2023-05-08.md) 17 | {% endcontent-ref %} 18 | 19 | {% content-ref url="2023-05-06.md" %} 20 | [2023-05-06.md](2023-05-06.md) 21 | {% endcontent-ref %} 22 | 23 | {% content-ref url="2023-05-04.md" %} 24 | [2023-05-04.md](2023-05-04.md) 25 | {% endcontent-ref %} 26 | -------------------------------------------------------------------------------- /readme/september/2023-09-19.md: -------------------------------------------------------------------------------- 1 | # 2023-09-19 2 | 3 | * [Agent.so](https://www.agent.so/) - Your Own Personal AI Is Here, Trainable in Seconds 4 | * [AskCyph](https://askcyph.cypherchat.app/) - AskCyph™ LITE is a lightweight AI chatbot that runs an AI Model natively on browser. In simple words you are able to run what other providers like ChatGPT, Bard, Bing on your own device privately. Once the Model is downloaded and loaded you are doing everything locally with no information about what questions you are asking is sent to the internet. Currently this is in the experimental stage and may occasionally generate incorrect response, we are working towards improving. 5 | * [ChartPixel](https://chartpixel.com/) - Go beyond visualization and gain valuable insights with ChartPixel's AI-assisted data analysis, no matter your skill level 6 | * [CodeWiz](https://codewiz.app/) - Meet CodeWiz – your AI coding companion. Dive into real-time chats, unravel coding mysteries faster than you can type "StackOverflow", and code with confidence. Embrace the future of coding assistance today! 7 | * [Cosmos](https://golivecosmos.com/) - Save time organizing with Cosmos' intelligent video catalog 🍿. Try it today! 8 | * [FindWise](https://www.findwise.ai/) - Ask questions about anything on any website or document. 9 | * [GPTConsole](https://www.gptconsole.ai/) - GPTConsole helps developers generate web/mobile applications and perform web automation through prompts. It offers an NPM package that developers can install on their local machines. 10 | * [Graphy](https://graphy.app/) - AI generated charts and insights 11 | * [Illa.AI](https://illa.ai/) - Open-source AI Agents provided by experts in the field of machine learning, professional prompt engineers and enthusiasts, can be run with 1 click and modified based on these Agents. 12 | * [Instabot](https://www.instabot.us/sites/new) - We'll create an assistant bot that answers questions using the contents of your website. 13 | * [Klipme](https://klipmeapp.com/) - Powerful visual AI clip maker Automatically create clips for TikToks, Reels, Shorts and others. Upload footage of any video content category and get promo clips in minutes. 14 | * [Parea AI](https://www.parea.ai/) - Parea AI - Bring your AI vision to life with our state-of-the-art LLMOps platform 15 | * [Powerdrill](https://powerdrill.ai/) - Bridging Your Data and AI No-code and one-stop integration of datasets and OpenAI LLM for intelligent Q\&A and ecosystem interaction. 16 | * [Prompter](https://prompter.engineer/) - Craft and manage your prompts easily by making quick adjustments, iterating through different variations, intuitively comparing and labeling the results. Promptly debug prompts with Prompter. 17 | * [PromptFolder](https://promptfolder.com/) - The Ultimate AI Prompt Manager 18 | * [SuperAGI](https://app.superagi.com/) - Opensource AGI Infrastructure. Building infrastructure components, tools, frameworks and models to enable opensource AGI 19 | * [The Local AI Playground](https://www.localai.app/) - Experiment with AI models locally with zero technical setup, powered by a native app designed to simplify the whole process. No GPU required! 20 | * [WonsultingAI](https://www.wonsulting.ai/) - Your full suite of AI Job Search tools 21 | -------------------------------------------------------------------------------- /readme/september/2023-09-25.md: -------------------------------------------------------------------------------- 1 | # 2023-09-25 2 | 3 | * [AskCodi](https://www.askcodi.com/) - An AI coding assistant. Pair programmer for developer needs. 4 | * [ChatNode](https://www.chatnode.ai/) - Build your own AI assistant for your website or create an internal research tool by training ChatGPT on any data you'd like. 5 | * [CloseVector](https://closevector.getmegaportal.com/) - A lightweight vector database. 6 | * [CodeRabbit](https://coderabbit.ai/) - Accelerate Code Reviews with AI 7 | * [Exocoding](https://exocoding.com/) - Code Generation as Developers Really Want It. Welcome to ExoCoding, where you are free from low-code limitations and vendor dependencies. 8 | * [FL0](https://www.fl0.com/) - Deploy backend applications and databases in minutes 9 | * [Glaive](https://glaive.ai/) - Language models specialised for your use-cases 10 | * [HelperAI](https://helperai.ai/) - Create AI Agents to automate any online work you spent countless human hours on! 11 | * [Hiphops](https://www.hiphops.io/) - Hiphops makes it easy to automate your team’s entire flow, Release management, deployments and tasks in one place. 12 | * [LLMStack](https://llmstack.ai/) - No-code platform to build generative AI apps, chatbots and agents with your data. 13 | * [MagicFormat](https://magicform.at/) - Your Productivity Secret Spell. Unlock the magic of AI-driven Workflows. 14 | * [OpenChakra](https://openchakra.app/) - React JSX visual editor for Chakra UI 15 | * [OpenCopilot](https://opencopilot.so/) - Build AI copilot for your own SaaS product. it can talk with your underlying APIs and execute complex tasks. 16 | * [Rapidpages](https://www.rapidpages.io/new) - A chatbot to build websites. 17 | * [Recombinant AI™](https://recombinant.ai/) - Your New Coding Assistant. Connects to Github \&GitLab to turn ChatGPT into a Conversational IDE! 18 | * [Trelent](https://trelent.com/) - Documentation sucks. Let us take care of it. 19 | * [Unfold AI](https://unfoldai.io/) - UnfoldAI is the best generative AI tool and the only one to offer specialized real-time bug and error solutions for developers within their IDEs. 20 | * [v0.dev Vercel](https://v0.dev/) - Generate UI with simple text prompts. Copy, paste, ship. 21 | * [Vercel AI Playground](https://sdk.vercel.ai/) - Use the latest AI language models with the Vercel AI Playground 22 | -------------------------------------------------------------------------------- /readme/september/README.md: -------------------------------------------------------------------------------- 1 | # September 2 | 3 | 4 | 5 | {% content-ref url="2023-09-19.md" %} 6 | [2023-09-19.md](2023-09-19.md) 7 | {% endcontent-ref %} 8 | 9 | {% content-ref url="2023-09-23.md" %} 10 | [2023-09-23.md](2023-09-23.md) 11 | {% endcontent-ref %} 12 | 13 | {% content-ref url="2023-09-25.md" %} 14 | [2023-09-25.md](2023-09-25.md) 15 | {% endcontent-ref %} 16 | --------------------------------------------------------------------------------