An open API service indexing awesome lists of open source software.

https://github.com/kotru21/kotru21

My GitHub readme:D
https://github.com/kotru21/kotru21

github github-profile-readme github-readme-profile markdown profile profile-readme readme widget

Last synced: 11 months ago
JSON representation

My GitHub readme:D

Awesome Lists containing this project

README

          

Hello there :D 👋








```JavaScript
// Here is some info about me:D

const kotru = {
name: "Arsenij Kotikov",
website: "https://kotikov.is-a.dev",
languages: ["JavaScript", "NodeJs", "HTML", "CSS", "Bootstrap", "PHP"],
nowLearning: ["C++", "Python"],

print: function() {
console.log("name:", this.name);
console.log("website:", this.website);
console.log("languages:", this.languages);
console.log("languages, learning:", this.nowLearning);
}
};

kotru.print();
```