Skip Navigation

User banner

cally [he/they]

@ callyral @pawb.social

Posts
4
Comments
393
Joined
3 yr. ago

what are you doing in my lemmy profile

  • Deleted

    Permanently Deleted

    Jump
  • Heat makes me sad because I hate sweating so I avoid sunlight and stay in a room with the fan on. I also dislike noise so I don't like having a fan or AC on, but what am I supposed to do? Only good thing about hot weather is taking a cold shower and enjoying it.

    My perfect weather is sunny and cold (between 10°C and 20°C). I love sunlight but it'd be nice if it didn't heat things up too much. I wish this kind of weather happened more often but sadly it's usually a few random days where it's suddenly colder for some reason.

  • To make it clear that it's sarcasm

  • Deleted

    Permanently Deleted

    Jump
  • But why is it at that distance specifically? Can I get closer to a rainbow and see it become bigger? Why is there a 42° angle in the picture?

  • Dutch, French or Japanese.

    Dutch because I would like to live in or at least visit the Netherlands some day,

    French or Japanese because French is interesting and learning Japanese unlocks a whole other side of the internet (and UI design), and anime without subtitles.

    Out of those I'd probably pick Japanese, as Dutch is relatively easier to learn by non-magical means.

  • On a related note, I love olive oil but hate olives, because anytime a dish has olives at all, it tastes like there's too many olives. It's like the olive takes away the taste from the other ingredients and replaces everything with olive taste.

    Cilantro tastes fine to me though.

  • Hosting your own instance will always cost money? Either as an electricity bill, or in the form of paying someone else's electricity bill and server maintenance for conveniencd. Even self-hosted server admins pay with their time in away also, there's even moderation to consider as well.

  • So, how's your grandpa?

  • Which vegetables are supposed to be bitter?

  • Deleted

    Permanently Deleted

    Jump
  • They shut down third party apps. Now I like it better here :3

  • A hero

    Jump
  • that's an evil land shrimp

  • Technically, Alpine Linux is Linux, sans GNU. Perhaps it can be called musl/Linux or busybox/Linux.

  • Mooshroom is the only one I can think of right know, I think their meat would taste like standard cow meat but embedded with mushroom flavor or something like that.

    Oh! Also could SCP-999 taste good? It's like a blob of orange jello from what I recall. I wouldn't want to eat it but it would probably taste good.

  • No, I haven't.

  • Competition for most humble and selfless person. Yeah, I'd win.

  • You can't just say "perchance".

  • Like nearly as fluent except when I get lazy and stop thinking of "fancy" words to write. English has a lot of fancy words: vocabulary synonymous to other elements of the lexicon. I don't know those types of words in Portuguese lol.

    I can understand movies fine but prefer captions regardless of the language being spoken unless I am in a very quiet room.

    I'm brazilian and my family thinks I am really smart for knowing another language but really I just watched YouTube when i was a kid so uh yeah I'm not sure how fluent I actually am since I've only met other second language speakers.

  • Gen Y are Millennials

  • first day of pre-school/kindergarten, i thought my mom was gonna stay in the room with me for the first day, she did not, i felt betrayed. that is my supervillain origin story.

  • perhaps i too will post code on the internet

    here is a shell script i wrote for automating filenames for markdown files (blog posts):

     bash
        
    #!/bin/sh
    set -e
    
    datecmd="date +%Y-%m-%d"
    
    if [ -z "$1" ]; then
      printf "Post title: " >&2
      read -r title
    else
      title="$1"
    fi
    
    file="$($datecmd)_$title.md"
    
    if [ -f "$file" ]; then
      printf "Error: post '$file' already exists.\n" >&2
      exit 1
    fi
    
    ${EDITOR:-nano} "$file"
    
    
      

    im not sure why i made it since i could just look at what date it is and write it down manually in the file name, but i felt like doing that as a quick hack