@PaxosGlobal · Post #34 · 23.10.2019 г., 15:46
We just minted our 8th PAX Gold bar! There's now 3,212.268 PAXG in circulation making a market cap of $4,736,392.80! #digitalgold $PAXG! https://www.paxos.com/paxgold/
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
Пребарај: #digitalgold
@PaxosGlobal · Post #34 · 23.10.2019 г., 15:46
We just minted our 8th PAX Gold bar! There's now 3,212.268 PAXG in circulation making a market cap of $4,736,392.80! #digitalgold $PAXG! https://www.paxos.com/paxgold/
Hashtags
@ethereumglobalnews · Post #1231 · 28.10.2025 г., 04:58
📊 Volatility Compression #BTC#DigitalGold#CryptoMarkets Bitcoin 季度波動率 與黃金差距已縮至 僅 0.2% ➡️ 「數位黃金」敘事 正從故事 → 被數據驗證。 👍@EthereumGlobalNews 🥲 🥲Follow for more Web3 News 🤣
Hashtags
@ethereumglobalnews · Post #1161 · 22.10.2025 г., 11:45
🖼 Trending now: #BTC#Crypto#DigitalGold - Market share vs gold sits at 6%, with potential upside to $170K if it hits 10%. 據 CEO CQ 表示,#比特幣 作為「數位黃金」仍處於早期階段,目前市值僅約為黃金的 6%,從未超過 10%。 若市佔率達到 10%,比特幣價格有望觸及 17 萬美元,顯示長線潛力仍受市場關注。 #Insight @EthereumGlobalNews Follow for more global Web3 & DeFi updates!
@venturevillagewall · Post #4290 · 02.03.2025 г., 22:00
Peter Schiff Admits Bitcoin's Value Notable investor Peter Schiff declares Bitcoin as "digital gold," acknowledging its significance in the market. In related news, $160 million in Bitcoin shorts have been liquidated in the last 4 hours, hinting at major market movements. Read more from Watcher Guru. #Bitcoin#DigitalGold#MarketMovements#Crypto#Trading#Liquidation#Finance#Investment#Schiff
@venturevillagewall · Post #3672 · 21.12.2024 г., 18:50
Sheldon Schiff Proposes USAcoin Peter Schiff advocates replacing Bitcoin as a strategic US reserve with a new crypto asset, USAcoin, featuring a limited supply of 21 million coins and an improved blockchain for better payment capability. He highlights this shift as a pathway to wealth, contrasting his views on Bitcoin, which he refers to as digital gold. Schiff also generated an image with Elon Musk and Donald Trump against a Bitcoin backdrop, criticizing ChatGPT for its content restrictions. _"HODL to the Moon, America!"_ #PeterSchiff#USAcoin#Crypto#Bitcoin#Blockchain#Investment#DigitalGold#Wealth#PaymentSystems#Grok
@venturevillagewall · Post #3757 · 31.12.2024 г., 04:00
2025 Crypto Outlook Highlights Regulatory Impact Franklin Templeton forecasts a favorable regulatory environment led by US regulators like the SEC, supporting more crypto ETFs and tokenized securities. This trend is expected to reposition the US as a global hub for cryptocurrency innovation. Additionally, in noteworthy transactions: 58 million #XLM was transferred between unknown wallets, and CleanSpark withdrew 3,158 Bitcoins from Coinbase, totaling $293.39M. Former CFTC Chairman Chris Giancarlo praised Bitcoin as 'digital gold'. Read more hereTransaction detailsCleanSpark details #Crypto#US#ETFs#Regulation#Bitcoin#DigitalGold#Innovation#Blockchain#CFTC#XLM#WhaleAlert#CleanSpark#Mining#TokenizedSecurities#Finance#Investment#MarketTrends#2025Outlook#DigitalAssets#CryptoNews