- InstaByte
- Posts
- Meta's next big AI bet: Manus
Meta's next big AI bet: Manus
ALSO: CI/CD Pipelines
Happy New Year!
Thank you for being part of our community. Wishing you a wonderful 2026!
This week’s problem might get your heart rate up. Here’s what to expect today:
Climbing Stairs problem
CI/CD pipelines
Read time: under 4 minutes
CODING CHALLENGE
Climbing Stairs
You are climbing a staircase. It takes n steps to reach the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
Example 1:
Input: n = 2
Output: 2
Explanation: There are two ways to climb to the top.
1. 1 step + 1 step
2. 2 stepsExample 2:
Input: n = 3
Output: 3
Explanation: There are three ways to climb to the top.
1. 1 step + 1 step + 1 step
2. 1 step + 2 steps
3. 2 steps + 1 stepSolve the problem here before reading the solution.
PRESENTED BY MINIMAX
MiniMax M2.1 SOTA Multi-language Agentic Coding is Here!
MiniMax M2.1 is an OSS coding & agent model for real work. SOTA multi-language coding (Rust, Java, Go, C++, Kotlin, Obj-C, TS/JS), stronger Android/iOS & web dev, faster concise reasoning, lower tokens, and advanced interleaved instruction following.
SOLUTION
To solve this problem, we can use dynamic programming. We'll build our solution from the bottom up.
For any step n, the number of ways to reach it is the sum of ways to reach (n-1) and (n-2). This is because we can reach step n by either taking one step from (n-1) or (n-2).
Note that the case where we take 2 steps from (n-2) to (n) is also included in this because we will have to take one step from (n-1) in this case.
The time complexity of this solution is O(n), where n is the number of steps.

SYSTEM DESIGN
CI/CD pipelines

After the recent “Blue Screen of Death” outage at Microsoft, CI/CD has become a hot topic again. Let’s try to understand what CI/CD means.
CI/CD is a set of practices that aims to improve the speed and reliability of software releases.
There are two parts in CI/CD:
Continuous Integration (CI): CI is about merging code changes frequently. Developers push their code to a shared repository multiple times a day. Each integration is verified by automated builds and tests. This helps catch and fix issues early.
Continuous Delivery (CD): CD takes the code that passed CI and automatically deploys it to a staging environment. It ensures that the code is always in a deployable state. The final step to production can be manual or automated.
Now, let's see what a CI/CD pipeline might look like:
Code commit: Developers push code to the repository.
Build: The application is compiled.
Unit tests: Small parts of the code are tested individually.
Integration tests: Different parts of the application are tested together.
Deploy to staging: The application is automatically deployed to a test environment.
Acceptance tests: The application is tested in an environment similar to production.
Manual approval: A team member reviews and approves the changes.
Deploy to production: The application is deployed to the live environment.
Post-deployment tests: Final checks are done to ensure everything works in production.
Monitoring: Appropriate alarms are set to find issues in the production servers.
Steps 1 to 5 are CI and steps 6-10 are CD.
FEATURED COURSES
5 Courses of the Week
✅ IBM Data Science Professional Certificate: Master data science fundamentals including Python, SQL, and machine learning. Build a portfolio with hands-on projects using real datasets. Learn data visualization with tools like Matplotlib and Folium.
✅ Google Cybersecurity Professional Certificate: Learn to identify and mitigate common cybersecurity threats and vulnerabilities. Master security tools like SIEM and IDS. Understand network security, cryptography, and Linux fundamentals.
✅ Meta Front-End Developer Professional Certificate: Build responsive websites using HTML, CSS, and JavaScript. Master React for creating dynamic user interfaces. Apply UX/UI design principles to web development. Complete hands-on projects for a job-ready portfolio.
✅ Machine Learning by Stanford University: Understand supervised and unsupervised learning algorithms. Implement neural networks and deep learning models. Learn best practices for building ML systems.
✅ Google Project Management Professional Certificate: Learn project management fundamentals and Agile methodologies. Master tools for planning, execution, and stakeholder communication. Prepare for PMI certifications and entry-level PM roles.
HEARD OF SYNTHFLOW?
The New Enterprise Approach to Voice AI Deployment
A practical, repeatable lifecycle for designing, testing, and scaling Voice AI. Learn how BELL helps teams deploy faster, improve call outcomes, and maintain reliability across complex operations.
NEWS
This Week in the Tech World

Meta Acquires AI Startup Manus for $2B+: Meta agreed to buy Singapore-based AI agent startup Manus for over $2 billion. The deal was struck in just 10 days as Zuckerberg intensifies AI efforts.
SoftBank Completes $41B OpenAI Investment: SoftBank Group has completed its $41 billion investment in OpenAI, giving the Japanese conglomerate about 11% stake in the ChatGPT maker.
Nvidia Licenses Groq Tech for $20B: Nvidia is acquiring assets from AI chip startup Groq for $20 billion in cash. Groq's CEO and senior leaders will join Nvidia to scale the inference technology.
xAI Buys Third Data Center Site: Elon Musk's xAI acquired a third building called "Macrohardrr" to expand AI compute capacity to nearly 2 gigawatts. The name is a jab at Microsoft.
China Mandates 50% Domestic Chip Equipment: China now requires chipmakers to use at least 50% domestically made equipment for new capacity. The rule aims to build a self-sufficient semiconductor chain.
OpenAI Hiring Head of Preparedness: OpenAI is hiring a new safety executive to study emerging AI risks. Sam Altman says models are "starting to present some real challenges" in cybersecurity and mental health.
Apple Patches Two Zero-Day Flaws: Apple released emergency security updates to fix two WebKit vulnerabilities actively exploited in targeted attacks. Google's Threat Analysis Group discovered the bugs.
2025 Tech Layoffs Reach 122K+: Over 122,500 tech employees were laid off in 2025 across 257 companies. However, that's 20% fewer than 2024's total of 152,900, signaling possible stabilization.
CREATE & MONETIZE CONTENT WITH AI IN 2026
Forrester Expert Webinar - AI Enters the Content Workflow Conversation
Find out how to manage and monetize your content library on January 14th as industry pioneers from Forrester Research and media executives formerly of ESPN, Disney, and Comcast reveal how to get on the cutting edge of content operations with the help of AI.
🎁 NEW YEAR GIVEAWAY
Help us grow and win! Refer your friends to InstaByte in the next 7 days, and get entered to win an Amazon gift card worth up to $75, while supplies last. Each referral = one entry. Winners get randomly selected for a $25, $50, or $75 card.
The more you share, the better your chances. Use your unique referral link below to start spreading the word! Happy New Year!
BONUS
Just for laughs 😏

YOUR FEEDBACK
What did you think of this week's email?Your feedback helps us create better emails for you! |
Until next time, take care! 🚀
Cheers,



