@testflightynoti · Post #38175 · 12.05.2026 г., 19:04
#VoicePad#AI#Dictation Join the VoicePad AI Dictation beta on ✈️#TestFlight 🔗 Link: https://testflight.apple.com/join/bbmnyyS4 Shared by Dimitri
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #60 · 31 мар.
Вторая по частоте future-функция, которую я использовал, это абсолютный импорт from __future__ import absolute_import Что она делает? Изменения, которые вносит эта инъекция описаны в PEP328 Покажу простой пример. Допустим, есть такой пакет: /my_package /__init__.py /main.py /string.py Смотрим код в my_package/main.py # main.py import string Простой пример готов) Вопрос в том, какой модуль импортируется в данном случае? Есть два варианта: 1. модуль в моём пакете my_package.string 2. стандартный модуль string И вот тут вступает в дело приоритет импортов. В Python2 порядок следующий: помимо иных источников, раньше ищется модуль внутри текущего пакета, а потом в стандартных библиотеках. Таким образом мы импортнём my_package.string. Но в Python3 это поведение изменилось. Если мы указываем просто имя пакета, то ищется именно такой модуль, игнорируя имена в текущем пакете. Если мы хотим импортнуть именно подмодуль из нашего пакета то, мы должны теперь явно это указывать. from my_package import string или относительный импорт, но с указанием пути относительно текущего модуля main from . import string Еще одной неоднозначностью меньше 😎 Подробней про импорты здесь: https://docs.python.org/3/tutorial/modules.html #2to3#pep#basic
Пребарај: #dictation
@testflightynoti · Post #38175 · 12.05.2026 г., 19:04
#VoicePad#AI#Dictation Join the VoicePad AI Dictation beta on ✈️#TestFlight 🔗 Link: https://testflight.apple.com/join/bbmnyyS4 Shared by Dimitri
@RusEmbIndia_Ru · Post #14913 · 14.04.2026 г., 08:01
Дорогие друзья! 📚 Русский дом в Нью-Дели приглашает вас принять участие в международной исторической акции «Диктант Победы». 📆 Ждем Вас 24 апреля в 12:00. 🔗 Язык диктанта - русский и английский. 🏢 Место проведения: Русский дом в Нью-Дели. 📍Адрес: 24, Фироз Шах Роуд, г. Нью-Дели. ✅ Вход для посетителей мероприятия - свободный. 🔗При себе необходимо обязательно иметь ID-карту (на бумажном носителе). 💎 Не упустите возможность стать частью важного события! Ждем Вас! #РусскийДом#Диктант#Индия Dear friends! 📚 The Russian House in New Delhi invites you to participate in the international historical campaign "Victory Dictation." 📆 We look forward to seeing you on April 24 at 12:00 p.m. 🔗 The language of the dictation is Russian and English. 🏢 Venue: Russian House in New Delhi. 📍Address: 24, Firoz Shah Road, New Delhi. ✅ Entrance for visitors to the dictation is free. 💎 Don't miss the opportunity to become part of an important event! We are waiting for you! #RussianHouse#Dictation#India
@libreware · Post #1477 · 07.08.2025 г., 03:49
WhisperTux Simple #voice#dictation application for #Linux. Uses whisper.cpp for offline speech-to-text transcription. No fancy GPUs are required although whisper.cpp is capable of using them if available. Once your speech is transcribed, it is sent to a ydotool daemon that will write the text into the focused application. Features Local speech-to-text processing via whisper.cpp (no cloud dependencies) No expensive hardware required (works well on a plain x86 laptop with AVX instructions) Global keyboard shortcuts for system-wide operation Automatic text injection into focused applications Configurable whisper models and shortcuts https://github.com/cjams/whispertux #assistant#speech#stt