Picture of the author

Toukir islam Shovo

Full stack developer

Torino , Italy

Passionate web developer focused on creating clean, efficient, and scalable web applications with a modern tech stack. Specialized in Angular, TypeScript, and Supabase, delivering responsive and intuitive user interfaces. Even my name includes dev.
npx connect

Initializing...

Ready to connect...

Waiting for contact request...

1interface Developer {
2    name: string;
3    skills: string[];
4    interests: string[];
5};
6
7interface TechStack {
8    devOps: string[];
9    backend: string[];
10   frontend: string[];
11};
12
13type ContactType = 'github' | 'twitter' | 'linkedIn' | 'email';
14
15const techStack: TechStack = {
16    devOps: [
17        'GitLab',
18        'GitHub',
19        'Docker',
20    ],
21    frontend: [
22        'React',
23        'React native',
24        'JavaScript',
25        'TypeScript',
26        'TailwindCSS',
27        'SCSS',
28    ],
29    backend: [
30        'Node.js',
31        'Express',
32        'PostgreSQL',
33        'MySQL',
34    ]
35};
36
37// Developer profile
38const me: Developer = {
39    name: 'Toukir Islam Shovo',
40    skills: [
41        ...techStack.devOps,
42        ...techStack.backend,
43        ...techStack.frontend
44    ],
45    interests: [
46        'Open Source',
47        'Performance',
48        'Self-Hosting',
49        'Networking',
50    ]
51};
52
53// Contact function
54const contact = (type: ContactType): string => {
55    switch (type) {
56        case 'github':
57            return 'https://github.com/Shovoodev';
58        case 'x':
59            return 'https://x.com/shovodevv';
60        case 'linkedIn':
61            return 'https://www.linkedin.com/in/toukir-islam-shovo-5b2576168/';
62        case 'email':
63            return 'Shovoodev@gmail.com';
64    }
65};