Paul Couvert Profile picture
AI and tech Educator – Build better and faster using AI and No-Code – https://t.co/8iUvV0ABgy founder
43 subscribers
Jul 1 6 tweets 3 min read
You can add a local "=AI" formula in Excel

Excel can then process data using a free and open-source AI model like Gemma.

This means that it understands what's in the cells and returns a tailored response based on your prompt even offline.

Steps to set it up and examples below Image Keep in mind that everything runs locally, even the AI model (LLM): no remote servers or APIs!

EXAMPLE 1 - Categorize data

Formula:
=AI("Is this a basketball or baseball team? Just write one word: Basketball or Baseball. Team name: ",A1)
Jun 25 6 tweets 3 min read
Finally! Google has just released Gemini CLI an AI agent that brings Gemini directly into your terminal

→ 1,000 free requests PER DAY
→ Open source

You can use it as a coding agent, automate tasks, use MCPs, generate videos & images, etc.

Steps to install and use it: Image 1. Install Node

- Go to
- Install the version for your OS

The easiest way is to download a prebuilt version for Windows or macOS (see video). nodejs.org/en/download
Jun 21 5 tweets 2 min read
Google Jules is the most underrated vibe coding tool

You can start a project with Replit and then assign tasks to Jules to perform autonomously 🔥

1. Replit Agent create the project
2. Create a GitHub repo for your "code"
3. Link Jules (free) to this repo, done!

Steps below: Image 1. Link Replit and GitHub

After creating your project with Replit Agent:

- Click on the icon in the left-hand column
- Select "Git"
- Create a new repo or link an existing one

Note: Replit offers to create a repo if you don't have one.

All you need is a free GitHub account.
Jun 9 6 tweets 3 min read
Google has released an open source project for building fullstack agents with Gemini 2.5 🔥

You can run and modify it with Replit to create your own agent.

By default the agent has:

- A full conversational interface
- A backend for an AI-powered research

Steps to use it below:Image 1. Import in Replit

- Go to Replit.com
- Select the import option then GitHub
- Click on import and paste the link of the repo:

github.com/google-gemini/…
May 29 4 tweets 2 min read
DeepSeek has just released a powerful new 8B model 🔥

This means you can run it locally and for free on a laptop with zero limitations.

You just need LM Studio and 4Gb of RAM.

The few quick steps below: 1. Download LM Studio (free)

Go to and download the version for your OS.

Available for:

- Windows (x86/ARM)
- macOS (M series)
- Linux lmstudio.aiImage
May 16 5 tweets 2 min read
This AI agent is a powerful data analyst

It can search, process, complete and visualize your data in a single chat.

You can import files or start from scratch.

Step-by-step process with Genspark: 1. Import or search data

Go to and select “AI Sheets”.

You can either :

- Import your files
- Search for data

In the 2nd case, the agent aggregates and formats the data according to your criteria. genspark.ai
May 3 5 tweets 2 min read
Google has quietly released AI tools for language learning

You can access these 3 tools for free:

1. Find vocabulary for any situation
2. Learn idioms from a generated conversation
3. Talk to the camera about your surroundings

Details and access: 1. Tiny Lesson

Choose your language and a situation.

Gemini will then generate customized vocabulary, phrases and tips for you to listen to and learn.
May 1 6 tweets 3 min read
AI Agents are becoming extremely capable

Among other things, in a single prompt you can:

- Search for information
- Compile insights
- Create visuals
- Generate slides

Genspark’s Super Agent manages all the tools by itself.

(More below) You can use several agents for a single request.

Go to the "All Agents" section of :

→ Deep Research
→ AI Slides
→ Call For Me (yes!)
→ Agentic Fact Check
→ Agentic Data Table

I'll show you a few combos possible using @genspark_ai ↓ genspark.ai
Apr 23 8 tweets 3 min read
Anthropic has released a full guide on agentic coding

There are 6 points to maximize the efficiency of Claude Code and LLMs to build.

Everything you need to know below

(And link to the official blog post) Image 1. Customization & optimization

- Create CLAUDE .md files to document workflows, commands, and coding conventions.

- Curate a list of allowed tools for more efficient automation.

- Install the GitHub CLI for better GitHub integration. Image
Apr 21 9 tweets 3 min read
ChatGPT o3 and canvas is a builder's dream

You can create a complete web app with a backend and deploy it.

The whole workflow takes less than 5 minutes, here are the steps: Image 1. Prepare the prompt

I use my GPT "Prompt Enhancer" to save time.

It transformed my basic prompt into a much more complete prompt so that o3 could one-shot the app.

(You can get it for free below)

Prompt:

"You're a senior front-end developer with experience in building productivity tools using vanilla JavaScript and browser-based storage. Create a single-file web application that serves as a "Prompt Organizer" to help users save, edit, delete, and categorize AI prompts directly in the browser without any external dependencies. Use only HTML, CSS, and JavaScript, and store data persistently using localStorage or IndexedDB to ensure saved prompts remain available across sessions. Each prompt should include fields such as title, description, tags, and the full prompt text. Users should be able to filter prompts by tags, search by keywords, and sort by date created or modified. Include example prompts to populate the organizer on first load. Structure the code so it’s readable and modular within the single HTML file, using internal