Skip to content

Instantly share code, notes, and snippets.

View parappally's full-sized avatar

Josiah Parappally parappally

View GitHub Profile
@parappally
parappally / pr-2648-real-arcanist-ui-readme.md
Created April 30, 2026 21:07
PR 2648 real Arcanist UI E2B screenshot evidence

PR #2648 real Arcanist UI E2B screenshot evidence.

The PNG in this gist was generated inside Arcanist E2B sandbox session b2a529bd-6532-4b89-a4ba-06a13a97ca8e from the actual tryarcanist/arcanist React UI code on PR #2648.

@parappally
parappally / pr-2648-screenshot-gist-note.md
Last active April 30, 2026 20:55
PR 2648 screenshot evidence

PR 2648 screenshot evidence. The PNG is committed to this public gist so GitHub PR markdown can render it without private repository raw-file auth.

@parappally
parappally / main.cpp
Created December 21, 2018 23:48
BMI-calculator created by parappally - https://repl.it/@parappally/BMI-calculator
#include <iostream>
int main() {
double height;
double weight;
std::cout << "What is your height in metres?\n";
std::cin >> height;
std::cout << "What is your weight in kilograms?\n";
std::cin >> weight;
std::cout << "Your BMI is " << (weight/(height*height));