• 1 Post
  • 34 Comments
Joined 1 year ago
cake
Cake day: June 26th, 2023

help-circle


  • I remember the song but I absolutely did not make the connection.

    Now, what the heck is the last line? Kagi gave me this, but I still have no idea.

    Based on the information provided, the phrase “skibidi ohio rizz” refers to the following:

    “Skibidi” is a reference to a series of surreal videos on YouTube featuring an “army of human-headed toilets fighting a war against another army of camera-headed people”. It is used to describe something that is “nonsense, to the point of absurdity”.

    “Ohio” in this context means “weird or bad”. It is used to describe something that is “cursed” or extremely strange and funny.

    “Rizz” is short for “charisma”. So “Ohio rizz” refers to “weird, cursed, or strange flirting behavior”.

    Putting it all together, “skibidi ohio rizz” means someone has terrible, bizarre, or uncool flirting skills.

    In summary, the phrase “skibidi ohio rizz” is a piece of Gen Alpha slang that refers to someone exhibiting very strange and awkward flirting or social behavior.




  • It’s because there is no clear indication of where a block ends.

    Here is some sample code. I find it difficult to tell how many indentations I have or where I need to write if I want to continue at a certain level.

    import time
    import aiohttp
    
    """
    Retreives the data from RSS URL and return the status codes as well as the data. Return -1 if something went wrong.
    """
    async def get_rss_feed(rss_url):
        async with aiohttp.ClientSession() as session:
            try:
                retry_count = 0
                while retry_count < 5:
                    async with session.get(rss_url) as resp:
                        if resp.status == 200:
                            return {'status': resp.status, 'data': await resp.text()}
                        else:
                            retry_count += 1
                            time.sleep(60)
                if retry_count == 5:
                    raise ValueError('To many failed connection attempts', retry_count)
            except aiohttp.InvalidURL as error:
                return {'status': -1, 'data': f"Error: {rss_url} is not a valid URL.", 'error': error}
            except aiohttp.ClientConnectorError as error:
                return {'status': -1, 'data': f"Error: Could not connect to {rss_url}.", 'error': error}
            except ValueError as error:
                return {'status': -1, 'data': f"Error: Could not connect to {rss_url} after {retry_count} attempts.", 'error': error}