Skip to content

Instantly share code, notes, and snippets.

View KBPsystem777's full-sized avatar
🧠
Try MediXAI

Koleen BP KBPsystem777

🧠
Try MediXAI
View GitHub Profile
@KBPsystem777
KBPsystem777 / MedixAI_Prompt.md
Created July 27, 2025 07:10
MedixAI's OpenSource Prompt for Medical suggestions

You are MediXAI, a helpful medical AI assistant for users in the Philippines. You provide preliminary medical guidance and information, but you MUST:

  1. Always emphasize that your advice is not a substitute for professional medical care
  2. Encourage users to consult with licensed healthcare providers
  3. For emergencies, remind users to call 911 or go to the nearest hospital immediately
  4. Be empathetic and supportive while being medically accurate
  5. Ask relevant follow-up questions to better understand symptoms
  6. Provide general health education when appropriate
  7. Always end serious consultations by recommending they see a doctor
  8. Be culturally sensitive to Filipino healthcare practices and terminology
@KBPsystem777
KBPsystem777 / abra.json
Created May 4, 2025 04:38
Province of Abra's Municipalities and Barangays
{
"municipality_list": {
"BANGUED": {
"barangay_list": [
"AGTANGAO",
"ANGAD",
"BANGBANGAR",
"BA\u00d1ACAO",
"CABULOAN",
"CALABA",
@KBPsystem777
KBPsystem777 / rptSchema.js
Last active March 27, 2025 15:14
RPT_Form_Schema
export const rptForm = {
book_number: 1,
arp_number: "000-2323-",
property_identification_number: "000-2323-",
owner: "koleen",
owners_address: "1234 street",
administrator: "admin",
admin_and_beneficiary_address: "1234 street",
co_owner: "co-owner",
number_and_street: "1234 street",
@KBPsystem777
KBPsystem777 / copilot-instructions.md
Created March 22, 2025 05:31
My personal Copilot Instructions setup for everyday web development activities

👑 Core Philosophy

  • ✅ Write ultra-clean, testable, reusable code
  • ✅ Follow DRY (Don’t Repeat Yourself) at all times
  • ✅ Predict bugs & optimize for performance
  • ✅ Promote code clarity & maintainability
  • ✅ Ensure 90%+ unit test pass rate
  • ✅ Encourage documentation with emojis 😎
  • ✅ Check for existing components before suggesting new ones
  • ✅ Use Tailwind + React-TS with pnpm/npm (government-grade software)
@KBPsystem777
KBPsystem777 / ClassmateConnect.sol
Created February 11, 2025 04:09
Classmate Connect Smart Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/// @title ClassmateConnect - Parent contract for managing student profiles
contract ClassmateConnect {
struct Profile {
string nickname;
string bio;
address studentAddress;
}
@KBPsystem777
KBPsystem777 / StudentContract.sol
Last active April 5, 2025 05:05
Sonic CodeCamp Activity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/// @title Interface for ClassmateConnect
interface IClassmateConnect {
function registerProfile(
address _studentAddress,
string memory _nickname,
string memory _bio
) external;
@KBPsystem777
KBPsystem777 / MarketplaceV2.sol
Created November 17, 2024 16:49
ManageLife's Marketplace V2 Smart Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./ManageLife.sol";
contract Marketplace is ReentrancyGuard, Pausable, Ownable {
@KBPsystem777
KBPsystem777 / CebuFundraiser.sol
Created November 17, 2024 14:20
CebuFundraiser - A decentralized calamity and fund raising contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
contract CebuFundraiser {
struct Recipient {
address recipientAddress;
string name;
bool isVerified;
}
@KBPsystem777
KBPsystem777 / Thanksify.sol
Last active August 22, 2025 10:09
BitDev's Thanksify Smart Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
contract Thanksify {
address public owner;
struct Message {
string text;
address sender;
uint256 timestamp;
@KBPsystem777
KBPsystem777 / Lock.js
Created July 27, 2024 09:02
DevUp!: Deployment script
const { buildModule } = require("@nomicfoundation/hardhat-ignition/modules")
const JAN_1ST_2030 = 1893456000
const ONE_GWEI = 1_000_000_000n
module.exports = buildModule("LockModule", (m) => {
const unlockTime = m.getParameter("unlockTime", JAN_1ST_2030)
const lockedAmount = m.getParameter("lockedAmount", ONE_GWEI)
const lock = m.contract("Lock", [unlockTime], {