@rahulxf/about-me 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +28 -0
  2. package/index.js +97 -0
  3. package/package.json +36 -0
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # @rahulxf/about-me
2
+
3
+ A small `npx` package that prints my about page, projects, open source work, and GSoC/LFX links in the terminal.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npx @rahulxf/about-me
9
+ ```
10
+
11
+ ## What it shows
12
+
13
+ - who I am
14
+ - current work and recent milestones
15
+ - open source contributions
16
+ - selected projects
17
+ - GSoC, LFX, and OSS guidance links
18
+
19
+ ## Main links
20
+
21
+ - Website: [rahulxf.com](https://rahulxf.com)
22
+ - OSS / GSoC page: [rahulxf.com/oss](https://rahulxf.com/oss)
23
+ - Projects: [rahulxf.com/projects](https://rahulxf.com/projects)
24
+ - Blog: [rahulxf.com/blog](https://rahulxf.com/blog)
25
+
26
+ ## Inspiration
27
+
28
+ Inspired by [Sambego/about-me-npm](https://github.com/Sambego/about-me-npm) and the published package [`@sambego/about-me`](https://www.npmjs.com/package/@sambego/about-me).
package/index.js ADDED
@@ -0,0 +1,97 @@
1
+ #!/usr/bin/env node
2
+
3
+ const C = {
4
+ reset: "\x1b[0m",
5
+ bold: "\x1b[1m",
6
+ dim: "\x1b[2m",
7
+ cyan: "\x1b[36m",
8
+ green: "\x1b[32m",
9
+ yellow: "\x1b[33m",
10
+ magenta: "\x1b[35m",
11
+ blue: "\x1b[34m",
12
+ gray: "\x1b[90m",
13
+ };
14
+
15
+ const color = (tone, text) => `${tone}${text}${C.reset}`;
16
+ const pad = (label, width = 18) => label.padEnd(width, " ");
17
+ const row = (label, value) => `${color(C.yellow, pad(label))} ${value}`;
18
+ const bullet = (text) => `${color(C.cyan, "•")} ${text}`;
19
+ const section = (title) => `\n${color(C.bold + C.magenta, title)}`;
20
+
21
+ const links = {
22
+ website: "https://rahulxf.com",
23
+ github: "https://github.com/manzil-infinity180",
24
+ x: "https://x.com/rahulxf_",
25
+ linkedin: "https://www.linkedin.com/in/rahulxf/",
26
+ youtube: "https://www.youtube.com/@rahulxfd",
27
+ blog: "https://rahulxf.com/blog",
28
+ oss: "https://rahulxf.com/oss",
29
+ projects: "https://rahulxf.com/projects",
30
+ log: "https://rahulxf.com/log",
31
+ aflock: "https://github.com/aflock-ai/aflock",
32
+ rookery: "https://github.com/aflock-ai/rookery",
33
+ witness: "https://github.com/in-toto/witness",
34
+ kubestellar: "https://github.com/kubestellar/kubestellar",
35
+ submitty: "https://github.com/Submitty/Submitty",
36
+ gsocReport: "https://submitty.org/developer/google_summer_of_code/2024_Rahul_Vishwakarma",
37
+ gsocProposal:
38
+ "https://drive.google.com/file/d/1ZGq7FUavp9ACvwkaxtZEQE35A-1KVj09/view?usp=drivesdk",
39
+ gsocPlaylist: "https://www.youtube.com/playlist?list=PL7CEUHGZqtd99Iafp-H9DeBIMaLbEC70c",
40
+ cncfMentoring: "https://github.com/cncf/mentoring",
41
+ };
42
+
43
+ const output = [
44
+ color(C.bold + C.green, "Rahul Vishwakarma / rahulxf"),
45
+ color(
46
+ C.gray,
47
+ "Software engineer, open source contributor, GSoC developer, LFX mentee, and software supply chain security explorer.",
48
+ ),
49
+
50
+ section("Links"),
51
+ row("Website", links.website),
52
+ row("GitHub", links.github),
53
+ row("Blog", links.blog),
54
+ row("OSS / GSoC", links.oss),
55
+ row("Projects", links.projects),
56
+ row("Log", links.log),
57
+ row("YouTube", links.youtube),
58
+ row("X", links.x),
59
+ row("LinkedIn", links.linkedin),
60
+
61
+ section("Current focus"),
62
+ bullet("Software supply chain security through in-toto, attestations, and SBOM-adjacent workflows."),
63
+ bullet("Contributing to Witness & Archivista, aflock, and Kubernetes-related projects."),
64
+ bullet("Building more in Go, TypeScript, and cloud-native systems."),
65
+
66
+ section("Recent milestones"),
67
+ bullet("Speaker at KubeCon + CloudNativeCon India 2026 for an in-toto Witness maintainer talk."),
68
+ bullet("Open Source Intern at TestifySec."),
69
+ bullet("Contributor to aflock and rookery."),
70
+ bullet("LFX Mentee at KubeStellar."),
71
+ bullet("GSoC 2024 Developer at Submitty."),
72
+
73
+ section("Open source work"),
74
+ row("Witness", links.witness),
75
+ row("Aflock", links.aflock),
76
+ row("Rookery", links.rookery),
77
+ row("KubeStellar", links.kubestellar),
78
+ row("Submitty", links.submitty),
79
+
80
+ section("Selected projects"),
81
+ bullet("Kubernetes CVE Scanner with a custom controller, webhook, Trivy, and admission checks."),
82
+ bullet("DumpStore: a full-stack bookmark platform with React, Node.js, Kubernetes, and ArgoCD."),
83
+ bullet("A real-time WebRTC collaboration app with messaging, file sharing, Monaco, and Yjs."),
84
+
85
+ section("GSoC / LFX / OSS guidance"),
86
+ bullet("Start early, contribute consistently, and write proposals grounded in real project understanding."),
87
+ bullet(`Advice page: ${links.oss}`),
88
+ bullet(`GSoC 2024 final report: ${links.gsocReport}`),
89
+ bullet(`GSoC proposal: ${links.gsocProposal}`),
90
+ bullet(`YouTube playlist: ${links.gsocPlaylist}`),
91
+ bullet(`CNCF mentoring repo: ${links.cncfMentoring}`),
92
+
93
+ section("Run again"),
94
+ color(C.blue, "npx @rahulxf/about-me"),
95
+ ];
96
+
97
+ process.stdout.write(`${output.join("\n")}\n`);
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@rahulxf/about-me",
3
+ "version": "1.0.0",
4
+ "description": "A small npx package that prints Rahul Vishwakarma's about page, projects, OSS work, and GSoC/LFX links.",
5
+ "bin": {
6
+ "about-me": "index.js"
7
+ },
8
+ "files": [
9
+ "index.js",
10
+ "README.md"
11
+ ],
12
+ "keywords": [
13
+ "rahulxf",
14
+ "about-me",
15
+ "npx",
16
+ "open-source",
17
+ "gsoc",
18
+ "lfx",
19
+ "kubernetes",
20
+ "in-toto"
21
+ ],
22
+ "homepage": "https://rahulxf.com",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/manzil-infinity180/about-me.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/manzil-infinity180/about-me/issues"
29
+ },
30
+ "license": "MIT",
31
+ "author": "Rahul Vishwakarma <rahulvs2809@gmail.com>",
32
+ "type": "commonjs",
33
+ "engines": {
34
+ "node": ">=18"
35
+ }
36
+ }