Please feel free to correct my English.

The Lemming formerly known as /u/SatyrSack@lemmy.one

  • 89 Posts
  • 290 Comments
Joined 2 months ago
cake
Cake day: September 28th, 2024

help-circle


  • SatyrSack@feddit.orgto2meirl4meirl@lemmy.world2meirl4meirl
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 hours ago

    Can someone help me find that picture of a cartoon sloth saying something like “Once I get my life together, it’s over for you bitches”? I rememeber seeing it on Reddit a lot. Due to its popularity, the cartoonist published a picture book of series of different cartoon animals saying funny things, and none were anywhere near as good as the sloth one. It was very popular, but can’t find it now!












  • I agree that using a code block is not the right way to handle quotes, but you can control the syntax highlighting in a markdown code block by adding a language identifier.


    ```
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    ```
    
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    

    ``` text
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    ```
    
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    

    ``` cpp
    bool getBit(int num, int i) {
        return ((num & (1<<i)) != 0);
    }
    ```
    
    bool getBit(int num, int i) {
        return ((num & (1<<i)) != 0);
    }
    

    ``` python
    def add(a, b):
        return a + b
    ```
    
    def add(a, b):
        return a + b