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

https://github.com/bittricky/bittricky

Github Profile Readme 🤩
https://github.com/bittricky/bittricky

actions github-profile-readme markdown

Last synced: about 1 month ago
JSON representation

Github Profile Readme 🤩

Awesome Lists containing this project

README

          

[![bittricky | NPM package](https://img.shields.io/npm/v/bittricky.svg?style=for-the-badge&color=red)](https://www.npmjs.com/package/bittricky)

```
npx bittricky
```

## Why, Hello there! 👋🏽



github-snake

```js
class Person {
constructor() {
this.name = "Mitul Patel";

this.languages = {
hindi: "hi-IN",
gujarati: "gu-IN",
english: "en-US",
};

this.tech = {
languages: ["JavaScript", "TypeScript", "Python", "SQL", "Bash"]
};
}

sayHi() {
console.log("Thanks for stopping by. Feel free to look around and explore.");
}
}

const me = new Person();
me.sayHi();
```