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 🤩
- Host: GitHub
- URL: https://github.com/bittricky/bittricky
- Owner: bittricky
- Created: 2021-07-31T20:18:13.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-05-14T07:02:15.000Z (about 1 month ago)
- Last Synced: 2026-05-14T09:11:05.162Z (about 1 month ago)
- Topics: actions, github-profile-readme, markdown
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/bittricky)
```
npx bittricky
```
## Why, Hello there! 👋🏽

```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();
```