Skip to content
View whyuhurtz's full-sized avatar
๐Ÿ˜น
miaww
๐Ÿ˜น
miaww

Highlights

  • Pro

Block or report whyuhurtz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
whyuhurtz/README.md

Hi! Welcome to My World.

Battle Programmer Shirase Pc GIF Work Computer GIF
CodeWars CodeForces

About Me

# 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()

Connect with me :D

Gmail LinkedIn Instagram Twitter Facebook

Pinned Loading

  1. cilogs cilogs Public

    A simple shell script to automate centralizing log server process.

    Shell

  2. SaFeTP SaFeTP Public

    Proyek Shell Scripting dan Jaringan Server (Semester 4).

    Shell

  3. Smartendance Smartendance Public

    HTML 1

  4. simple-docker-flask-mqtt simple-docker-flask-mqtt Public

    Sample code of my experiment task, which is running flask app and mosquitto broker inside docker container.

    C++