Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
c31ce75
Upgrading h11 from 0.14.0 to 0.16.0
pensarapp[bot] Jul 25, 2025
8a8a0fc
Update index.html
pritpatel2412 Sep 23, 2025
c5f1786
Create ads.txt
pritpatel2412 Sep 23, 2025
c770549
Merge pull request #14 from pritpatel2412/pensar-auto-fix-aLTJ
pritpatel2412 Oct 3, 2025
bee1b86
Update links to point to new portfolio site
pritpatel2412 Nov 17, 2025
46aa65d
Swap links for Prit Patel and GitHub
pritpatel2412 Nov 17, 2025
78316e9
Update link from Vercel to GitHub profile
pritpatel2412 Nov 17, 2025
a3e0afd
Update link to personal portfolio site
pritpatel2412 Nov 17, 2025
4931ed0
Fix formatting of the heading in README.md
pritpatel2412 Dec 10, 2025
98a53c8
feat: complete sandbox tab pages, live AST/Transpiler rendering, AdSe…
pritpatel2412 May 20, 2026
b512770
style: premium warm editorial design overhaul matching Claude.com
pritpatel2412 May 20, 2026
cb8c40c
style: redesign subpages into independent premium layouts under share…
pritpatel2412 May 20, 2026
7490ce1
style: separate sandbox and build premium tech-focused landing page
pritpatel2412 May 20, 2026
756ac3d
feat: integrate animated CpuArchitecture SVG component on landing page
pritpatel2412 May 20, 2026
8a7296b
docs: rewrite README with professional tone, remove all emojis, add a…
pritpatel2412 May 20, 2026
b9ef333
Release v2.0.0: Functions, Recursion, Arrays, Logic Precedence, Modul…
pritpatel2412 May 21, 2026
7a5e020
docs: Update README.md with v2.0.0 features, tables, and advanced rec…
pritpatel2412 May 21, 2026
6ad4d87
release: KemLang v3.0.0 - Advanced System Paradigms
pritpatel2412 May 21, 2026
7787aa6
docs: update README.md with comprehensive v3.0.0 paradigms documentation
pritpatel2412 May 21, 2026
022a5dc
docs: update kemlang-vscode README.md with v3.0.0 paradigms
pritpatel2412 May 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json


# === Python ===
__pycache__/
Expand Down Expand Up @@ -56,3 +56,6 @@ dist/
.env.local
.env.production
.env.development

# === Local test scripts ===
try.kem
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ node_modules/
# Ignore dev configs
.vscode/
.env
kemlang-vscode/
300 changes: 210 additions & 90 deletions README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ads.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google.com, pub-8074288228358823, DIRECT, f08c47fec0942fa0
4 changes: 2 additions & 2 deletions bin/kemlang.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const { spawn } = require("child_process");
const path = require("path");
const fs = require("fs");

// Get path to cli.py in the kemlang-backend folder
const backendPath = path.join(__dirname, "..", "kemlang-backend", "cli.py");
// Get path to kemlang.py in the kemlang-backend/kemlang folder
const backendPath = path.join(__dirname, "..", "kemlang-backend", "kemlang", "kemlang.py");

// Get user-provided arguments (i.e., the .kem file)
const args = process.argv.slice(2);
Expand Down
6 changes: 6 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">

<!-- ✅ Google AdSense Script -->
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8074288228358823"
crossorigin="anonymous"></script>
<!-- ✅ End Google AdSense -->
</head>
<body>
<div id="root"></div>
Expand Down
Loading