@storage_qi · Post #1237 · 23.12.2025 г., 08:54
#UserInterview#UXResearch#ProductDevelopment#UserFeedback#DesignThinking https://heiskr.com/stories/interviewing-prospective-users
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #242 · 7 мај
Теперь запакуем строку. В этом случае следует передавать тип данных bytes. >>> struct.pack('=s', b'a') b'a' Для записи слова следует указывать количество символов. >>> struct.pack('=5s', b'hello') b'hello' Кстати, запакованный вид соответствует исходному тексту. Всё верно, символ есть в таблице ASCII, то есть его код попадает в диапазон 0-127, он может быть записан одним байтом и имеет визуальное представление. А вот что будет если добавить символ вне ASCII >>> struct.pack(f'=s', b'ё') SyntaxError: bytes can only contain ASCII literal characters. Ошибка возникла еще на этапе создания объекта bytes, который не может содержать такой символ. Поэтому надо кодировать эти байты из строки. >>> enc = 'ёжик'.encode('utf-8') >>> struct.pack(f'={len(enc)}s', enc) b'\xd1\x91\xd0\xb6\xd0\xb8\xd0\xba' Заметьте, длина такой строки в байтах отличается от исходной длины, так как символы вне ASCII записываются двумя байтами и более. Поэтому здесь формат создаём на лету, используя получившуюся длину как каунтер токена. #libs#basic
Пребарај: #userfeedback
@storage_qi · Post #1237 · 23.12.2025 г., 08:54
#UserInterview#UXResearch#ProductDevelopment#UserFeedback#DesignThinking https://heiskr.com/stories/interviewing-prospective-users
@venturevillagewall · Post #3446 · 19.12.2024 г., 13:01
Insight on Pricing Strategy A Telegram bot for online store owners is launching with a subscription price of 320 rubles per month, which is lower than competitors to attract users. The creator struggled with pricing, consulting friends and family, leading to a divide in opinions. A seasoned relative advised that the price might be too low, suggesting a higher price to target a more serious audience. The discussion emphasizes that proper pricing should balance economic viability and marketing return, stating that high perceived value justifies higher pricing. Key takeaway: avoid relying on inexperienced opinions about business strategies. #Subscription#Ecommerce#PricingStrategy#MarketResearch#OnlineStore#BusinessAdvice#UserFeedback#ProductValue#Entrepreneur#Marketing#TelegramBot#ValuePricing#MarketCompetition#ConsumerInsights#Startup#BusinessModel