Skip to content

Instantly share code, notes, and snippets.

@kiranmaya
kiranmaya / nof1.ai.md
Last active October 29, 2025 16:49
https://nof1.ai/ alpha arena user prompt

It has been 10288 minutes since you started trading. The current time is 2025-10-29 16:36:53.218380 and you've been invoked 4001 times. Below, we are providing you with a variety of state data, price data, and predictive signals so you can discover alpha. Below that is your current account information, value, performance, positions, etc.

ALL OF THE PRICE OR SIGNAL DATA BELOW IS ORDERED: OLDEST → NEWEST

Timeframes note: Unless stated otherwise in a section title, intraday series are provided at 3‑minute intervals. If a coin uses a different interval, it is explicitly stated in that coin’s section.

CURRENT MARKET STATE FOR ALL COINS ALL BTC DATA current_price = 111212.5, current_ema20 = 111398.198, current_macd = -257.442, current_rsi (7 period) = 45.226

@kiranmaya
kiranmaya / Next JS cheat sheet.md
Last active October 20, 2025 06:05
This comprehensive cheat sheet covers everything from basic programming concepts to advanced Next.js patterns used in the PaniPhonics project. Use it as a complete reference for understanding modern web development with React, Next.js, and TypeScript.
@kiranmaya
kiranmaya / order_manager.py
Created June 5, 2025 15:45
python order manager for trading .
import json
from datetime import datetime
from typing import List, Dict, Optional
from tabulate import tabulate
class Order:
def __init__(self, symbol: str, quantity: float, price: float, order_type: str, timestamp: Optional[datetime] = None):
self.symbol = symbol
self.quantity = quantity
using System;
using System.Collections.Generic;
using System.Linq;
namespace MainTrade
{
public class KNNRegressionLorenzian
{
private List<STOCK> _data;
@kiranmaya
kiranmaya / BuildName
Last active November 25, 2023 01:02
MaximoTicketAndroidApp
{
"AndroidLatestVersion": "1.0",
"DownloadAndUrl": "https://play.google.com/store/apps/details?id=com.playrix.gardenscapes",
"IOSLatestVersion": "1.0",
"DownloadIOSUrl": "https://your-ios-download-url.com"
}
@kiranmaya
kiranmaya / exploratory_device.verse
Last active March 27, 2023 07:27 — forked from spilth/exploratory_device.verse
Making class attribute editable in UEFN , Variable declaration.
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }
direction := enum{Up, Down, Left, Right}
coordinates := struct<concrete>:
@editable
X : float = 0.0
@kiranmaya
kiranmaya / Unreal Verse
Last active March 25, 2023 19:38
UEFN verse Cheat codes
There is no start,update ,oncoillisionEnter like Unity monobehavuour or Actor unreal,everything is subscribe event based .
OnBegin is there tough ,but its a class starting point.
Creating a New Device with Verse , Our code is also a device ,their framework is around dealing everything as a devices.
Not objects or actors,these device contain objects,components.
Every script is a device,
our code may not a be component. lets see.
Note:Logic is boolean ,logic as a type
Tought ,their class decleration is worst ,but they do provide a template to starting point . so blank class is not a option for us .
var is for variable ,undeclaring is constant
@namespace Components
<MudChart ChartType="ChartType.Bar" ChartSeries="@Series"
XAxisLabels="@XAxisLabels.ToArray()"
Width="100%" Height="350px" ChartOptions="chartOptions"></MudChart>
@code {
[Parameter] public string SeriesName { get; set; }
You have to use "::deep" on CSS that is applied to custom components such as MudBlazor components. Custom components have to be enclosed in a nativ component thus the "<div>".
"::deep" CSS does not work on nativ components as it seems.
@page "/"
<h1>@pageTitle</h1>
<div class="mainPaper">
@DateTime.Now.ToLongTimeString()