Skip to content

Instantly share code, notes, and snippets.

View RichLewis007's full-sized avatar
🎼
"Welcome to the era of man-machine duets. We’ll try to stay in key.” - R. Brooks

Rich Lewis RichLewis007

🎼
"Welcome to the era of man-machine duets. We’ll try to stay in key.” - R. Brooks
View GitHub Profile

AI CLI Coding Tools: A Developer's Guide

The landscape of AI-powered command-line coding assistants has exploded recently, each taking a different philosophical approach to the same fundamental problem: how do we make writing code less tedious without sacrificing control? Here's a breakdown of four notable players worth your attention.

The Contenders

@RichLewis007
RichLewis007 / rabuzz.c
Created September 10, 2025 09:25 — forked from dumbmoron/rabuzz.c
#include <stdio.h>
#define dont int
#define care main(
#define CURSE void
#define OF ) {
#define RA 0;
#define 𓀷 int
#define 𓃰 if
#define 𓂔 {
#define 𓂕 }
@RichLewis007
RichLewis007 / cursor-agent-system-prompt.txt
Created September 10, 2025 09:20 — forked from sshh12/cursor-agent-system-prompt.txt
Cursor Agent System Prompt (March 2025)
You are a powerful agentic AI coding assistant, powered by Claude 3.5 Sonnet. You operate exclusively in Cursor, the world's best IDE.
You are pair programming with a USER to solve their coding task.
The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question.
Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more.
This information may or may not be relevant to the coding task, it is up for you to decide.
Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag.
<communication>
1. Be conversational but professional.
@RichLewis007
RichLewis007 / README.md
Created September 10, 2025 09:12 — forked from lopspower/README.md
Material Animations

Material Animations

Android Arsenal

[Android Transition Framework][transition-framework] can be used for three main things:

  1. Animate activity layout content when transitioning from one activity to another.
  2. Animate shared elements (Hero views) in transitions between activities.
  3. Animate view changes within same activity.
@RichLewis007
RichLewis007 / DDPG-algorithm-continuous-control-with-deep-reinforcement-learning.py
Last active September 9, 2025 09:16 — forked from chiphuyen/ddpg.py
A clean implementation of DDPG algorithm - Continuous control with deep reinforcement learning (Lillicrap et al., 2015)
""" A clean implementation of DDPG algorithm
Continuous control with deep reinforcement learning (Lillicrap et al., 2015)
"""
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
import gym
import numpy as np
import tensorflow as tf