Blog Post
23/9/2025

Hack Your Weekend

From Idea to App in 48 Hours 🚀 Building AI-powered apps at #HackYourWeekend using Claude Code, tracking with BigQuery, and lessons from team development.

Hack Your Weekend

From Idea to App in 48 Hours 🚀 I spent the third weekend of September at the Clubco CZ coworking space in Brno, taking part in the #HackYourWeekend hackathon. In a group of 60 people split into eight teams, we spent Friday through Sunday afternoon developing eight applications addressing real-world needs. We built everything in AI/LLM-supported development environments (our team used VS Code + Claude Code). The participants ranged from developers already building with AI to people like me who wanted to dive in and really try this kind of workflow for the first time.

There’s a big difference between spinning up an MVP in Lovable with a single prompt and spending an entire weekend working hands-on with Claude Code Max - versioning, MCPs, documentation, staging, app security, and everything in between. In our team, I took care of the backend, deployment, and app tracking (our tech stack was React + Next.js + Supabase Postgres DB + Vercel hosting + Git, plus tracking via a Cloud Run endpoint writing to BigQuery, along with a dashboard and data interpretation through a BigQuery MCP).

The event was organized by Jindrich Faborsky (probably Jindra’s smallest event ever :). Jindrich is really pushing hard into AI-assisted development - he genuinely lives it - and it’s great that he openly shares his journey while onboarding both the community and people from the outside. If you’re looking for an intro to the topic, I can highly recommend Jindrich’s AI First Course - an authentic course about the core principles, the tooling, and how to actually work this way. It was also great that the event brought in mentors from different areas of expertise who supported the teams - people like Petr Bureơ, Lukas Mehnert, Dima Melnik, or Petr Simecek, who helped us with Git. Jindra himself actively supported the teams too - helping some with development or strategy and nudging others (like us) toward even bolder features. 🙂

At #HackYourWeekend, our Keshu team (KlĂĄra FottovĂĄ, Jiƙí Pavlas, Petra SchönfeldovĂĄ, Michal PecĂĄnek, Vito Nikolič + me) built an application for listing and searching dog-friendly places - kind of like a European Coffee Trip, but for dogs. (Keshu was the dog/mascot.) My role was backend development and deployment (a dream come true for me - finally getting to try the role of a backend engineer :). The other roles covered design, development, business, and marketing. We designed a nice data model (pro tip: the schema was written in Mermaid, which Git can automatically render from a .md file), and before the rest of the team jumped into the app, I pushed the first 30 commits.

Keshu team on Friday while we were fine-tuning the strategy
Team roles

Our tech stack was React + Next.js + Postgres DB (Supabase) + Vercel hosting + Git. On Sunday, once the app was deployed with the basic functionality and admin panel in place - and my teammates were working on new features and design (respect to Michal Pecánek for your fully working geolocation 👌) and I built a custom tracking setup using Cloud Run and BigQuery.

Deployed app
App admin panel
Design elements

Other teams built, for example, a weather-check app for hobby pilots to use during pre-flight preparation (Briefly.ai) or an app for sharing routes and rides within the cycling community (Bike Meet). The project that caught my attention the most was an app with the working title “Stƙídavka” (“Shared Custody”), designed to help separated parents organize shared custody - managing handovers, schedule changes, and day-to-day coordination. It’s a powerful topic and an app that truly makes sense and brings real value, and I genuinely hope its development continues.

‍

Interesting Bits from Development & Lessons Learned

We eventually had to switch to Claude Code Max, because the standard PRO version disconnects you after a few hours - not ideal for a hackathon - and it burns through tokens fast. I honestly can’t imagine building a fully robust solution this way yet, at least not without splitting it into well-isolated components so the model can keep the context under control. One of the highlights for me was having the time to really try out a bunch of MCPs. Supabase and Vercel both have their own MCPs, which makes development so much easier, and we also plugged in others (Context7, Sentry, etc.). Honestly, I wouldn’t bet too much on the future of services that don’t have an MCP - and don’t plan to build one.

