@MEXC_FairPrice_Spreads · Post #976 · 31.01.2026 г., 03:25
#PIPE | 12.76% | SHORT🔴 Last Price: 0.0326 Fair Price: 0.02891 Max Leverage: 20x Max Size: 97.80$ MEXC Fair Price Spreads
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #32 · 7 фев.
Скорее всего уже слышали, что складывать строки через + это плохая практика. Падение производительности, и всё такое. Без лишних слов, давайте измерять: from timeit import timeit def t1(): # складываем 10 строк через + из переменной t = 'text' for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t2(): # склеиваем список строк через метод join arr = ['text'] * 10 for _ in range(1000): s = ''.join(arr) def t3(): # складываем через + но не из переменной а непосредственно инлайн объекты for _ in range(1000): s = 'text' + 'text' + 'text' + ... # всего 10 раз Теперь каждую строку склейки запустим по 10М раз >>> timeit(t1, number=10000) 0.21951690399964718 >>> timeit(t2, number=10000) 1.4978306379998685 >>> timeit(t3, number=10000) 0.2213820789993406 Хм, а нам говорили что через "+" это плохо и медленно ))) 😁 Тут стоит учитывать, что речь идёт о склейке множества длинных строк. Давайте изменим условия: def t4(): t = 'text'*100 for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t5(): arr = ['text'*100] * 10 for _ in range(1000): s = ''.join(arr) def t6(): for _ in range(1000): s = 'text'*100 + 'text'*100 + ... # всего 10 раз >>> timeit(t4, number=10000) 12.795130728000004 >>> timeit(t5, number=10000) 2.642637542999182 >>> timeit(t6, number=10000) 0.2184546610005782 Вот, уже другой разговор, сразу видна разница, в среднем в 6 раз. Но погодите, почему последний тест t6() по скорости такой же как и t3()? Ведь строки теперь в 100 раз длиннее! Это вопросы оптимизации кода, какие простые изменения ускоряют или замедляют выполнение программы. Мы столкнулись с примером обхода обращения к переменной. Например, именно так работает директива #define в С++, во время компиляции подставляя значение переменной вместо ссылки на неё. В Python это тоже работает, но часто ли вы сможете встретить такой способ работы со строками? К сожалению, способ почти только теоретический. В целом, тесты показали то, что мы хотели. Делаем выводы самостоятельно. Полный листинг 🌍 #tricks
Пребарај: #pipe
@MEXC_FairPrice_Spreads · Post #976 · 31.01.2026 г., 03:25
#PIPE | 12.76% | SHORT🔴 Last Price: 0.0326 Fair Price: 0.02891 Max Leverage: 20x Max Size: 97.80$ MEXC Fair Price Spreads
Hashtags
@BinanceAlphaAirdropTracker · Post #329 · 09.10.2025 г., 07:59
⏰#PIPE FCFS Claim with minimum 190 pts starts in about 1 minute 🎁 Airdrop: 160 $PIPE ($31)
Hashtags
@BinanceAlphaAirdropTracker · Post #325 · 08.10.2025 г., 13:59
⏰#PIPE Claim with minimum 211 pts starts in about 1 minute 🎁 Airdrop: 160 $PIPE ($56)
Hashtags
@american_observer · Post #5611 · 13.04.2026 г., 19:02
#robert#pipe#unitedstates#iran#war 📱American Оbserver - Stay up to date on all important events 🇺🇸
@tonevents_en · Post #1718 · 04.08.2025 г., 14:33
VERB Raises $558M to Acquire TON VERB (ticker VERB) is securing approximately $558 million in funding to build a public TON treasury. With these funds, the company plans to buy Toncoin ($TON) and hold it as its primary reserve asset. The goal is to become the first public company whose core “cushion” consists of TON — effectively treating TON as a reserve asset on its balance sheet. VERB expects to earn both from TON’s price appreciation and staking rewards. Once the deal closes (scheduled for August 7, 2025), VERB will rebrand as TON Strategy Co. (TSC) and continue growing its existing projects. Investors: Over 110 institutional and “crypto-native” participants, including Pantera, Animoca, Kraken, BitGo, Vy Capital, Ribbit Capital, and Graticule (GAMA). Advisors & Partners: Experts from Kingsway Capital, TON Foundation, and Blockchain.com will join governance. Having Pantera, Animoca, Kraken, and BitGo on board is meant to add both expertise and trust. Leadership Team: Executive Chairman: Manuel Stotz (Kingsway Capital; President, TON Foundation) CEO: Veronika Kapustina (former TON Foundation advisor; ex-Morgan Stanley) CFO: Sara Olsen (Europa Partners; former Onyx by JPMorgan) Special Advisor: Peter Smith (CEO & Co-Founder, Blockchain.com) VERB is betting that TON will remain the main blockchain for Telegram’s product ecosystem. As Telegram’s ecosystem grows, so could the value of VERB’s TON reserves. Post-Closing Metrics: ➡️Lock-up:~36% of equity for 6–12 months ➡️Cash Ratio:~77% cash among DAT companies holding non-BTC/ETH assets — one of the highest in the sector ➡️TON Treasury Size: ~5% of TON’s circulating market cap ➡️Capacity for Further TON Accumulation ➡️Ticker: VERB remains listed on Nasdaq, with the new treasury strategy effective post-close ➡️Advisors: Cohen & Company (placement), Reed Smith, Perkins Coie, Brownstein Hyatt Farber Schreck, Morgan Lewis Risks: This is a private placement (PIPE) with standard risks: the transaction may not close, markets could decline, and the strategy might underperform. VERB discloses these risks in its disclaimer. Read press release 📱RedotPay | 🔃StormTrade | ❤️CapsGame |📱Degenphone #TON#Telegram#PIPE#Verb#Investments#Treasury
@AboutRss · Post #999 · 29.03.2021 г., 01:00
最近一些支持自带 RSS / Atom Feed 的 #博客 平台或生成器 🔸#Nobelium :https://github.com/craigary/nobelium 用 #Notion 写博客,#开源 需自架;Newlearnerの自留地 频道有介绍。 🔸#Ghost : https://ghost.org/ #开源 可自架,亦可付费用官方; SpencerWoo 在少数派有介绍。 🔸 py-blog : https://py-blog.zcmimi.top/ 一个基于 Python3 的静态博客生成器, #开源 需自架。 Newlearnerの自留地 频道有介绍。 🔸#Maverick : https://alandecode.github.io/Maverick/ 一个基于 Python 的静态博客生成器, #开源 需自架。 Newlearnerの自留地 频道有介绍。 🔸 B3log 旗下的 #Solo 和 #Pipe : https://b3log.org/ #开源 需自架,专为程序员设计。 🔸#Halo : https://halo.run/ 一款现代化的博客/CMS系统。#开源 需自架,Newlearnerの自留地 频道有介绍。 🔸#Gridea : https://gridea.dev 一个静态博客写作客户端, #开源 可自架,可付费用官方。 Newlearnerの自留地 频道有介绍。 🔸#Peach Blog : https://github.com/LeetaoGoooo/peach-blog 基于 Flask 的博客平台, #开源 需自架。 🔸#Hey World : https://hey.com/world/ 新概念 Email 服务 #Hey 的附属功能:用邮件写博客。是付费服务。