Skip to content

Instantly share code, notes, and snippets.

View Pushpit07's full-sized avatar
🎯
Exploring all things tech

Pushpit Pushpit07

🎯
Exploring all things tech
View GitHub Profile
@Pushpit07
Pushpit07 / ETHENA_REVIEW.md
Created April 29, 2026 16:31
tripUSD - External Architecture & Implementation Review

tripUSD - External Architecture & Implementation Review

Audience: Ethena protocol team. Prepared for technical review of Triplora's tripUSD soulbound stablecoin design and implementation.

All system diagrams are inlined in Mermaid and render natively in GitHub's markdown viewer. The document is self-contained — no external references required.


0. TL;DR

Building an AI Booking Agent for Triplora

The first crypto-native AI travel agent

This document lays out how to build it, how long it'll take, and what it'll cost.


What is Sentient? Can we use it?

function listQuarters(sDate, eDate) {
var sQuarter = Math.floor(sDate.getMonth() / 3) + 1;
var eQuarter = Math.floor(eDate.getMonth() / 3) + 1;
var sYear = sDate.getFullYear();
var eYear = eDate.getFullYear();
var quarterNames = ["03", "06", "09", "12"];
var quarterList = [];
@Pushpit07
Pushpit07 / BiggestHoldings.js
Created May 24, 2021 11:26
Code samples for mrktdb.com
import React, { useState, useEffect } from 'react';
import '../../../../styles/Filer/BiggestHoldingsTable.css';
// Issues:
// Price is to be converted to whole number or it is to be displayed as decimal
// Add border radius / make table border curved
function BiggestHoldingsTable(props) {
var cik = props.cik;
var [oldCIK, setOldCIK] = useState(null);
if (cik !== oldCIK) {
@Pushpit07
Pushpit07 / first_contract.sol
Created May 7, 2021 12:42
This is my first Solidity Smart Contract
pragma solidity ^0.4.24;
contract MyContract {
string value;
constructor() public {
value = "first_Value";
}
function get() public view returns(string) {