Skip to content

Instantly share code, notes, and snippets.

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

Sagar Atalatti sagaratalatti

🏠
Working from home
  • India
  • 10:12 (UTC +05:30)
View GitHub Profile
@sagaratalatti
sagaratalatti / Readme.md
Created July 10, 2026 11:10
Real-time Ai Curriculum Intelligence

UAE Venture Plan: Real-Time AI Curriculum Intelligence

Prepared: 10 July 2026
Initial market: United Arab Emirates
Planning horizon: Validation through 12 months

Executive decision

Recommendation: conditional go. Do not build the full platform yet.

@sagaratalatti
sagaratalatti / Fable.md
Created July 7, 2026 07:55
Operating manual extracted from Claude Fable 5 for any AI model handover. Any AI model will start thinking and operating as Claude Fable-5

Operating Manual

From the outgoing model to the one taking the seat. Everything here is procedure, one working example, and the failure it prevents. Nothing decorative.


1. Read what the request is actually asking for

Procedure. Before answering, extract three things: the deliverable (what artifact leaves this conversation), the decision it feeds (what the person will do differently because of it), and the trigger (why they're asking now, not last week). Then restate the task to yourself in one sentence built from those three. If your restatement differs from the literal words, the difference is the real task. If you can't fill in the decision or trigger, either infer the most likely one and say you're assuming it, or ask — but only one question, and only if the answer would change your output.

@sagaratalatti
sagaratalatti / Features.md
Last active June 13, 2026 09:54
Maritime Features Proposal.

Maritime Q&A Platform for Seafarers

A cross-platform iOS and Android application dedicated to maritime seafarers, built around a strict StackExchange-style question-and-answer model.

The goal is to create a high-quality professional knowledge base for seafarers, not a casual discussion forum.

Core Assumption

The platform needs three trust layers:

Product Requirements Document (PRD)

Ephemeral Agent-Orchestrated UI Platform (EAOUI)

Flutter (iOS • iPadOS • Android)

Version: 2.0 (Execution-Ready)

@sagaratalatti
sagaratalatti / molt-skill.md
Created February 14, 2026 07:00
Moltbook Installation Skill
@sagaratalatti
sagaratalatti / pay-api.js
Created January 13, 2025 10:08
Promptys
const Razorpay = require("razorpay");
export default async function handler(req, res) {
// Allow CORS
res.setHeader("Access-Control-Allow-Origin", "https://supaprompts.dcms.site");
res.setHeader("Access-Control-Allow-Methods", "GET, OPTIONS");
res.setHeader("Access-Control-Allow-Headers", "Content-Type");
// Handle preflight requests (OPTIONS)
@sagaratalatti
sagaratalatti / Readme.md
Created November 10, 2024 11:45
Fund raising

NFT Project Financial Analysis

1. Gross Revenue Breakdown

Sale Revenue

Sale Stage NFTs Price/NFT Subtotal
Whitelist 2,000 $100 $200,000
Presale 3,000 $250 $750,000
Public Sale 5,000 $500 $2,500,000
@sagaratalatti
sagaratalatti / 721Token.sol
Last active October 16, 2024 10:36
Generated ERC721 with Airdrop Contract by Bountys
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
contract AMEYA is ERC721, ERC721Enumerable, ERC721Pausable, Ownable, ERC721Burnable {
@sagaratalatti
sagaratalatti / ERC4907.sol
Created July 22, 2024 07:31
Rentable NFTs implementing ERC4907
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./IERC4907.sol";
contract ERC4907 is ERC721, IERC4907 {
struct UserInfo {
@sagaratalatti
sagaratalatti / Gene.sol
Created February 13, 2024 09:25
ERC721A
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract VHNAMETACARS is ERC721A, Ownable, ReentrancyGuard {