@puffanime · Post #1542 · 05.02.2025 г., 18:35
Совсем забыла рассказать неинтересную новость, мне недавно в #pokemongo попались шайни покемоны перрсеркер и дарумака ✨
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
Пребарај: #pokemongo
@puffanime · Post #1542 · 05.02.2025 г., 18:35
Совсем забыла рассказать неинтересную новость, мне недавно в #pokemongo попались шайни покемоны перрсеркер и дарумака ✨
Hashtags
@perspectiveix · Post #1357 · 25.06.2018 г., 15:00
🗓The Road to Ubiquity is Getting Shorter Time innovations needed for 50 million users (in years) When #PokemonGo got released, it took only 19 days until 50 million people to started running around the streets blind. When in 1909 Ferdinand Count of Zeppelin laid out parts of the foundation for todays interconnected world by founding the very first airline, it took 64 years for the same amount of people to use this innovation. The impact an innovation has on humankind is quite irrelevant for how fast it gets picked up by people. More important is the ever-extending interconnection of our world. 🚀@PerspectiveIX ☕️prs.pctvix.co/2M8AAOb
Hashtags
@lsposed_Modules_Updates_Trackers · Post #6273 · 22.03.2026 г., 15:30
#PokemonGo#fzer0x 模块:dev.fzer0x.pokegocontrole 简介:PokemonGo Location Controller 版本:1-1.0.0 更新时间:2026/03/22 23:04:16 更新日志: PokeGoControl 1.0.0 1.0.0 @lsposed_Modules_Updates_Trackers | @lsposed_Geeks_Bot
Hashtags
@instavine · Post #626 · 21.07.2016 г., 08:14
Anyone else playing Pokemon Go too seriously? 😜 ------------------------------ Кто-то еще играет Pokemon Go, так серьезно? ------------------------------ #PokemonGO #zachking
Hashtags
@hiaimediaes · Post #633 · 27.01.2025 г., 15:55
🍌Cómo funciona la tecnología de escaneo 3D de objetos reales Los Gaussian splats son una nueva tecnología para crear modelos 3D, implementada activamente por Scaniverse, una plataforma desarrollada por Niantic, los creadores de Pokémon Go. ℹ️Un modelo 3D típico es una malla de polígonos. Este enfoque funciona bien para objetos simples, pero el resultado del escaneo de formas complejas (por ejemplo, personas) a menudo se asemeja a los personajes de los primeros juegos de Tomb Raider. La tecnología de Gaussian splatting reemplaza la malla de polígonos con nubes de puntos que tienen parámetros individuales (tamaño, transparencia, etc.) para lograr una mejor calidad y realismo. Para crear un modelo 3D de cualquier objeto con Scaniverse, solo necesitas la cámara de un smartphone común (incluso sin sensores LiDAR) y un poco de paciencia. Los algoritmos de aprendizaje automático garantizan un alto nivel de detalle. El modelo 3D resultante se puede ver desde cualquier ángulo y subir a visores XR populares (ver video #1⤴️). 🌎¿Dónde puede ser útil esta tecnología? El vicepresidente de ingeniería de Niantic, Brian McClendon, considera que los *Gaussian splats* son el avance más significativo en gráficos 3D de los últimos 30 años. Esta tecnología podría revolucionar el desarrollo de videojuegos, la creación de contenido audiovisual y la cartografía. Para Niantic, actualmente es la clave para construir su modelo global de IA espacial, del cual hablamos en diciembre. Pero Niantic no es el único jugador apostando por esta tecnología: ➡️Gracia AI, una startup, crea videos 3D altamente detallados sin limitaciones en ropa, patrones, iluminación o peinados. El inconveniente: un minuto de video 3D ocupa 9 GB de almacenamiento (ver video #2 ⤴️). ➡️Hyperscape de Meta permite crear copias digitales fotorrealistas de entornos complejos (ver video #3 ⤴️). Sin embargo, la aplicación aún se encuentra en la etapa de demostración tecnológica. Más sobre este tema: ➡️ Los 5 juegos VR más emocionantes de 2024 ➡️¿Viviremos con gafas AR? #noticias#PokemonGo#VR@hiaimediaes
Hashtags
@instavine · Post #608 · 17.07.2016 г., 15:33
When Pokemon Go is life...😂 --------------------------------- Когда Pokemon Go смысл жизни 😂#pokemonGo --------------------------------- #piques w/ #violetbens0n
Hashtags
@instavine · Post #615 · 19.07.2016 г., 13:58
Everyone nowadays. 😂 -------------------------------- Сегодня каждый 😂 -------------------------------- #pokemonGO #kingbach w/ #camerondallas#lelepons
@instavine · Post #618 · 20.07.2016 г., 05:20
How I play #PokemonGO😏😂 ------------------------------- Как я играю #PokemonGO😏😂 ------------------------------- #nampaikid w/ #kittykatrina
@perspectiveix · Post #1586 · 06.10.2018 г., 09:00
👑Fortnite: King of the Multiplayer Action Hill According to Sensor Tower, in just under seven months since launching as an invite-only beta on March 15, the iOS version of #Fortnite from Epic Games has grossed a total of $300 million worldwide, with about 65% of that coming from players in the United States 🇺🇸. To have some context, Fortnite has grossed about 32% more than Supercell’s Clash Royale launch in March 2016, and more than 200% as much as #Tencent’s smash MOBA Honor of Kings managed on China’s App Store in the same amount of time post-release. As for the fastest game to hit $300 million on #iOS, that was Niantic’s mega-hit #PokemonGO, which achieved this feat in just 113 days. 🚀@PerspectiveIX via SensorTower. ❓Have you played Fortnite during last two weeks?
Hashtags
@instavine · Post #624 · 20.07.2016 г., 17:16
Me 😂😂😂 --------------------------- #PokemonGO #curtislepore w/ #kingbach#amandacerny#brittanyfurlan
@perspectiveix · Post #1189 · 07.04.2018 г., 12:30
💰Fortnite on iOS made $15 million in its first three weeks in the App Store According to SensorTower, Epic Games’ #iOS port of smash hit #Fortnite has earned more than $15 million in its first three weeks on the market. Fortnite on iOS is now out-earning mobile heavyweights like #CandyCrushSaga, #ClashOfClans, and #PokemonGo on a weekly revenue basis, earning $6.4 million in the last seven days compared to Candy Crush Saga’s $5.8 million. Sensor Tower estimates Fortnite has been downloaded 11 million times on mobile alone. According to Superdata Research, another game analytics company, Epic made about $126 million through Fortnite in-app purchases in the month of February. Mobile sales will surely boost that figure in the coming months. 🚀@PerspectiveIX 🌀 http://prs.pctvix.co/TelegramIX Do you play Fortnite? 👍🏻 Yes 🤓 Not yet, but will do 👎🏻 No
@TG_index_channel · Post #605 · 23.11.2019 г., 12:00
標題:TaiwanGO交流區 類別:#公開#群組#繁中 分類:#臺灣#興趣#遊戲#閒聊 標籤:#PMGO#PokémonGO#寶可夢#神奇寶貝#Pokemongo#Pokemon 簡介:這是一個以【Pokemon go】為主的交流區,歡迎喜歡【寶可夢】的朋友一起加入一起討論。