Author: tim
Did You See This Week’s AI News Yet?
I used the BEST Open Source LLM to build a GPT WebApp (Falcon-40B Instruct)
Are Small Models The Next BIG Thing? UltraLM 13b – Let’s Find Out!
How To Install Quivr 🏹 – Chat With ANY Document from ANYWHERE! (PDF, CSV, PPT, TXT)
Exoskeleton to challenge Pro Arm Wrestlers
Tiling Stable Diffusion Upscaler
Battle Damage for Cosplay Props | A Full Guide on Sculpting, Finishing and Weathering!
stable-diffusion-x4-upscaler
1000 Feet of Denim and 20 Gallons of Epoxy
Grabbing Images From New Russian Satellite (Meteor M2-3)
Ball Balancing Robot
How To Install DragGAN – Futuristic AI Image Manipulation
Windows 11 Build 23493 – Windows Copilot, Settings Home, File Explorer & MORE
The coolest robot
The Best AI Voice Cloning TTS gets EVEN BETTER!
You Need This Hack To Get Consistent AI Video Using Stable Diffusion, Controlnet and EBsynth
This process might work to eliminate jump cuts.
The bio-inspired ‘transformer’ that crawls, rolls and flies
This Tech Is Changing Movies, feat. MKBHD
Flew Ken’s Drone into FIREWORKS | Had to be rescued by the Fire Department
10 AMAZING AI Tools for Video Creators
NEW AI Coding Assistant 🤖 Use Prompts To Build New Or EXISTING Apps! (Aider, The Holy Grail)
Aider Github – https://github.com/paul-gauthier/aider 
Universal CTags – https://github.com/universal-ctags/ctags
OpenAI API Keys – https://platform.openai.com/docs/api-reference/introduction
Install Bash on Windows by installing a GIT Client – https://git-scm.com/downloads
Install Conda in Ubuntu WSL2 – [Setting up Jupyter using Conda in WSL2]
Homebrew – https://brew.sh/
Install Homebrew on Ubuntu WSL2:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Install Homebrew in the Anaconda terminal.
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Reopen the terminal to have Homebrew in your path.
If Homebrew is not in your path, add Homebrew to your path:
(echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> /home/$USER/.bashrc
In the Windows Anaconda (miniconda) terminal, open bash. (The bash version that opens needs to be the Linux bash version from WSL2)bash
Fix Conda on the Ubuntu WSL2.source ~/anaconda3/etc/profile.d/conda.sh
Use Ubuntu WSL2 or open the Anaconda terminal: (careful with the –name dashes, copy/paste can paste the wrong ascii dash so just type it)
conda create –name aider python=3.11.3
conda activate aider
export OPENAI_API_KEY=12345
brew install universal-ctags
Check if ctags is installed:ctags --version
Install Aider:pip install aider-chat
Use Aider to create a Snake game.
mkdir snake
cd snake
aidercreate the game snake using python
To get Aider to actually write the changes to snake.py I needed another prompt.save the changes to snake.py
In another terminal Window open VS Code to run the generated Python.cd snakecode .
AI was able to slow down the speed of the snake.can you slow down the movement speed by half
AI was able to add early quiting the game.I want to be able to quit while in game by pressing q
AI had trouble increasing the tile size and stopped being able to pick up food.Can you make the snake game use larger tiles?
I would recommend commit/push the files every time the AI makes a change and it works. That way you can revert the change if the AI breaks something.