posts from @amypercent tagged #script

also:

amypercent
@amypercent

I'm looking for an app or website that I can bulk upload photos to, that works on both my phone and computer, and that allows for custom tagging.

I'm willing to pay a little bit of money (like a couple dollars a month) but not a whole lot


amypercent
@amypercent

The main thing missing is bulk upload but I could probably write a script for that



amypercent
@amypercent

               __
    __        /  \
   |   \      |   /
    \   \------__/
   / \  |           ⟍
  /                   \
  |           ⬤   ⬤  |
   \            ⏖    /
     ⟍ ___________ ⟋ 
     / / /           \

amypercent
@amypercent

Flipped with this program, then tweaked a bit manually

eggbug = r'''
               __
    __        /  \
   |   \      |   /
    \   \------__/
   / \  |           ⟍
  /                   \
  |           ⬤   ⬤  |
   \            ⏖    /
     ⟍ ___________ ⟋ 
     / / /           \
'''

flipped = {
    '⟋': '⟍',
    '/': '\\'
}
flipped.update({v: k for k, v in flipped.items()})

flip_table = str.maketrans(flipped)

length = max(len(line) for line in eggbug.splitlines())
for line in eggbug.splitlines():
    reversed_line = line.ljust(length)[::-1]
    final_line = reversed_line.translate(flip_table)
    print(final_line)