Answer the question
In order to leave comments, you need to log in
Which microSD is suitable for storing samples?
I use a 256 GB MacBook for composing music. With all my samples and synths, there is quite a bit of space left, and I'm looking at how I can expand the space.
Buying an original (or non-original) SSD is quite expensive, so I look towards microSD cards, there is a connector on the beech that I don’t use.
Actually, there are two questions:
1) How durable are such cards, if you plan to record a bunch of files on them, which will then be played from the same cards?
2) What can you advise all the same in terms of reliability from 250GB?
Answer the question
In order to leave comments, you need to log in
Hi, here's my suggestion for solving the problem:
import datetime
import sys
from colorama import Fore, Back, Style, init
init()
def main():
try:
_, login, password = sys.argv
except ValueError:
login = password = ""
if password != "abrakadabra" or login != "root":
print(Fore.RED)
print("Неверный логин или пароль!")
exit()
print(Fore.GREEN)
print("Добро пожаловать!")
print(Fore.WHITE)
try:
name = input("Как тебя зовут?: ")
print("Приятно познакомиться, {}! Я - Джессика! Твой ассистент.".format(name))
while True:
question = input("Введите запрос: ")
if question == "Сколько сейчас времени?":
cur_time = datetime.datetime.today().strftime("%H.%M")
print("Сейчас: " + str(cur_time))
elif question == "Какая сегодня дата?":
date = datetime.datetime.today().strftime("%d.%m.%Y")
print("Сегодня у нас: " + str(date))
else:
print("Извините, я не могу понять ваш вопрос...")
except KeyboardInterrupt:
exit()
if __name__ == "__main__":
main()
How durable are such cards, if you plan to record a bunch of files on them, which will then be played from the same cards?
it's best to set up automatic data backup to a cloud or nas thread. and backupers and storage places to hell.
there will be protection from the breakdown of the media and from the encryptor and from everything else.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question