hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9K
active users

#gemini25pro

0 posts0 participants0 posts today
Karlheinz Agsteiner<p>TL;DR: I used Google Gemini 2.5 Pro to create what might be the strongest (and perhaps only) app for the Namibian board game Hus. Gemini wrote ~99% of the code, cutting development time from weeks to hours, despite minor issues with specific rules and refactoring. My focus shifted from code quality to basic checks. Early analysis suggests player 2 has a winning advantage in the standard Hus rules on a 8x4 board.</p><p>With the (massive) help of Google Gemini 2.5 pro (experimental) I present: the probably strongest Hus playing app on this planet. Hus is a board game stemming from Namibia.</p><p>(okay, seems to be the only one, according to googling, and Gemini took a single prompt to implement a basic Alpha-Beta tree search, that works very well for a game where players have something like 10 moves, and complete information).</p><p><a href="https://agsteiner.neocities.org/Kalaha/hus.html" target="_blank" rel="nofollow noopener noreferrer" translate="no"><span class="invisible">https://</span><span class="ellipsis">agsteiner.neocities.org/Kalaha</span><span class="invisible">/hus.html</span></a></p><p>Experience from working with Gemini on this:</p><p>- it could code 99%, making virtually no bugs. I changed only about 10 lines of code of &gt;1000 lines of Javascript<br />- we did have a longish dispute because it wouldn&#39;t want to understand how a game where both players move their stones counterclockwise works.<br />- Creating a second flavor of the game that works a bit differently didn&#39;t work so well, so refactoring is still not its strength.<br />- Overall creating four independent little apps (one playing with one ruleset, the other with a slightly different ruleset, and two simulations to do fast engine-vs-engine match to get strong game logs) took me 2-3 hours, instead of 2-3 weeks that hand coding would have taken.<br />- I notice that I am moving away from trying to understand the code, and wanting beautiful code to something like &quot;developer due dilligence&quot; (did a hacker compromise the AI and code a virus into my app), and not caring too much about how the code looks.</p><p>Also from a lengthy 12-ply self-play it seems that this variation of the game is won for player 2. First evaluation is &quot;player 2 wins 13 stones&quot;, which is pretty decisive already.</p><p>The original variation where you don&#39;t capture stones on the row behind the inner one gives more balanced games.</p><p><a href="https://hachyderm.io/tags/hus" class="mention hashtag" rel="tag">#<span>hus</span></a> <a href="https://hachyderm.io/tags/kalaha" class="mention hashtag" rel="tag">#<span>kalaha</span></a> <a href="https://hachyderm.io/tags/mancala" class="mention hashtag" rel="tag">#<span>mancala</span></a> <a href="https://hachyderm.io/tags/googlegemini" class="mention hashtag" rel="tag">#<span>googlegemini</span></a> <a href="https://hachyderm.io/tags/gemini25pro" class="mention hashtag" rel="tag">#<span>gemini25pro</span></a> <a href="https://hachyderm.io/tags/llm" class="mention hashtag" rel="tag">#<span>llm</span></a> <a href="https://hachyderm.io/tags/ai" class="mention hashtag" rel="tag">#<span>ai</span></a> <a href="https://hachyderm.io/tags/development" class="mention hashtag" rel="tag">#<span>development</span></a></p>
Karlheinz Agsteiner<p>TL;DR: My game AI kept freezing. It wasn&#39;t a bug in the AI, but a feature of the game allowing infinite move loops. I fixed it by adding a move limit rule, and now the AI runs faster and beats me even more effectively.</p><p>Fun little story about that: once in a while, the Alpha-Beta AI would just hang. So I needed to debug an AI-generated Alpha-Beta search that I before handn&#39;t bothered to understand.</p><p>Turns out there is nothing wrong with the AI.</p><p>Turns out that this variation of a game can have positions where a move simply loops.</p><p>Only after I asked ChatGPT to create a python script that does these sequences of &quot;sowing steps&quot; that make the heart of the game, it told me that after a sequence of 343 such steps, we&#39;re back at the initial position.</p><p>Then added a &quot;you may only sow 100 hands of stones in a move rule&quot; and now all is fine.</p><p>(this also explained why a 6-ply search would take forever - these kind of positions are fairly frequent).</p><p>The good news: now I have not only the 4-ply search that destroys me but the app can do up to 8-ply without taking too much time, and destroying me even more.</p><p>My dev learnings:<br />- asking ChatGPT to visualize a JSON is fast.<br />- asking ChatGPT to simulate a given issue in python is fun and gives insights fast.</p><p><a href="https://hachyderm.io/tags/mancala" class="mention hashtag" rel="tag">#<span>mancala</span></a> <a href="https://hachyderm.io/tags/kahala" class="mention hashtag" rel="tag">#<span>kahala</span></a> <a href="https://hachyderm.io/tags/boardgames" class="mention hashtag" rel="tag">#<span>boardgames</span></a> <a href="https://hachyderm.io/tags/development" class="mention hashtag" rel="tag">#<span>development</span></a> <a href="https://hachyderm.io/tags/gemini25pro" class="mention hashtag" rel="tag">#<span>gemini25pro</span></a></p>
Karlheinz Agsteiner<p>Spent two hours with Gemini 2.5 creating that African bean game, complete with an AI that can beat me.</p><p>Challenges: the AI faced issues with the fact that both players play in their own area, each counterclockwise. </p><p>Actually this was the only manual change I needed to do - rename the upper row cells from 7..0 to 0..7. Couldn&#39;t bother to get the AI to do this. But apart from that it was just a (3 times refined) prompt, and one more prompt to implement a simple AI (find the move that maximizes AI stones - player stones), no alphabeta or anything.</p><p>Want to try it out?</p><p><a href="http://agsteiner.de/Kalaha" target="_blank" rel="nofollow noopener noreferrer" translate="no"><span class="invisible">http://</span><span class="">agsteiner.de/Kalaha</span><span class="invisible"></span></a></p><p>(need to add the rules someday).</p><p>If I would have had to code this myself, it would probably be a 2 week project. For these small apps, the current top notch AIs give you orders of magnitude of speed. Of course this massively declines (still) with the size of the project.</p><p><a href="https://hachyderm.io/tags/gemini25pro" class="mention hashtag" rel="tag">#<span>gemini25pro</span></a> <a href="https://hachyderm.io/tags/kalaha" class="mention hashtag" rel="tag">#<span>kalaha</span></a> <a href="https://hachyderm.io/tags/mancala" class="mention hashtag" rel="tag">#<span>mancala</span></a> <a href="https://hachyderm.io/tags/aicoding" class="mention hashtag" rel="tag">#<span>aicoding</span></a> <a href="https://hachyderm.io/tags/development" class="mention hashtag" rel="tag">#<span>development</span></a></p>
CEOTECH.IT<p>Deep Research Google Gemini 2.5 Pro: surclassa ChatGPT<br><a href="https://mastodon.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://mastodon.social/tags/DeepResearch" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DeepResearch</span></a> <a href="https://mastodon.social/tags/Gemini25Pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25Pro</span></a> <a href="https://mastodon.social/tags/GeminiAdvanced" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GeminiAdvanced</span></a> <a href="https://mastodon.social/tags/GeminiAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GeminiAI</span></a> <a href="https://mastodon.social/tags/Google" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Google</span></a> <a href="https://mastodon.social/tags/GoogleAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleAI</span></a> <a href="https://mastodon.social/tags/GoogleGemini" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleGemini</span></a> <a href="https://mastodon.social/tags/IntelligenzaArtificiale" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IntelligenzaArtificiale</span></a> <a href="https://mastodon.social/tags/LLM" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLM</span></a> <a href="https://mastodon.social/tags/MachineLearning" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MachineLearning</span></a> <a href="https://mastodon.social/tags/Notizie" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Notizie</span></a> <a href="https://mastodon.social/tags/Novit%C3%A0" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Novità</span></a> <a href="https://mastodon.social/tags/Produttivit%C3%A0" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Produttività</span></a> <a href="https://mastodon.social/tags/Ricerca" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Ricerca</span></a> <a href="https://mastodon.social/tags/TechNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TechNews</span></a> <a href="https://mastodon.social/tags/Tecnologia" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Tecnologia</span></a> </p><p><a href="https://www.ceotech.it/deep-research-google-gemini-2-5-pro-surclassa-chatgpt/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">ceotech.it/deep-research-googl</span><span class="invisible">e-gemini-2-5-pro-surclassa-chatgpt/</span></a></p>
Scripter :verified_flashing:<p>Gemini 2.5 Pro: Google macht das derzeit stärkste KI-Modell überraschend kostenlos für alle - Innovationen - derStandard.de › Web<br><a href="https://www.derstandard.de/story/3000000263527/gemini-25-pro-google-macht-das-derzeit-staerkste-ki-modell-ueberraschend-kostenlos-fuer-alle" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">derstandard.de/story/300000026</span><span class="invisible">3527/gemini-25-pro-google-macht-das-derzeit-staerkste-ki-modell-ueberraschend-kostenlos-fuer-alle</span></a> <a href="https://social.tchncs.de/tags/KI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>KI</span></a> <a href="https://social.tchncs.de/tags/Gemini" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini</span></a> <a href="https://social.tchncs.de/tags/Gemini25Pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25Pro</span></a></p>
Mastokarl 🇺🇦<p>Maybe I should keep a log of the biggest piece of AI-generated code that worked flawlessly.</p><p>Yesterday: 679 lines of python, generated by Google Gemini 2.5 pro. </p><p>I remember, half a year ago, I was impressed by something like 100 lines of Javascript code that worked without any bug.</p><p>Would be an interesting graph to see...</p><p><a href="https://mastodon.social/tags/llm" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>llm</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a> <a href="https://mastodon.social/tags/aicoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>aicoding</span></a> <a href="https://mastodon.social/tags/gemini25pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gemini25pro</span></a></p>
Karlheinz Agsteiner<p>Okay, time for an outlandish claim: </p><p>in a few years we will treat most code like we treat HTML today. It&#39;s generated by machines, it&#39;s okay, it may be ugly sometimes, but as long as it works we don&#39;t care.</p><p>Remember: first there were the TeX vs Word battles; beautifully hand-crafted layout vs a document that is ugly to read (if it is non-binary at all) but does the job.</p><p>Then there was hand-written HTML vs web site generators. </p><p>Both these battles were won by the &quot;ugly but fast and simple&quot; fraction, except for special cases.</p><p>Yesterday I had an LLM (Gemini 2.5 pro) generate a larger piece of code for me - roughly 700 lines of python. And I couldn&#39;t bother trying to improve it. I glanced over it to check for anything fishy, it seemed to do the job, I tested it, it did the job. It&#39;s not as beautiful as hand-crafted code, but, well, it does the job. Yes, a bit like vibe coding.</p><p>And we&#39;re only at the beginning.</p><p>Oh yes, and related to that: we will see a flood of machine-generated apps in the app stores. And they will be fine. Maybe writing apps like todo lists, casual games will be not a thing in a few years.</p><p><a href="https://hachyderm.io/tags/coding" class="mention hashtag" rel="tag">#<span>coding</span></a> <a href="https://hachyderm.io/tags/lllm" class="mention hashtag" rel="tag">#<span>lllm</span></a> <a href="https://hachyderm.io/tags/development" class="mention hashtag" rel="tag">#<span>development</span></a> <a href="https://hachyderm.io/tags/vibecoding" class="mention hashtag" rel="tag">#<span>vibecoding</span></a> <a href="https://hachyderm.io/tags/gemini25pro" class="mention hashtag" rel="tag">#<span>gemini25pro</span></a></p>
Lowyat.NET<p>Google Gemini 2.5 Pro Now Available To Free Users <a href="https://mastodon.social/tags/aichatbot" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>aichatbot</span></a> <a href="https://mastodon.social/tags/artificalintelligence" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>artificalintelligence</span></a> <a href="https://mastodon.social/tags/artificialintelligence" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>artificialintelligence</span></a> <a href="https://mastodon.social/tags/gemini" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gemini</span></a> <a href="https://mastodon.social/tags/gemini25pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gemini25pro</span></a> <a href="https://mastodon.social/tags/generativeai" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>generativeai</span></a> <a href="https://mastodon.social/tags/google" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>google</span></a> <a href="https://mastodon.social/tags/googlegemini" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>googlegemini</span></a></p><p><a href="https://www.lowyat.net/2025/346756/google-gemini-2-5-pro-now-available-to-free-users/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">lowyat.net/2025/346756/google-</span><span class="invisible">gemini-2-5-pro-now-available-to-free-users/</span></a></p>
InfoQ<p><a href="https://techhub.social/tags/Gemini25Pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25Pro</span></a> is here! Google's latest AI model focuses on enhanced reasoning, code generation, and multimodal processing.<br>➡️ Ranked #1 on LMArena for human-preferred AI responses<br>➡️ Excels in math, science &amp; logic-based tasks<br>➡️ 1M token context window (expanding to 2M soon!)</p><p>More on <a href="https://techhub.social/tags/InfoQ" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>InfoQ</span></a> 👉 <a href="https://bit.ly/41SO8WU" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">bit.ly/41SO8WU</span><span class="invisible"></span></a> </p><p><a href="https://techhub.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a></p>
apfeltalk :verified:<p>Google stellt KI-Modell Gemini 2.5 Pro überraschend kostenlos zur Verfügung<br>Google macht sein derzeit stärkstes KI-Modell Gemini 2.5 Pro überraschend ko<br><a href="https://www.apfeltalk.de/magazin/news/google-stellt-ki-modell-gemini-2-5-pro-ueberraschend-kostenlos-zur-verfuegung/" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">apfeltalk.de/magazin/news/goog</span><span class="invisible">le-stellt-ki-modell-gemini-2-5-pro-ueberraschend-kostenlos-zur-verfuegung/</span></a><br><a href="https://creators.social/tags/News" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>News</span></a> <a href="https://creators.social/tags/Services" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Services</span></a> <a href="https://creators.social/tags/DeepSeek" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DeepSeek</span></a> <a href="https://creators.social/tags/Gemini25Pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25Pro</span></a> <a href="https://creators.social/tags/GeminiAdvanced" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GeminiAdvanced</span></a> <a href="https://creators.social/tags/Google" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Google</span></a> <a href="https://creators.social/tags/GoogleChatbot" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleChatbot</span></a> <a href="https://creators.social/tags/Innovation" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Innovation</span></a> <a href="https://creators.social/tags/KIBranche" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>KIBranche</span></a> <a href="https://creators.social/tags/KIModell" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>KIModell</span></a> <a href="https://creators.social/tags/KIModus" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>KIModus</span></a> <a href="https://creators.social/tags/KostenloseVerfgbarkeit" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>KostenloseVerfgbarkeit</span></a> <a href="https://creators.social/tags/KnstlicheIntelligenz" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>KnstlicheIntelligenz</span></a> <a href="https://creators.social/tags/LLM" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLM</span></a> <a href="https://creators.social/tags/MachineLearning" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MachineLearning</span></a> <a href="https://creators.social/tags/OpenAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenAI</span></a> <a href="https://creators.social/tags/Reasoning" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Reasoning</span></a> <a href="https://creators.social/tags/Sprachmodell" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Sprachmodell</span></a></p>
Winbuzzer<p>Google has opened access to Gemini 2.5 Pro for free-tier users, bypassing subscriptions just days after its initial launch to paid customers</p><p><a href="https://mastodon.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://mastodon.social/tags/Google" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Google</span></a> <a href="https://mastodon.social/tags/GeminiAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GeminiAI</span></a> <a href="https://mastodon.social/tags/Gemini25Pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25Pro</span></a> <a href="https://mastodon.social/tags/GoogleAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleAI</span></a> <a href="https://mastodon.social/tags/LLMs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLMs</span></a> <a href="https://mastodon.social/tags/MultimodalAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MultimodalAI</span></a> <a href="https://mastodon.social/tags/AIReasoning" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AIReasoning</span></a> <a href="https://mastodon.social/tags/OpenSourceAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OpenSourceAI</span></a> <a href="https://mastodon.social/tags/AIModels" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AIModels</span></a> <a href="https://mastodon.social/tags/Alphabet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Alphabet</span></a></p><p><a href="https://winbuzzer.com/2025/03/31/google-pushes-gemini-2-5-pro-to-everyone-no-subscription-needed-xcxwbn/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">winbuzzer.com/2025/03/31/googl</span><span class="invisible">e-pushes-gemini-2-5-pro-to-everyone-no-subscription-needed-xcxwbn/</span></a></p>
CEOTECH.IT<p>Google Gemini 2.5 Pro accessibile gratuitamente a tutti<br><a href="https://mastodon.social/tags/Aggiornamento" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Aggiornamento</span></a> <a href="https://mastodon.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://mastodon.social/tags/Android" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Android</span></a> <a href="https://mastodon.social/tags/FreeRollout" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>FreeRollout</span></a> <a href="https://mastodon.social/tags/Gemini" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini</span></a> <a href="https://mastodon.social/tags/Gemini25Pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25Pro</span></a> <a href="https://mastodon.social/tags/GeminiAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GeminiAI</span></a> <a href="https://mastodon.social/tags/GenAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GenAI</span></a> <a href="https://mastodon.social/tags/GoogleAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleAI</span></a> <a href="https://mastodon.social/tags/GoogleGemini" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleGemini</span></a> <a href="https://mastodon.social/tags/Gratis" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gratis</span></a> <a href="https://mastodon.social/tags/IntelligenzaArtificiale" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IntelligenzaArtificiale</span></a> <a href="https://mastodon.social/tags/iOS" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>iOS</span></a> <a href="https://mastodon.social/tags/LLM" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLM</span></a> <a href="https://mastodon.social/tags/MachineLearning" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MachineLearning</span></a> <a href="https://mastodon.social/tags/Notizie" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Notizie</span></a> <a href="https://mastodon.social/tags/Novit%C3%A0" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Novità</span></a> <a href="https://mastodon.social/tags/TechNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TechNews</span></a> <a href="https://mastodon.social/tags/Tecnologia" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Tecnologia</span></a> <a href="https://mastodon.social/tags/Web" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Web</span></a> </p><p><a href="https://www.ceotech.it/google-gemini-2-5-pro-accessibile-gratuitamente-a-tutti/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">ceotech.it/google-gemini-2-5-p</span><span class="invisible">ro-accessibile-gratuitamente-a-tutti/</span></a></p>
CEOTECH.IT<p>Google lancia Gemini 2.5 Pro: AI potenziata per esperti<br><a href="https://mastodon.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a> <a href="https://mastodon.social/tags/Benchmark" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Benchmark</span></a> <a href="https://mastodon.social/tags/Coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Coding</span></a> <a href="https://mastodon.social/tags/Gemini25" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25</span></a> <a href="https://mastodon.social/tags/Gemini25Pro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Gemini25Pro</span></a> <a href="https://mastodon.social/tags/GeminiAdvanced" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GeminiAdvanced</span></a> <a href="https://mastodon.social/tags/GeminiAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GeminiAI</span></a> <a href="https://mastodon.social/tags/Google" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Google</span></a> <a href="https://mastodon.social/tags/GoogleAI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleAI</span></a> <a href="https://mastodon.social/tags/GoogleGemini" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoogleGemini</span></a> <a href="https://mastodon.social/tags/IntelligenzaArtificiale" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IntelligenzaArtificiale</span></a> <a href="https://mastodon.social/tags/LLM" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LLM</span></a> <a href="https://mastodon.social/tags/Multimodalit%C3%A0" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Multimodalità</span></a> <a href="https://mastodon.social/tags/Notizie" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Notizie</span></a> <a href="https://mastodon.social/tags/Novit%C3%A0" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Novità</span></a> <a href="https://mastodon.social/tags/Ragionamento" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Ragionamento</span></a> <a href="https://mastodon.social/tags/Sviluppatori" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Sviluppatori</span></a> <a href="https://mastodon.social/tags/TechNews" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TechNews</span></a> <a href="https://mastodon.social/tags/Tecnologia" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Tecnologia</span></a> </p><p><a href="https://www.ceotech.it/google-lancia-gemini-2-5-pro-ai-potenziata-per-esperti/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">ceotech.it/google-lancia-gemin</span><span class="invisible">i-2-5-pro-ai-potenziata-per-esperti/</span></a></p>