You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried both online convertor and python scritp, but both say in isn't base64
import base64
# string found in latest-linux.yml
encoded_str = "n2D39uHh3o34wfufs1MZIfikHxXAv/H+DkLbWjh5kG0uILPtq3Exc8WHe0Pbpvc5Un3sAbriKb9+87dBBkpNeg=="
# Decode the Base64 string
decoded_bytes = base64.b64decode(encoded_str)
try:
# Try to convert the decoded bytes to a string
decoded_str = decoded_bytes.decode('utf-8')
print("Decoded string:", decoded_str)
except UnicodeDecodeError:
# The decoded bytes are not a valid UTF-8 string, might be binary data
print("Decoded bytes could not be converted to a UTF-8 string.")
Also I cannot find corresponding .yaml file for .deb package
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I've tried both online convertor and python scritp, but both say in isn't base64
Also I cannot find corresponding .yaml file for .deb package
Beta Was this translation helpful? Give feedback.
All reactions