A quick guide to a practical "vibe-coding" setup that can get you up-and-going within minutes.
Tag: github
A (Working) CI/CD Workflow with GitHub Actions for AI Applications
The post shares their journey of setting up a cost-effective CI/CD pipeline for AI applications using GitHub Actions and Docker. Emphasizing branching, versioning, and meticulous testing, the post highlights the importance of simplicity, efficiency, and automation in achieving a streamlined development workflow.
Process for Dealing with Issues
This post outlines a process for handling GitHub issues, including determining the type of issue, identifying relevant code, and resolving the issue through testing, correction, and pull requests. It also discusses the potential for automation using LLMs and user templates, as well as the use of vector search in repositories.
Git / GitHub Workflow for Raspberry Pi
A quick aide-memoire for using GitHub: Create directory with 'Project Name' in Dropbox directory (extra layer of automated backup) cd 'Project Name' git init Create / copy initial files Create .gitignore file for Project git add [Files - if all can use .] git status [Check correct] git commit -m "First Commit" Go to github.com … Continue reading Git / GitHub Workflow for Raspberry Pi
Hiding Secrets from GitHub (or using ConfigParser)
As I get into the habit of using git and github for versioning I need to make sure that I hide personal settings and passwords. To do this I use ConfigParser in Python. It's pretty easy. Creating the Configuration File First create a 'config.ini' file in your code directory. I generally use a text editor or … Continue reading Hiding Secrets from GitHub (or using ConfigParser)

