Skip to content

Instantly share code, notes, and snippets.

View belguzmani's full-sized avatar

Bel Guzman belguzmani

View GitHub Profile

BelGuzman Prompts Repository

This repository stores BelGuzman's proprietary AI prompts.

These prompts are part of belguzman's intellectual property and are used across:

  • AI Operating System
  • Applications
  • Internal Projects
  • Runtime AI integrations

SizeSmart — Execution Prompt & Project Reference

App Overview

SizeSmart is a stock position sizing calculator for traders. It helps users calculate ideal position sizes, manage multiple entries (averaging up/down), analyze risk, plan profit targets, and track live positions — all while staying within defined risk limits.


Tech Stack

@belguzmani
belguzmani / Testing-framework-mvp.md
Last active July 22, 2025 00:42
Implementation Plan: Testing Framework MVP

Implementation Plan: Testing Framework MVP

Objective: Build a manifest-driven, reusable Java testing framework to support microservices across multiple teams.


1. Project Bootstrapping. Set up repository layout, Create folder structure and initial files (e.g. build.gradle, settings.gradle).

2. Implement a ManifestParser. Add main entry point and parse manifest file with dependency resolution.

@belguzmani
belguzmani / fix-libv8-mac.txt
Created October 4, 2022 23:51 — forked from fernandoaleman/fix-libv8-mac.txt
Fixing libv8 and therubyracer on Mac
brew tap homebrew/versions
brew install v8-315
gem install libv8 -v '3.16.14.13' -- --with-system-v8
gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315
bundle install
### Basics (3 main branches + Releases)
1. Master Branch
- This is the cleanest code that is ready to deploy at any time.
- Commits are tagged with version numbers.
- It lives forever.
2. Development Branch
- No development will happen here, only merges from Feature branches and Release branches.
- It is never merged into any other branch.
- Nobody will commit to this branch. Depending on the project's structure and team culture, selected individuals will merge pull requests into the Development branch.
- It never dies.