Skip to content

Instantly share code, notes, and snippets.

View savourylie's full-sized avatar
🏠
Working from home

Calvin Ku savourylie

🏠
Working from home
View GitHub Profile
@savourylie
savourylie / vibe-coding-prompt-pack.md
Last active October 16, 2025 08:48
Vibe Coding Prompt Pack: Staff-level prompts for an end-to-end product/engineering workflow—generate PRD & Dev Plan, break into actionable tickets, implement with diffs/tests, update dependencies, and craft Conventional Commits.

Workflow

flowchart LR
A((Start))
B{New project?}
C[Discuss requirements with AI]
D[Discuss feature/scope with AI]
E([Generate PRD & Dev Plan])
F([Generate Dev Plan])
G([Create tickets])
@savourylie
savourylie / demo.py
Last active October 18, 2024 14:33
PromptManager from Dave Ebbelaar
import sys
sys.path.append("..")
from prompts.prompt_manager import PromptManager
support_prompt = PromptManager.get_prompt(
"ticket_analysis", pipeline="support", ticket={}
)
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""This module's docstring summary line.
This is a multi-line docstring. Paragraphs are separated with blank lines.
Lines conform to 79-column limit.
Module and packages names should be short, lower_case_with_underscores.
Notice that this in not PEP8-cheatsheet.py
@savourylie
savourylie / readme.md
Created January 4, 2017 20:32 — forked from baraldilorenzo/readme.md
VGG-16 pre-trained model for Keras

##VGG16 model for Keras

This is the Keras model of the 16-layer network used by the VGG team in the ILSVRC-2014 competition.

It has been obtained by directly converting the Caffe model provived by the authors.

Details about the network architecture can be found in the following arXiv paper:

Very Deep Convolutional Networks for Large-Scale Image Recognition

K. Simonyan, A. Zisserman