Version control turned out to be one of our biggest challenges. We didn’t really have a good branch strategy, and we lacked the experience to merge everything properly across a six-person team. What helped me a lot was having Claude connected directly to Git. I committed straight from Claude and had it check in advance whether my commit would break the build. It wasn’t exactly professional - and proper tests should be done differently - but we didn’t have much time to fine-tune things.

Git repo

One thing that didn’t work very well for me was the project instructions in .claude.md. I wanted Claude to automatically update the prod.md file after every functionality update, but I couldn’t get it to work. It only worked when using an agent - and even then, I had to trigger it manually.

‍

App Tracking

We built our own tracking (GA4 would’ve been way too easy :). We sent events through a secure cloud endpoint on Cloud Run directly into BigQuery. In a real-world scenario, I got to try building a Claude Code endpoint that processes incoming events and writes them to BigQuery - plus hooking up and testing the BigQuery MCP. GCP has something called the MCP Toolbox for Databases, which includes several MCPs for working with data, including the BigQuery MCP. Thanks to that, we were able to prompt our way to full dashboards, and we were even ready for on-the-fly data queries (for now just in the console, but the next step would be wrapping that in a UI and deploying it into the app’s admin panel).

The initial prompted dashboard

There were folks from Keboola at the event (huge thanks for their support and sponsorship 🙏), and apparently the Keboola MCP is already capable of handling most tasks - including full end-to-end workflows. I didn’t know that, and I’m definitely planning to try it out.

‍

Claude Code + Gemini on the same project

I experimented with combining two models on the same app. I built the tracking layer separately using Gemini CLI and the Google Cloud SDK. I then used Claude Code for deployment, because I didn’t want to deploy from two different CLIs or spin up the Vercel MCP inside Gemini. I was a bit worried whether having two models working on the same codebase would cause issues.

But if the second model is working on a contained component, you avoid major structural changes, and you document everything properly so the other model can always reload the context, I think it’s totally fine.

I documented all changes in tracking/tracking.md and always let Claude review what Gemini did and confirm that everything looked good from its perspective.

‍

What I learned - and what I’m taking away from the hackathon for my work and personal growth

I left the event tired, but happy - and grateful for the chance to take part. I had already tried building with AI before the hackathon (thanks, FOMO), but what I took away from Brno most was the experience of building something as a team. And also getting more comfortable controlling things in Google Cloud Platform directly through Gemini or preparing Cloud Shell commands via the model.

Honestly, I’m not sure I’d feel confident building an app intended to serve a large number of users without some human code review. But there were people at the hackathon who do have ambitions to push their apps further - and thanks to the hackathon, they can now build an MVP themselves and really take off. For me, this approach feels more useful for various smaller data tasks, system integrations, test agents, utilities, pipelines, and similar. Basically for things that aren’t mission-critical but save us a lot of time at MeasureDesign.

It massively democratizes access to technology and removes the barriers created by not knowing a technology in depth - or not having time to build something complex in it. What matters is knowing what the tools can do, what you want from them, and what you need to keep an eye on. What worked well for us was keeping the AI within boundaries, avoiding too much “creativity,” and breaking development into detailed steps for the model to execute. With that approach, the results were genuinely good.

Jindƙich during the final presentations
App tracking presentation
Vito and final slide

Fun fact to wrap it up: I ended up sleeping in my car 🚘 on the street in front of Clubco both nights, because at 9 p.m. on Friday I realized that my accommodation wasn’t booked from September 19th, but from October 19th đŸ€Š. I even tried sleeping in a meeting room - you know, since it was a hackathon (like my teammate in the photo) - but I couldn’t fall asleep there, so the car won. In the end, it didn’t matter at all - actually the opposite. There wasn’t much time to sleep anyway, let alone head somewhere to check into a hotel. :)

#
Series
Media data in Google BigQuery: How to get started
8/6/2026

