Skip to content
View megahomyak's full-sized avatar
🙂
Life is good when *actually* nice people are around
🙂
Life is good when *actually* nice people are around

Organizations

@linksplatform
Block or Report

Block or report megahomyak

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

Public apology

This apology is intended for everyone whomst I've hurt in the past year and a half.

I cannot recall everyone who suffered because of me, and I really hope to reach you at least this way.

I'm sorry.

For the last year I've been behaving like an absolute prick. I've bothered other people with my problems, vented to them, even blamed some people for my own mistakes. Some people left me, some tried to make me feel better, but I kept pressing on the ones that were staying, filling them with negativity. I was thinking that people were bad to me. No, they weren't. It was me who acted like a villain. I used people's good attitude for my own enjoyment. I was careless, disrespectful, and in fact incredibly selfish and unable to behave.

After the bad events passed, I learned a lot. I want to thank people who were rejecting me: you made me go out of my informational bubble and reconsider my life principles. I've learned to be nice to people I interact with. Now I'm trying to make every conversation with me good for the other person, and I will never use anyone as a tool for venting.

In conclusion, I would like to also thank everyone who had interacted with me in the past. Thank you for your patience. Things like those that happened will never happen again. I am very sorry.

Pinned

  1. sleep_with_human_readable_time.py sleep_with_human_readable_time.py
    1
    import time
    2
    
                  
    3
    
                  
    4
    class Sleepy(type):
    5
    
                  
  2. 256-256-256 RGB HEX => it's-your-cho... 256-256-256 RGB HEX => it's-your-choice RGB => 256-256-256 RGB HEX. Used to convert some 256-256-256 colors to 8-8-4.
    1
    def tuple_to_hex(tup):
    2
        return "".join(map(
    3
            lambda n: hex(n)[2:].zfill(2),
    4
            tup
    5
        ))
  3. Disable or enable Windows Defender (... Disable or enable Windows Defender (DISABLE TAMPERING PROTECTION MANUALLY FIRST!!!)
    1
    @ECHO OFF
    2
    
                  
    3
    if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
    4
    
                  
    5
    set /p what_to_do=enable or disable windows defender?:
  4. A tiny soundboard written in three m... A tiny soundboard written in three minutes.
    1
    from readchar import readchar
    2
    from playsound import playsound
    3
    import os
    4
    
                  
    5
    sound_names = os.listdir("sounds")
  5. Finds coefficients for quadratic equ... Finds coefficients for quadratic equations using bruteforce. Use only when you cannot find them by yourself
    1
    known_points = [(-2, -1), (-3, 1), (1, 5)]
    2
    
                  
    3
    step = 0.25
    4
    max_value = 3
    5
    
                  
  6. A batch file that is just a shortcut... A batch file that is just a shortcut for youtube-dl
    1
    @ECHO OFF
    2
    set /p url=url: 
    3
    set /p audio_extracting=do extract audio or no (yes/no)?: 
    4
    if "%audio_extracting%" == "yes" (
    5
    	youtube-dl %url% -x --audio-format mp3