# whoami.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)",
[ "sysadmin", "bug bounty hunting", "ctf" ],
"Mobile Legends",
{
"Langs":
[
"C++",
"Java",
"Python",
"PHP",
"JavaScript"
],
"Db":
[
"MySQL",
"MongoDB"
],
"Tools":
[
"Docker",
"VSCode",
"Burp Suite"
]
}
)
Me.Introduction()
๐น
miaww
Just try to learn anything as I can :)
-
Jakarta State Polytechnic
- 0x41414141
- https://www.credly.com/users/wahyu-priambodo
- in/wahyu-priambodo
- @whyuhurtz
- whyuhurtz
Highlights
- Pro
Pinned Loading
-
-
-
-
simple-docker-flask-mqtt
simple-docker-flask-mqtt PublicSample code of my experiment task, which is running flask app and mosquitto broker inside docker container.
C++
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.