How do you get data from multiple ad platforms into a single data warehouse, typically BigQuery? We’ll walk through the core architecture and key decisions before you start exporting data from Google Ads, Meta Ads, Sklik, and other platforms.

#
Series
First-party data in online advertising, part 3: Debugging – how to verify that everything works
1/6/2026

Part 3 of our first-party data series gets technical again – we'll show you how to check that data is correctly reaching each system and doing what it should. We'll look at outgoing hits in DevTools and at checks directly in the ad platforms.

#
Blog post
GA4 Sessionization in BigQuery
24/5/2026

A detailed guide to sessionizing the GA4 BigQuery export — from identifying sessions and reliably ordering events to two attribution models (First Event Available and Session Start), their limitations, and validating agreement between them.

#
Blog post
How (and Why) We Back Up ClickUp
27/4/2026

Take a look at our ClickUp backup solution. Automated exports, a GitHub repository, and a practical guide to keeping your company data under control.

#
Series
Server-side tracking, part 1: How to get started with Cloud Run
20/4/2026

Learn how to deploy server-side tracking on Google Cloud Run. Compare Stape vs Cloud Run, configure load balancers, choose billing types, and test your setup.

#
Series
First-party data in online advertising, part 2: How to collect it and send it to media systems
2/4/2026

Complete technical guide to collecting first-party data via dataLayer, normalizing, hashing, and sending through server-side GTM to Google Ads and Meta.

#
Blog post
ClickUp MCP testing
15/3/2026

Testing ClickUp MCP: hands-on experience with AI-powered automation, security concerns with access tokens, practical limitations, and who should use it.

#
Series
First-party data in online advertising, part 1: How it works and why it improves campaign performance
23/2/2026

Learn how first-party data improves campaign performance, measurement accuracy, and cross-device tracking. Discover practical ways to collect and use it.

#
Blog post
How we migrated 250 media tags to the server - and how it all turned out
14/1/2026

Learn how we migrated 250 media tags (Facebook, Google Ads, Sklik, Bing) to server-side GTM. Practical tips, templates, and lessons learned.

#
Blog post
Analytics Workshops at Agencies
20/12/2025

Workshops on advanced digital analytics: BigQuery, cookieless tracking, consent, attribution, and building data warehouses for reporting and activation.

#
Blog post
Analytics is a great career path for women - including moms returning from (or during) maternity leave
20/11/2025

Why analytics is an excellent career for women, including those returning from maternity leave. A personal story about transitioning into data analytics.

#
Blog post
BigQuery: How to move a GA4 dataset to another GCP project
1/11/2025

Learn how to transfer historical GA4 data between BigQuery projects using Data Transfer Service. Step-by-step guide for dataset migration and billing.

#
Blog post
Reshoper 2025
15/10/2025

A look back at Reshoper - advising e-shop owners on tracking and measurement, plus a roundtable on marketing automation with insights on self-hosted N8N.

#
Blog post
Hack Your Weekend
23/9/2025

From Idea to App in 48 Hours 🚀 Building AI-powered apps at #HackYourWeekend using Claude Code, tracking with BigQuery, and lessons from team development.

#
Blog post
MeasureCamp Brno 2025
10/9/2025

Recap of MeasureCamp Brno 2025: server-side tracking insights, legal tracking without consent, and Women in Analytics session by MeasureDesign team.

#
Blog post
PPC summer camp
20/8/2025

Recap of PPC Camp: my presentation on legally measuring data without user consent - cookieless tracking, sGTM, BigQuery, Facebook conversions, and Advanced Consent Mode risks.

#
Blog post
How to calculate the date of Easter in BigQuery
16/4/2025

Ready-to-use BigQuery SQL script to calculate Easter dates (2024-2100) using Computus algorithm. Perfect for filtering GA4 data and analyzing seasonal trends.

#
Blog post
Visibility Thursday
25/2/2025

GA4 + BigQuery in practice: connecting analytics, CRM & media data, real-world use cases from IKEA, Shoptet, McDonald's & Česká spoƙitelna, and what it unlocks for marketing.

