# who_am_i.py
import json
import base64
class WhoAmI:
def __init__(self, name, age, pronouns, country, current_job, interest, hobby, tech_stacks):
self.name = name
self.age = age
self.pronouns = pronouns
self.country = country
self.current_job = current_job
self.interest = interest
self.hobby = hobby
self.tech_stacks = tech_stacks
def __secret_life(self):
x = "V2F0Y2hpbmcgYW4gYW5pbWUgOnY=".encode('ascii')
y = base64.b64decode(x).decode('ascii')
return y
def Introduction(self):
print(f"๐ Hi, my name is {self.name} and I'm now {self.age} yo.")
print(f"๐ฆ My pronouns is {self.pronouns}.")
print(f"๐ฎ๐ฉ My nationality is {self.country}.")
print(f"๐จโ๐ Currently I'm a {self.current_job}.")
print(f"๐งโ๐ป I'm very interesting on a {self.interest}.")
print(f"๐ฎ My hobby is doing {self.hobby} at some time to fill my free time.")
print(f"๐ My favorite tech stacks is:\n{json.dumps(self.tech_stacks, indent=2)}")
Me = WhoAmI("Wahyu Priambodo", 21, "He | Him", "Indonesian", "college student at Politeknik Negeri Jakarta (Jakarta State Polytechnic)",
"back-end development", "bug hunting or CTF challenges", {
"Langs":
[
"C++",
"Java",
"Python",
"PHP",
"JavaScript"
],
"Db":
[
"MySQL",
"MongoDB"
],
"Tools":
[
"Docker",
"VSCode",
"Burp Suite"
],
"OSes": {
"Hacker mode": "Kali Linux WSL",
"Daily-based": "Windows"
}
})
Me.Introduction()
๐
TraPpeD iN tHe LonEliNesS.
Pinned Loading
-
il-group-portfolio
il-group-portfolio PublicA simple website to introduce our team in the IBM HCRHโInfinite Learning program.
HTML
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.