abbymachines/wormChat-v1
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# wormChat v1 2022.3.24. this is a simple chatbot that takes your text input, processes it with a markov chain algorithm, and then spits out a short string of machine-generated text. the idea is to later attach this functionality to a simple animation of a baby worm, so that it feels like you are talking to a worm. a bonus feature is that the program uses text-to-speech to speak out the worm's response. ## Information about running p5 and pushing to git: ## running p5 application: open a terminal (git bash) navigate to this project `cd ~/Documents/creative-coding-2/PROJECT-NAME/` (use tab after three characters to auto-fill name, also helps to confirm you're in the right place) (to see the contents of your current folder, write 'ls') run the server `http-server -c-1` point our browser to localhost:8080 while working on a project: open a terminal, navigate to your project do this if you added new files: `git add . ` every time you want to make changes to github: `git commit -am'commit message goes here'` `git push` https:github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet info about uploading a repository to github: ### …or create a new repository on the command line echo "# test" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin git@github.com:abbymachines/test.git git push -u origin main ### …or push an existing repository from the command line git remote add origin git@github.com:abbymachines/test.git git branch -M main git push -u origin main ---- also a fun link! that jesse shared https://editor.p5js.org/jmej/sketches/fVaA4uztS