#
Podcast
Socials: VaĆĄek Jelen discusses GA4, server-side tracking, BigQuery and connecting customer data with campaign performance
19/11/2024

80-minute podcast with VaĆĄek Jelen on GA4, server-side tracking, BigQuery, and connecting customer data with campaign performance for e-commerce.

#
Blog post
MeasureCamp Prague 2024: Using Google Ads export in Google BigQuery
10/9/2024

Vaơek and Anička presented at MeasureCamp Prague on using Google Ads export in BigQuery, combining it with GA4 and CRM data to solve attribution issues.

#
Blog post
Data retention: Storing data in Google Analytics 4
31/8/2024

Learn how to extend GA4 data retention from 2 to 14 months. Understand what retention affects, how to change settings, and what happens after data expires.

#
Blog post
Workshop: GA4 basics for the Tereza non-profit organization
3/6/2024

MeasureDesign led a Google Analytics 4 workshop for Tereza non-profit, focusing on practical data use for their Učíme se venku program.

#
Blog post
Reshoper 2024: New opportunities in analytics
20/5/2024

At the Reshoper conference, I had the opportunity to give a talk where I summarized new opportunities for e-commerce analytics.

#
Blog post
Marketing Festival 2024: Learn to work with GA4 data in BigQuery and GCP
22/2/2024

Workshop on working with GA4 data in BigQuery and Google Cloud. Learn to move beyond the GA4 interface and unlock the potential of raw GA4 data.

#
Webinar
Tips and tricks for GA4 not just for Shoptet users
25/11/2023

Webinar recording with practical recommendations for evaluating campaigns in GA4 for Black Friday and Christmas. Hosted with Marek Čech for Shoptet.

#
Webinar
Webinar: Evaluating GA4 Data in BigQuery
21/6/2023

Public webinar on evaluating campaigns using GA4 dataset in Google BigQuery. Featuring VaĆĄek RĂĄĆĄ and Honza TichĂœ on DBT, SQL queries, and data flattening.

Vojtěch ČernĂœ
IT & Data Developer
Jiƙí Otipka
Analyst
Lenka PittnerovĂĄ
Analyst
Martina Kvasničková
AI & Data Research
Anna HorĂĄkovĂĄ
Analyst
Zuzana MikyĆĄkovĂĄ
Analyst & Co-Founder
VaĆĄek Jelen
Lead Analyst & Co-Founder
Blanka HejdukovĂĄ
Back Office
MarkĂ©ta SvěrĂĄkovĂĄ
Analyst
Petra SĂșkenĂ­kovĂĄ
Analyst
KlĂĄra BelzovĂĄ
Analyst
Vojtěch ČernĂœ
Vojtěch ČernĂœ
IT & Data Developer

Vojta works at MeasureDesign on developing technical and data solutions that are not only functional, but also practical and easy to use. He enjoys combining web development, automation, and data work to create solutions that make sense both from the user’s perspective and in terms of the technical foundations behind them. What he finds most rewarding is turning a more complex problem into a clean and reliable solution.

Jiƙí Otipka
Jiƙí Otipka
Analyst

Jirka has been working in marketing for over 10 years, and if there is anything he enjoys more than numbers themselves, it is connecting them. He loves mathematics and data analytics, and thanks to his interest in exploring source code, he can easily communicate with developers in their own language. At MeasureDesign, he specializes in connecting new data sources - building custom connectors in Python, testing data quality, and exploring which data combinations make the most sense from a business perspective. He is completely at home in Looker Studio and also has extensive experience evaluating PPC campaign performance.

Lenka PittnerovĂĄ
Lenka PittnerovĂĄ
Analyst

