The Matt Rife (no relation to the genius, clearly) situation is an insult to comedy. Here’s the full story. Essentially this human made a domestic violence joke, which shocked the audience; primarily females. The joke …
Shadowbanned on Facebook?
ARE YOU SHADOWBANNED ON FB? Notice less people interacting with your account? Barely any likes or views? Well you’ve been flagged. Sometimes Facebook won’t even tell you. Let’s learn what that means. If you’ve been …
The origin of cisgender
For those who say “cisgender is a biological term used in science for hundreds of years” it is not. It was coined by Dana Leland Defrosse, a biologist at the university of minesota and retired …
Take care of Maya: Wrongful blame, preventable suicide and a broken system
If a mother’s love feels it has to turn into self sacrifice in order to keep a child from suffering at the hands of doctors and protective services, something is wrong. For those that have not, I request you watch this incredibly profound documentary “Take care of Maya” on the seriousness of our flawed system that claims to protect us all. But does it?
Cleopatra was Greek and we are lazy
This cleopatra thing is fascinating to me. I think the simple response is: why are we creating more productions with ethnicities that aren’t even correctly depicting existing historical figures? It isn’t racist to feel as …
How was Open AI & Chat GPT created?
OpenAI is built using a combination of programming languages, tools, and libraries that are commonly used in artificial intelligence research and software development. Here are some of the main technologies that OpenAI uses: These are …
How to connect python to flask
How do I connect python to flask To connect Python code to Flask, you can define a Flask application object and write functions that handle HTTP requests. Here’s an example of how to get started …
Sample Code for Bot Interactions through Python and Flask
Can you give me code to create a simple question and answer bot Sure! Here’s some example code for creating a simple question and answer bot using Python and the Flask micro-framework: pythonCopy codefrom flask …
What are chatbot utterances?
In the context of coding a bot, utterances are phrases or sentences that a user might say to interact with the bot. These utterances are used to train the bot’s natural language processing (NLP) engine, …
How to create AI with Python and distribute it on a Website
To code a bot on Python and distribute it on a website, you can follow these general steps: Here is a sample code to create a simple chatbot using Flask: pythonCopy codefrom flask import Flask, …