Skip to content
View realasfngl's full-sized avatar

Block or report realasfngl

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
realasfngl/README.md

Hi, im Neon

from typing    import Dict, Union, Any, List
from bs4       import BeautifulSoup
from curl_cffi import requests
from colorama  import Fore

from core      import Run

class Body:
    """
    My whole body and information!
    """
    def __init__(self) -> None:
            
        self.name: str = "Neon"
        self.age: int = 16
        self.country: str = "Germany"
        
        self.topics: List[str] = ["Reverse Engineering", "Antibot Bypassing", "Web Automation"]
        self.main_languages: List[str] = ["Python", "JS"]
        self.middle_knowledge: List[str] = ["Batch", "Html", "Lua", "Java"]
        self.learning: List[str] = ["Rust"]
        self.hated_languages: List[str] = ["C++", "Go"]
        
        self.interests: List[str] = ["coding for fun", "Playing games", "cooking"]
        
        self.social_media: Union[str, int, Any] = {
            "Discord": "njk0mja",
            "Telegram": "@neonasfngl",
            "Whatsapp": ‪491636478284‬,
            "Github": "https://github.com/realasfngl"
        }
    
    @Run.Error
    def projects(self) -> list:
        """
        Getting my repositories heh
        """
        repositories: list = []
        
        github: str = self.social_media["Github"]
        
        repositories_req: requests.models.Response = requests.get(f"{github}?tab=repositories")
        
        repositories.extend(
            [
                f"https://github.com{a['href']}" for a in BeautifulSoup(repositories_req.text, "html.parser").find_all("a", itemprop="name codeRepository")
            ]
        )
        return repositories

Popular repositories Loading

  1. perimeter-x perimeter-x Public

    All perimeter-x files deobfuscated (atleast from the versions i could find)

    JavaScript 11 1

  2. geetest_v4 geetest_v4 Public

    Geetest v4 solver reversed, uploaded because of 2 scammers.

    Python 5 1

  3. realasfngl realasfngl Public

    1