Lenka joined MeasureDesign at the end of 2025, bringing extensive experience from PPC marketing, where she spent many years working with Google Ads, Meta Ads, and other advertising platforms. While managing campaigns, she repeatedly ran into the same issue - poorly set up or insufficient web analytics, which made effective optimization nearly impossible.‍ This challenge initially led her to analytics out of necessity, but over time she discovered that she enjoyed it even more than advertising itself. Today, she focuses primarily on implementing web analytics and data solutions that provide companies with high-quality, reliable data for strategic decision-making and performance marketing. She continues to work on selected PPC projects as well - not only because she still enjoys them, but mainly to stay closely connected to the reality of media platforms and the real needs of clients.

Martina Kvasničková
Martina Kvasničková
AI & Data Research

MarĆ„a helps integrate AI into everyday work—making it faster, more efficient, and accessible to every team member. What excites her most is finding practical ways to use AI and turning new technologies into useful tools.

Anna HorĂĄkovĂĄ
Anna HorĂĄkovĂĄ
Analyst

Anička has over 7 years of experience in the agency world, where she has managed social media ad campaigns for clients, and especially for content-driven websites, her favorite. Wanting to broaden her perspective beyond campaign data, she gradually shifted her focus toward web analytics. She joined our team in 2022 and now specializes in data analytics, using GA4, BigQuery, Looker Studio, and other tools to connect and dig deeper into data — delivering insightful analyses and valuable input for business decisions. Anička was a member of our team until 2026.

Zuzana MikyĆĄkovĂĄ
Zuzana MikyĆĄkovĂĄ
Analyst & Co-Founder

Zuzka's career path led her through corporate innovation and research management, running word-of-mouth projects, and later to a digital agency, where she managed website development projects. However, Zuzka is naturally curious and wanted to understand how a website actually works once it is launched into the world. That curiosity led her to study web analytics — and eventually to a key collaboration with Vaơek. In 2019, they founded the company together.

VaĆĄek Jelen
VaĆĄek Jelen
Lead Analyst & Co-Founder

Vaơek has been working in digital analytics for over 15 years — from setting up tracking to data storage, visualization, and interpretation. He helps companies keep their data in order and make full use of it. He focuses primarily on data from digital platforms such as websites, apps, and client zones, and on connecting that data with other business data like media and customer data. After years of freelancing, he co-founded the analytics studio MeasureDesign, where, in addition to working on analytics projects and bespoke training sessions, he also mentors and educates new analysts.

Blanka HejdukovĂĄ
Blanka HejdukovĂĄ
Back Office

Blanka joined our team in 2024 and has been responsible for back-office operations, including invoicing and administrative tasks, ever since. She draws on her experience from the Czech Post and her background in financial management to keep everything running smoothly. In her free time, she enjoys traveling with her two children and finds relaxation in working in her garden.

MarkĂ©ta SvěrĂĄkovĂĄ
MarkĂ©ta SvěrĂĄkovĂĄ
Analyst

MarkĂ©ta started out in marketing, but then came maternity leave — and with it, total chaos. In an effort to hold on to the last bits of sanity, she turned to data. After all, numbers don’t yell, spill cereal into your keyboard, and at least they make some sense. She completed a data analytics course at Engeto Academy, where she bonded with SQL, Power BI, Excel, and Python, and started looking for patterns outside the bounds of children’s coloring books. Today, at MeasureDesign, she helps clients understand what their numbers are really saying.

Petra SĂșkenĂ­kovĂĄ
Petra SĂșkenĂ­kovĂĄ
Analyst

She joined MeasureDesign in 2023, specialising in measurement implementation and reporting. Her favourite moment is when, after all the setup and testing, the first data finally starts flowing in. Her biggest challenge? The unexpected (and often undocumented) changes from Google – those are the times when every analyst turns into a paranormal behaviour expert. đŸ‘» She was a member of our team until summer 2026.

KlĂĄra BelzovĂĄ
KlĂĄra BelzovĂĄ
Analyst

Klára has been with the company since 2019. She focuses mainly on web analytics but is not afraid to dive into data work in BigQuery. What she enjoys most is guiding clients through the entire process — from defining their needs to implementing tracking and creating the final data visualizations. She gets an almost suspicious amount of joy from a clean and well-organized GTM container or a report full of useful data.