@WorldNews · Post #73596 · 25.03.2026 г., 14:39
'We negotiate with bombs': US secretary of war Pete Hegseth's warning to Iran as Trump talks peace [Read FullArticle] @WorldNews#IranConflict#USPolitics#PeaceNegotiations
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #201 · 13 јан.
Мы уже знаем, что на текущую сессию интерпретатора изменение PYTHONPATH никак не повлияет. Но если вы запустите дочерний процесс, то он унаследует окружение текущего процесса, а значит и изменения в любых переменных будут на него влиять. Вот небольшой пример: Объявляем переменную user@host:~$ export PYTHONPATH=/path1 Запускаем интерпретатор user@host:~$ python3 Проверим что в sys.path >>> import sys >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Добавляем что-то в переменную >>> import os >>> os.emviron['PYTHONPATH'] = '/path1:/path2' >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Изменений нет. Но давайте запустим дочерний процесс и посмотрим там >>> os.system('python3') # теперь мы находимся в другом процессе >>> import sys >>> print(sys.path) ['', '/path1', '/path2', '/usr/lib/...', ...] Тоже самое будет и с subprocess, так как по умолчанию текущее окружение тоже наследуется. >>> import subprocess >>> subprocess.call(['python3', '-c', 'import sys;print(sys.path)']) ['', '/path1', '/path2', '/usr/lib/...', ...] ______________________ Лучшей практикой является передача энвайронмента явно через аргумент env! import subprocess subprocess.call(cmd, env={'PYTHONPATH': '...'}) Это поможет точно понимать какое окружение будет у запускаемого процесса и при этом не изменять окружение текущего процесса. #basic
Hashtags
Пребарај: #peacenegotiations
@WorldNews · Post #73596 · 25.03.2026 г., 14:39
'We negotiate with bombs': US secretary of war Pete Hegseth's warning to Iran as Trump talks peace [Read FullArticle] @WorldNews#IranConflict#USPolitics#PeaceNegotiations
@CryptoM · Post #65310 · 12.04.2026 г., 20:05
🚀 Global Markets Brace for Volatility Amid Renewed Iran Conflict Concerns The potential resurgence of conflict in Iran following unsuccessful peace negotiations is raising concerns about increased volatility in global markets. Bloomberg posted on X that the recent fragile ceasefire had previously led to a significant rise in stock prices and a notable decrease in oil prices, marking the largest shifts seen this year. However, with the peace talks failing, market stability is once again under threat, prompting investors to brace for potential fluctuations. #GlobalMarkets#Volatility#IranConflict#PeaceNegotiations#OilPrices#StockMarket#Investors#MarketStability
@CryptoM · Post #65376 · 13.04.2026 г., 03:04
🚀 AI Technology Presents New Opportunities Amid Potential Financial Crisis On April 13, Liquid Capital founder Yi Lihua expressed optimism about the potential resolution of ongoing conflicts, noting that motivations for continued warfare are diminishing. According to BlockBeats, Yi emphasized that peace negotiations typically evolve from disagreement to consensus, suggesting that the conflict may gradually come to an end. He remarked that both sides have no reason to continue fighting, and the moment an agreement is reached could signal a positive market shift. Yi highlighted that, in the medium to long term, the market is anticipating a potential large-scale financial crisis. He observed defensive strategies in the financial sector, such as major capital holding high cash ratios and sovereign entities increasing gold reserves. In this context, if another crisis occurs, it will be a crucial test for Bitcoin's status as a safe-haven asset and may offer significant opportunities for low-level investment. Furthermore, Yi Lihua believes that AI technology is creating new opportunities for talented entrepreneurs. He noted that small teams can develop global products, reducing costs associated with financing and organizational management. Experienced serial entrepreneurs, in particular, should seize the opportunities presented by this "AI Age of Exploration." #AI#FinancialCrisis#Investment#Bitcoin#Entrepreneurship#Innovation#MarketOpportunities#Technology#PeaceNegotiations#GlobalProducts#BTC
@CryptoM · Post #65062 · 10.04.2026 г., 17:45
🚀 Iran's Leadership Revamp Amid Peace Talks with the US The ongoing conflict in Iran has prompted significant changes in the nation's leadership structure. Bloomberg posted on X that the Revolutionary Guards are set to play a pivotal role in the upcoming peace negotiations with the United States this weekend. This shift in power dynamics underscores the growing influence of the Revolutionary Guards in Iran's political landscape. The talks are expected to address key issues surrounding the conflict and aim to establish a framework for peace. Observers are closely watching how the involvement of the Revolutionary Guards will impact the discussions and the potential outcomes of these negotiations. #Iran#LeadershipRevamp#PeaceTalks#RevolutionaryGuards#USIranRelations#PoliticalLandscape#ConflictResolution#IranPolitics#PeaceNegotiations
@CryptoM · Post #65331 · 12.04.2026 г., 23:34
🚀 Middle East Nations Urge U.S. and Iran to Resume Talks After Failed Peace Negotiations According to BlockBeats, on April 13, The Wall Street Journal reported that following unsuccessful marathon peace talks in Islamabad, Middle Eastern countries are urging the United States and Iran to return to negotiations. Despite both sides issuing strong statements, diplomatic channels remain open, and a second round of talks could occur within days. Regional nations are in discussions with the U.S. to extend the fragile two-week ceasefire announced on Tuesday evening. Iranian officials have proposed alternative suggestions, such as continuing symbolic uranium enrichment activities or reducing their enriched uranium stockpile, but no compromise has been reached. #MiddleEast#USIranTalks#PeaceNegotiations#Diplomacy#Ceasefire#IranUranium#BlockBeats#Islamabad#Iran#MiddleEasternNations#WallStreetJournal