ismetcan 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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +65 -0
  3. package/index.js +140 -0
  4. package/package.json +35 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 İsmet Can Bıyık
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # ismetcan
2
+
3
+ > **Interactive terminal CV of İsmet Can Bıyık — Software Engineer focused on real-world backend and full-stack systems**
4
+
5
+ Run this command to see my developer profile in your terminal:
6
+
7
+ ```bash
8
+ npx ismetcan
9
+ ```
10
+
11
+ ---
12
+
13
+ ## What is this?
14
+
15
+ `ismetcan` is an **interactive CLI portfolio** that presents my professional profile the way engineers actually like to see it — inside the terminal.
16
+
17
+ Instead of a PDF or a static web page, this tool allows recruiters and developers to explore:
18
+
19
+ - Who I am
20
+ - What I build
21
+ - Which systems I’ve worked on
22
+ - The live projects I’ve shipped
23
+
24
+ all from a single command.
25
+
26
+ ---
27
+
28
+ ## What you’ll see
29
+
30
+ When you run `npx ismetcan`, you will get:
31
+
32
+ - My professional identity and engineering focus
33
+ - My real-world tech stack (TypeScript, Node.js, React, NestJS, PostgreSQL, MongoDB, Prisma, AWS)
34
+ - My experience at Duosoft, Smart Bee (UK), Elegant Ofis (Elit Hair & Elit Klinik)
35
+ - Direct links to **live production systems** I’ve built
36
+ - Access to my GitHub, LinkedIn, website, and email
37
+ - A QR code to instantly open my LinkedIn profile
38
+
39
+ This CLI reflects the same profile shown in my CV and real production work.
40
+
41
+ ---
42
+
43
+ This project demonstrates that I:
44
+
45
+ - Ship real software
46
+ - Care about developer experience
47
+ - Build systems that actually run
48
+
49
+ This is my **terminal CV**.
50
+
51
+ ---
52
+
53
+ ## Links
54
+
55
+ - **GitHub** — https://github.com/ismetcanbyk
56
+ - **LinkedIn** — https://linkedin.com/in/ismetcanbyk
57
+ - **Website** — https://ismetcanbyk.me
58
+ - **Instagram** — https://instagram.com/ismetcanbyk
59
+ - **Email** — ismetcanbyk@gmail.com
60
+
61
+ ---
62
+
63
+ ## License
64
+
65
+ MIT © İsmet Can Bıyık
package/index.js ADDED
@@ -0,0 +1,140 @@
1
+ #!/usr/bin/env node
2
+
3
+ import chalk from "chalk";
4
+ import boxen from "boxen";
5
+ import { select, intro, outro } from "@clack/prompts";
6
+ import fetch from "node-fetch";
7
+ import open from "open";
8
+ import qrcode from "qrcode-terminal";
9
+
10
+ console.clear();
11
+
12
+ /* ===== CONFIG ===== */
13
+ const GITHUB = "ismetcanbyk";
14
+ const LINKEDIN = "https://linkedin.com/in/ismetcanbyk";
15
+ const WEBSITE = "https://ismetcanbyk.me";
16
+ const EMAIL = "mailto:ismetcanbyk@gmail.com";
17
+
18
+
19
+
20
+ /* ===== GitHub Stats ===== */
21
+ async function getGitHubStats() {
22
+ const res = await fetch(`https://api.github.com/users/${GITHUB}`);
23
+ const data = await res.json();
24
+ return {
25
+ repos: data.public_repos,
26
+ followers: data.followers,
27
+ };
28
+ }
29
+
30
+ /* ===== HERO ===== */
31
+ async function showHero() {
32
+ const stats = await getGitHubStats();
33
+
34
+ const hero = `
35
+ ${chalk.bold.cyan("İsmet Can Bıyık")}
36
+ ${chalk.white("Software Engineer | Full-Stack & Backend Focus")}
37
+
38
+ Production-grade web & mobile systems
39
+ Node.js • TypeScript • React • PostgreSQL • MongoDB • Prisma • AWS
40
+
41
+ Experience:
42
+ • Backend Developer at Duosoft
43
+ • Full-Stack Engineer at Smart Bee (UK)
44
+ • Full-Stack Developer at Elegant Ofis (Elit Hair & Elit Klinik)
45
+
46
+ GitHub: ${stats.repos} public repos • ${stats.followers} followers
47
+ `;
48
+
49
+ console.log(
50
+ boxen(hero, {
51
+ padding: 1,
52
+ margin: 1,
53
+ borderStyle: "round",
54
+ borderColor: "cyan",
55
+ })
56
+ );
57
+ }
58
+
59
+
60
+ /* ===== PROJECT SELECTOR ===== */
61
+ async function showProjects() {
62
+ const project = await select({
63
+ message: "Select a live project to open",
64
+ options: [
65
+ {
66
+ label: "Hayvanım Pazarda — Live marketplace",
67
+ value: "https://www.hayvanimpazarda.com",
68
+ },
69
+ {
70
+ label: "IBANControl — IBAN validation service",
71
+ value: "https://ibancontrol.com/en",
72
+ },
73
+ {
74
+ label: "AI Blog Writer — Open-source AI platform",
75
+ value: "https://github.com/ismetcanbyk/AIBlogWriter",
76
+ },
77
+ {
78
+ label: "← Back",
79
+ value: null,
80
+ },
81
+ ],
82
+ });
83
+
84
+ if (project) {
85
+ await open(project);
86
+ }
87
+ }
88
+
89
+
90
+ /* ===== MAIN MENU ===== */
91
+ async function showMenu() {
92
+ const action = await select({
93
+ message: "What would you like to see?",
94
+ options: [
95
+ { value: "projects", label: "🧩 Live production projects" },
96
+ { value: "github", label: "🧠 GitHub (What am I building?)" },
97
+ { value: "linkedin", label: "🏗 LinkedIn (Experience)" },
98
+ { value: "website", label: "🌐 Personal website" },
99
+ { value: "email", label: "📬 Contact me" },
100
+ { value: "exit", label: "❌ Exit" },
101
+ ],
102
+ });
103
+
104
+ if (action === "projects") await showProjects();
105
+ if (action === "github") await open(`https://github.com/${GITHUB}`);
106
+ if (action === "linkedin") await open(LINKEDIN);
107
+ if (action === "website") await open(WEBSITE);
108
+ if (action === "email") await open(EMAIL);
109
+
110
+ return action;
111
+ }
112
+
113
+
114
+
115
+ /* ===== QR ===== */
116
+ function showQR() {
117
+ console.log();
118
+ qrcode.generate(LINKEDIN, { small: true });
119
+ }
120
+
121
+ /* ===== RUN ===== */
122
+ async function run() {
123
+ let running = true;
124
+
125
+ while (running) {
126
+ console.clear();
127
+ await showHero();
128
+
129
+ const action = await showMenu();
130
+
131
+ if (action === "exit") {
132
+ running = false;
133
+ }
134
+ }
135
+
136
+ showQR();
137
+ }
138
+
139
+ await run();
140
+
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "ismetcan",
3
+ "version": "1.0.0",
4
+ "description": "Ismet Can Biyik's developer business card - run 'npx ismetcan' to see profile",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "ismetcan": "./index.js"
8
+ },
9
+ "type": "module",
10
+ "scripts": {
11
+ "test": "node index.js"
12
+ },
13
+ "keywords": [
14
+ "business-card",
15
+ "cli",
16
+ "developer",
17
+ "portfolio",
18
+ "terminal",
19
+ "cv",
20
+ "resume"
21
+ ],
22
+ "author": "Ismet Can Biyik",
23
+ "license": "MIT",
24
+ "dependencies": {
25
+ "@clack/prompts": "^0.11.0",
26
+ "boxen": "^5.1.2",
27
+ "chalk": "^4.1.2",
28
+ "node-fetch": "^3.3.2",
29
+ "open": "^11.0.0",
30
+ "qrcode-terminal": "^0.12.0"
31
+ },
32
+ "engines": {
33
+ "node": ">=12"
34
+ }
35
+ }