https://github.com/skvggor/skvggor
Father — street runner — skateboarder — senior dev at @radixeng.
https://github.com/skvggor/skvggor
github-readme readme
Last synced: about 1 year ago
JSON representation
Father — street runner — skateboarder — senior dev at @radixeng.
- Host: GitHub
- URL: https://github.com/skvggor/skvggor
- Owner: skvggor
- License: mit
- Created: 2021-03-30T18:26:16.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-28T20:14:54.000Z (about 1 year ago)
- Last Synced: 2025-03-29T04:48:57.462Z (about 1 year ago)
- Topics: github-readme, readme
- Homepage: https://trve.in
- Size: 554 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Weekly code
[](https://github.com/skvggor/skvggor/actions/workflows/main.yml)
Source: https://github.com/skvggor/waka-readme
```mermaid
pie
"TypeScript" : 76.1
"Markdown" : 6.0
"Bash" : 5.2
"Other" : 4.7
"JSON" : 2.6
```
## Bio
```typescript
interface ISkillSet {
front_end: string[];
back_end: string[];
general_languages: string[];
}
class Skills implements ISkillSet {
constructor(
public front_end: string[],
public back_end: string[],
public general_languages: string[]
) {}
}
const experience_summary = `
I am a senior full-stack developer with about 14 years of experience in large-scale projects
across advertising, marketing, telecommunications, and engineering sectors.
I have led technical teams, built applications using modern front-end frameworks like React and Vue,
and developed microservices in Go, Python, C#, and Node.js. My recent work focuses on improving
developer experience through automation and quality practices, leveraging my skills in both
front-end and back-end technologies.
`.trim();
const mySkills: ISkillSet = new Skills(
["React", "Vue", "MUI", "Tailwind CSS", "SCSS", "Stylus", "HTML"],
["Node.js", "Python", "Rust", "Clojure", "Apache Kafka", "GraphQL"],
["JavaScript", "TypeScript", "Java", "PHP"]
);
console.log("Experience Summary:", experience_summary);
console.log("Front-end Skills:", mySkills.front_end);
console.log("Back-end Skills:", mySkills.back_end);
console.log("General Languages:", mySkills.general_languages);
```