Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file modified .gitignore
Binary file not shown.
13 changes: 13 additions & 0 deletions dev/0xeixa-dev/application.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
mkdir -p dev/0xeixa-dev

cat <<EOF > dev/0xeixa-dev/application.md
# 🧑‍💻 0xEixa - Application

- **Name**: 0xEixa
- **Discord**: 0xeixa
- **GitHub**: https://github.com/nheoshikuyanhemo
- **Languages**: TypeScript, Python
- **Experience**: Newbie, still learning Web3 and AI
- **AI Tools**: ChatGPT, Langchain, Pinecone
- **Why Join?**: I’m a student passionate about building decentralized AI tools.
EOF
24 changes: 0 additions & 24 deletions dist/applications/DEV-APPLICATION.js

This file was deleted.

8 changes: 0 additions & 8 deletions dist/main.js

This file was deleted.

21 changes: 4 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,15 @@
{
"name": "netrum-dev-hunting",
"version": "1.0.0",
"description": "Netrum AI Dev-Hunting Program – TypeScript Developer Registry",
"type": "module",
"main": "applications/DEV-APPLICATION.ts",
"scripts": {
"build": "tsc -p tsconfig.main.json",
"start": "tsx dist/applications/DEV-APPLICATION.js",
"dev": "tsx src/applications/DEV-APPLICATION.ts",
"test": "ts-node --files test.ts"
"dev": "node --loader ts-node/esm src/applications/DEV-APPLICATION.ts",
"build": "tsc",
"start": "node dist/applications/DEV-APPLICATION.js"
},
"keywords": [
"netrum",
"ai",
"dev-hunting",
"typescript",
"web3"
],
"author": "Netrum Labs",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.0.3",
"@types/node": "^20.11.30",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.4.5"
}
}
168 changes: 168 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 12 additions & 34 deletions src/applications/DEV-APPLICATION.ts
Original file line number Diff line number Diff line change
@@ -1,37 +1,15 @@
// src/📁 applications/DEV-APPLICATION.ts

import fs from "fs";
import path from "path";
import { devRegistry } from "../main";


type DevInfo = {
name: string;
folder: string;
};

const devApplications: { name: string; content: string }[] = [];

console.log("🚀 Application loaded");

devRegistry.forEach((dev: DevInfo) => {

const mdPath = path.resolve(process.cwd(), "dev", dev.folder, "application.md");

try {
const content = fs.readFileSync(mdPath, "utf-8");
devApplications.push({
name: dev.name,
content,
});
} catch (e) {
console.warn(`⚠️ Could not load: ${mdPath}`);
}
import { registeredDevs } from "../main.js";

registeredDevs.push({
name: "0xEixa",
discord: "0xeixa",
github: "https://github.com/nheoshikuyanhemo",
languages: ["TypeScript", "Python"],
experience: "Newbie, still learning Web3 and AI",
aiTools: ["ChatGPT", "Langchain", "Pinecone"],
reason: "I’m a student passionate about building decentralized AI tools."
});

console.log("🚀 Application loaded");
console.log("✅ Registered Developers:");
devApplications.forEach((dev, i) => {
console.log(`${i + 1}. ${dev.name}`);
});

export { devApplications };
console.log(registeredDevs.map((d, i) => `${i + 1}. ${d.name}`).join("\n"));
17 changes: 9 additions & 8 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// src/main.ts

export const devRegistry = [
export const registeredDevs = [
{
name: "Saandy",
folder: "Saandy-dev",
},

// 🔰 New devs just add entry here
name: "0xEixa",
discord: "0xeixa",
github: "https://github.com/nheoshikuyanhemo",
languages: ["TypeScript", "Python"],
experience: "Newbie, still learning Web3 and AI",
aiTools: ["ChatGPT", "Langchain", "Pinecone"],
reason: "I’m a student passionate about building decentralized AI tools.",
}
];
38 changes: 9 additions & 29 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,16 @@
{
"compilerOptions": {
"target": "es2022",
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"moduleResolution": "node",
"moduleDetection": "force",
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
"resolveJsonModule": true
},
"ts-node": {
"esm": true
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.js",
".next/types/**/*.ts",
"src/styles/global.css"
],
"exclude": [
"node_modules/*",
".next",
"out",
"build",
"dist",
"supabase"
]
"include": ["src"]
}