Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### Name: Muhammad Shahmeer
- Place: Abu Dhabi, United Arab Emirates
- Bio: AI Systems Architect and Visionary.
- GitHub: [shahmeer-zx](https://github.com/shahmeer-zx)

#### Name: Vallenain
- Place: Lyon, France
- Bio: Software engineer. Graduated from INSA Lyon.
Expand Down Expand Up @@ -2426,4 +2431,4 @@ Noida
#### Name: [Ítalo Epifânio](https://github.com/itepifanio)
- Place: Natal, Brazil
- Bio: Web developer PHP and Python
- Github: [Ítalo Epifânio](https://github.com/itepifanio)
- Github: [Ítalo Epifânio](https://github.com/itepifanio)
22 changes: 22 additions & 0 deletions scripts/Hacktoberfest_Greeter_shahmeer-zx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// LANGUAGE: JavaScript
// ENV: Node.js
// AUTHOR: Muhammad Shahmeer
// GITHUB: https://github.com/shahmeer-zx


import random

messages = [
"🎃 Happy Hacktoberfest, code warrior!",
"👾 You just earned +100 open-source karma!",
"🧠 Keep hacking, keep learning, keep growing!",
"🚀 One commit closer to glory!",
"💻 May your PRs be merged and your bugs be few!"
]

def greet():
name = input("What's your name, hacker? ")
print(f"\nHey {name}! {random.choice(messages)}\n")

if __name__ == "__main__":
greet()