<?xml version="1.0" encoding="UTF-8"?><rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>ByteByteGo - Community Posts- YouTube</title><link>https://www.youtube.com/channel/UCZgt6AzoyjslHTC9dz0UoTw</link><atom:link href="http://rss.macworks.dev/youtube/community/@ByteByteGo?key=Z9zF23RzLd99ZiZ8fGSCEHPi339v9oj95NTiUprH" rel="self" type="application/rss+xml"></atom:link><description>Covering topics and trends in large-scale system design, from the authors of the best-selling System Design Interview book series. This channel is managed by Alex Xu and Sahn Lam. To master system design, get our 158-page System Design PDF for free by subscribing to our weekly newsletter (10-min read): https://bit.ly/3tfAlYD Take our system design online course: https://bit.ly/3mlDSk9 - Powered by RSSHub</description><generator>RSSHub</generator><webMaster>contact@rsshub.app (RSSHub)</webMaster><language>en</language><lastBuildDate>Tue, 23 Jun 2026 05:56:49 GMT</lastBuildDate><ttl>5</ttl><item><title>Redis Data Structures Every Engineer Should Know - Strings store one value per key. They work for counters, session tokens, and cached payloads. - Hashes store an object&#39;s fields under one key. You can update one field without rewriting the rest. - Lists are ordered sequences with fast push and pop at both ends. They fit queues, feeds, and recent-item lists. - Sets hold unique members and support intersection, union, and difference. They cover tagging, follower overlap, and deduplication. - Sort...</title><description>Redis Data Structures Every Engineer Should Know&lt;br&gt;&lt;br&gt;- Strings store one value per key. They work for counters, session tokens, and cached payloads.&lt;br&gt;- Hashes store an object&#39;s fields under one key. You can update one field without rewriting the rest.&lt;br&gt;- Lists are ordered sequences with fast push and pop at both ends. They fit queues, feeds, and recent-item lists.&lt;br&gt;- Sets hold unique members and support intersection, union, and difference. They cover tagging, follower overlap, and deduplication.&lt;br&gt;- Sorted Sets rank members by a numeric score. They handle leaderboards, priority queues, and top-N or range-by-score queries.&lt;br&gt;- Streams are an append-only log with consumer groups. Each consumer tracks its own position, and the server tracks unacknowledged messages.&lt;br&gt;- JSON stores nested documents with JSONPath access. You can update a field deep in a document without read-modify-write.&lt;br&gt;- Geospatial provides latitude/longitude indexes with radius and box queries. Under the hood it&#39;s a Sorted Set with geohash scores.&lt;br&gt;- Vector Set runs approximate nearest-neighbor search over embeddings. It&#39;s the retrieval step in most RAG pipelines.&lt;br&gt;- Time Series stores timestamped samples with built-in retention, downsampling, and labels. It fits metrics, telemetry, and IoT data.&lt;br&gt; &lt;br&gt;Over to you: All ten are built-in as of Redis 8. Which one do you use most outside of caching?&lt;br&gt;&lt;br&gt;--&lt;br&gt;Subscribe to our weekly newsletter to get a Free System Design PDF (368 pages): &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqbXFlVnQwZE9vbXpidENoVFl1czhTRGJUT1FkQXxBQ3Jtc0tudUFWZkNST0hXN1ZXRDFOdTYteFVpeVpLWjNFdkFNaWN1MUJmU0R1b0dxYzJFQV9SZEpuUkljQkJQWVRpQjlXb3JXVnJpRGRBZEZTWS0xNzJfc0lKVEdWRmlISjA5dG83YTIxSUFCbUhONTBSN0N6QQ&amp;amp;q=https%3A%2F%2Fgo.bytebytego.com%2Fnl-subscribe&quot;&gt;https://go.bytebytego.com/nl-subscribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#systemdesign&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/coding&quot;&gt;#coding&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/interviewtips&quot;&gt;#interviewtips&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/f-hwy7GVBRNU9pqEDOn7x-Y8-ubX1yKNEehbFNV6Mso1hhueB0dEwG4QWJWHcB0gP9Z8LSx7C0pWdw=s2484-c-fcrop64=1,0000010fffffd4e2-rw-nd-v1&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/UgkxjNptHLlHNqyV8dQ_0M28aYT6oNhuFroQ</link><guid isPermaLink="false">https://www.youtube.com/post/UgkxjNptHLlHNqyV8dQ_0M28aYT6oNhuFroQ</guid><pubDate>Mon, 22 Jun 2026 16:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>Single Agent vs. Multi-Agent Architecture Some tasks need a single agent. Others need a whole team. Knowing the difference is the skill. Single-agent system: One reasoning LLM that plans, picks a tool, and loops on its own until the task is done. Use a single agent when: - the task is a clear, linear sequence - one agent can hold the whole problem in its head - you want something simple to build and easy to debug Multi-agent system: An orchestrator that splits a task into subtasks and routes eac...</title><description>Single Agent vs. Multi-Agent Architecture&lt;br&gt;&lt;br&gt;Some tasks need a single agent. Others need a whole team. Knowing the difference is the skill.&lt;br&gt;&lt;br&gt;Single-agent system: One reasoning LLM that plans, picks a tool, and loops on its own until the task is done. Use a single agent when:&lt;br&gt;- the task is a clear, linear sequence&lt;br&gt;- one agent can hold the whole problem in its head&lt;br&gt;- you want something simple to build and easy to debug&lt;br&gt;&lt;br&gt;Multi-agent system: An orchestrator that splits a task into subtasks and routes each one to a specialized agent. Use multi-agent when:&lt;br&gt;- subtasks can run in parallel&lt;br&gt;- one agent writes and another independently verifies the work&lt;br&gt;- the problem is too big for one agent to coordinate alone&lt;br&gt;&lt;br&gt;Single agents are cheaper and easier to build, but they hit a ceiling on complex work. &lt;br&gt;&lt;br&gt;Multi-agent systems are more capable and more reliable, but they add coordination cost.&lt;br&gt;&lt;br&gt;Start with a single agent. Move to multi-agent only when context or reliability become the bottleneck. &lt;br&gt;&lt;br&gt;Over to you: Are you running single-agent or multi-agent systems in production?&lt;br&gt;&lt;br&gt;--&lt;br&gt;Subscribe to our weekly newsletter to get a Free System Design PDF (368 pages): &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqa0lRZC1HTjlFMnZRdU9lMXVMSzVxV0NBaW5fQXxBQ3Jtc0ttbkh6TDgzMWVKT2dKOEU2ZERFdVRWazNmYzdtTGZVaU4xVy1haTYyeVVOS05hOUtkVE5fWE1iRUdqTmc4YmlzcXh2dEt2WE1wMzU0aVVDcXU5eTdoRDBJWjdZa09GcTk2OUkzbG5TMl9XRnI4WHFWYw&amp;amp;q=https%3A%2F%2Fgo.bytebytego.com%2Fnl-subscribe&quot;&gt;https://go.bytebytego.com/nl-subscribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#systemdesign&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/coding&quot;&gt;#coding&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/interviewtips&quot;&gt;#interviewtips&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/MLIZpbXeAEImD5FyYofjju02P314DM1cTksa7ZAz_GF4aLojXPff4HiCDKfsnLaYd-cMGoTVF8jqyws=s1589-c-fcrop64=1,00000000ffffd3dd-nd-v1-rwa&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/UgkxUx9RCrbMo1ex9c_15tjdo91atsYtH1zG</link><guid isPermaLink="false">https://www.youtube.com/post/UgkxUx9RCrbMo1ex9c_15tjdo91atsYtH1zG</guid><pubDate>Sat, 20 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>Twelve models worth knowing in 2026, each with one standout strength. 1. Llama 4 Scout: Meta&#39;s first natively multimodal open-weight model. 2. DeepSeek V4: A Mixture-of-Experts model under MIT license with a native million-token context window. Near-frontier performance at a fraction of the cost per token. 3. Qwen3: Alibaba&#39;s flagship open-weight model with switchable thinking and non-thinking modes, all under Apache 2.0. 4. Gemma 4: Google&#39;s open-weight family released under Apache 2.0, with th...</title><description>Twelve models worth knowing in 2026, each with one standout strength. &lt;br&gt;&lt;br&gt;1. Llama 4 Scout: Meta&#39;s first natively multimodal open-weight model.&lt;br&gt;&lt;br&gt;2. DeepSeek V4: A Mixture-of-Experts model under MIT license with a native million-token context window. Near-frontier performance at a fraction of the cost per token.&lt;br&gt;&lt;br&gt;3. Qwen3: Alibaba&#39;s flagship open-weight model with switchable thinking and non-thinking modes, all under Apache 2.0.&lt;br&gt;&lt;br&gt;4. Gemma 4: Google&#39;s open-weight family released under Apache 2.0, with the widest language coverage of any model on this list.&lt;br&gt;&lt;br&gt;5. Phi 4: Microsoft’s compact model trained almost entirely on synthetic, curated data. A practical choice for edge and on-device deployment.&lt;br&gt;&lt;br&gt;6. Mistral Small 3.1: A VLM with a long context window that fits on a consumer laptop. &lt;br&gt;&lt;br&gt;7. Nemotron 3 Super: NVIDIA’s hybrid MoE with a million-token context window. Fully open weights, datasets, and recipes, with strong results on agentic coding benchmarks.&lt;br&gt;&lt;br&gt;8. GLM 5.1: The first open-weight model to top SWE-Bench Pro. Released under MIT with no commercial restrictions.&lt;br&gt;&lt;br&gt;9. Kimi K2.6: Competitive with leading closed models on coding while costing far less per million tokens. Available on Hugging Face under a Modified MIT license.&lt;br&gt;&lt;br&gt;10. StarCoder2: One of the most transparent code models available.&lt;br&gt;&lt;br&gt;11. OLMo 2 (AI2): The most complete example of open-source reproducibility on this list. Weights, training data, code, and full recipes all released under Apache 2.0.&lt;br&gt;&lt;br&gt;12. Falcon 3: A family of lightweight open-weight models built to run on a single GPU.&lt;br&gt;&lt;br&gt;Over to you: which open-source model would you add to this list?&lt;br&gt;&lt;br&gt;--&lt;br&gt;Subscribe to our weekly newsletter to get a Free System Design PDF (368 pages): &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqa3ctQ3ZnOTdJYmRVUlJjTVlNTTN0ZHRMUF8tUXxBQ3Jtc0ttX1J1VGszUk41ejBqbDEyYTRnSDFiRUVyT3FBZnZRa3E2a0VvQU9CNzN6ZVlEUVZvQ0E5WnpUS2Fud1dnWm9kQjZhbU8teVVfaXlwYTFyX1k1QXFTMkRSMmJtcGZCTHg5TkdzZDh3R0FVVEVHbWN3SQ&amp;amp;q=https%3A%2F%2Fgo.bytebytego.com%2Fnl-subscribe&quot;&gt;https://go.bytebytego.com/nl-subscribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#systemdesign&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/coding&quot;&gt;#coding&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/interviewtips&quot;&gt;#interviewtips&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/mD2LPCvesOhaiezFsyx8Cp5dMQMLYtKiaNP2IxTpqZ7rQEsU_FXRv5S3_NXJBvegQH7G8-iJPPiU-XM=s1605-c-fcrop64=1,00000224ffffd823-nd-v1-rwa&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/UgkxZraKJuL35De2rzxPA52Odc0jIu02Odqz</link><guid isPermaLink="false">https://www.youtube.com/post/UgkxZraKJuL35De2rzxPA52Odc0jIu02Odqz</guid><pubDate>Wed, 17 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>SLMs vs. LLMs, Clearly Explained Big models cost more. Small models do less. Here&#39;s how SLMs and LLMs differ across the dimensions that matter in production: 1. Architecture: SLMs are usually under 10B parameters and run on a laptop or phone. LLMs sit at 10B+ with deeper layers and more attention heads, built for broad reasoning across tasks. 2. Task Complexity: SLMs work well on simple tasks but fail on complex multiple reasoning steps. LLMs handle difficult math, multi-step code, and long-hori...</title><description>SLMs vs. LLMs, Clearly Explained&lt;br&gt;&lt;br&gt;Big models cost more. Small models do less. Here&#39;s how SLMs and LLMs differ across the dimensions that matter in production: &lt;br&gt;&lt;br&gt;1. Architecture: SLMs are usually under 10B parameters and run on a laptop or phone. LLMs sit at 10B+ with deeper layers and more attention heads, built for broad reasoning across tasks.&lt;br&gt;&lt;br&gt;2. Task Complexity: SLMs work well on simple tasks but fail on complex multiple reasoning steps. LLMs handle difficult math, multi-step code, and long-horizon planning. &lt;br&gt;&lt;br&gt;3. Long Context Recall: SLMs lose the thread across long documents or extended conversations. LLMs reliably track and connect information across large inputs.&lt;br&gt;&lt;br&gt;4. Latency and Cost: SLMs run on consumer hardware with low response times and significantly lower inference costs. LLMs require GPU and carry higher costs per request.&lt;br&gt;&lt;br&gt;5. Deployment and Privacy: SLMs run on-device or on-premise. LLMs are typically cloud-hosted, which adds data governance complexity.&lt;br&gt;&lt;br&gt;6. Where each fits:&lt;br&gt;SLMs: on-device assistants, real-time classification, or privacy-sensitive applications&lt;br&gt;LLMs: complex reasoning, agent workflows, or broad knowledge tasks.&lt;br&gt;&lt;br&gt;Are you using SLMs, LLMs, or a hybrid setup in production?&lt;br&gt;&lt;br&gt;--&lt;br&gt;Subscribe to our weekly newsletter to get a Free System Design PDF (368 pages): &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqbTh4RXRNRy16SWlYc2JYbkwzNHdpbDNtemw4UXxBQ3Jtc0tsRHNXZVBoMUtwbUJVUE11QmJVTko5MS1pcjVPdE5YY01PbmZUZFpuNEJ0QWt0QWtNRnFFN2plUTBjZzF5WFFKSTRVd1kyX1QyM0JwQm9Rd0N1b2s3UnU3VVdWemFPZF9KVWc0LVZpaURpcXNqU1Zvcw&amp;amp;q=https%3A%2F%2Fgo.bytebytego.com%2Fnl-subscribe&quot;&gt;https://go.bytebytego.com/nl-subscribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#systemdesign&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/coding&quot;&gt;#coding&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/interviewtips&quot;&gt;#interviewtips&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/UdIEUYLrn9FQ7QXhzlDYEiiWgl7btfhVlTFCmaQQjsNAzqn57lUXGvGrCzifHkAu6PoQ9frbWg_2Sw=s1655-c-fcrop64=1,00000000ffffd3d6-nd-v1-rwa&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/UgkxkyOJdOBbtiKGBWndL-4UJF-Efge_ty2L</link><guid isPermaLink="false">https://www.youtube.com/post/UgkxkyOJdOBbtiKGBWndL-4UJF-Efge_ty2L</guid><pubDate>Tue, 16 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>The Typical AI Agent Stack, Explained Most people think an AI agent is just a clever prompt and an LLM. The reality is much deeper. There&#39;s an entire architecture working behind the scenes to make it all run. The diagram below shows the full AI Agent Stack. At the core is the Agent Runtime that runs a ReAct loop, and three other layers feed into it. AI Agent Runtime: The LLM thinks about what to do, picks a tool, observes the result, then reflects and decides the next step. This loop repeats unt...</title><description>The Typical AI Agent Stack, Explained&lt;br&gt;&lt;br&gt;Most people think an AI agent is just a clever prompt and an LLM. The reality is much deeper. There&#39;s an entire architecture working behind the scenes to make it all run.&lt;br&gt;&lt;br&gt;The diagram below shows the full AI Agent Stack. At the core is the Agent Runtime that runs a ReAct loop, and three other layers feed into it. &lt;br&gt;&lt;br&gt;AI Agent Runtime: The LLM thinks about what to do, picks a tool, observes the result, then reflects and decides the next step. This loop repeats until the goal is reached. &lt;br&gt;&lt;br&gt;Model Layer (the brain): The underlying LLMs that power reasoning.&lt;br&gt;&lt;br&gt;Tool Layer (the hands): How the agent interacts with the real world: search, APIs, code execution, data access.&lt;br&gt;&lt;br&gt;Memory Layer (the notebook): Short-term working memory for the current task, long-term semantic memory for knowledge, and transactional memory for state.&lt;br&gt;&lt;br&gt;&lt;br&gt;Wrapping everything is the Observability &amp;amp; Safety Layer. This is what keeps agents debuggable, evaluable, cost-aware, and safe in production.&lt;br&gt;&lt;br&gt;Over to you: Which layer of the stack do you think is the hardest to get right in production?&lt;br&gt;&lt;br&gt;--&lt;br&gt;Subscribe to our weekly newsletter to get a Free System Design PDF (368 pages): &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqbVdGNFF0eWRkOEkyWVRHdkdBbEhxSkZyY1R4d3xBQ3Jtc0trWGE0Z2gtMHc3dzJMUExjcFU5aHlmSlpoOVdjVUlfUGhHanVTdnNILS1yNGpJRW1UalpnaHZ6TndLckVrekg4akNZWURqZ1A4OENNYVEtZEZ2cmg2VU9PY3VFTU1IVEMxbHRtLTZ4UEF3Z01YY1ZTNA&amp;amp;q=https%3A%2F%2Fgo.bytebytego.com%2Fnl-subscribe&quot;&gt;https://go.bytebytego.com/nl-subscribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#systemdesign&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/coding&quot;&gt;#coding&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/interviewtips&quot;&gt;#interviewtips&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/psc9EmPQ7qVz7Uu6dQOmkxoo9Y9NIPtoeZBU7EcsTkAVzrEU7xuJb--hT6-RniGbBAafR8M016o8Ng=s1672-c-fcrop64=1,00000000ffffd603-nd-v1-rwa&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/UgkxSth_Pod1pNb6SrQhr9yd0ORettqu0p07</link><guid isPermaLink="false">https://www.youtube.com/post/UgkxSth_Pod1pNb6SrQhr9yd0ORettqu0p07</guid><pubDate>Fri, 12 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>Salesforce deployed 20,000 enterprise AI agents. The biggest lesson? The work is inverted! Traditional software → 90% of the effort comes before launch AI agents → 90% comes after We sat down with John Kucera, CPO of Agentforce, to learn what separates agents that deliver real value from those that stall after a good demo. Teams that treat launch as the finish line stay stuck in pilot mode. Teams that treat it as the starting line scale. The full playbook covers: - Why most enterprise agents f...</title><description>Salesforce deployed 20,000 enterprise AI agents. The biggest lesson? The work is inverted!&lt;br&gt;&lt;br&gt;Traditional software → 90% of the effort comes before launch&lt;br&gt;AI agents → 90% comes after&lt;br&gt;&lt;br&gt;We sat down with John Kucera, CPO of Agentforce, to learn what separates agents that deliver real value from those that stall after a good demo.&lt;br&gt;&lt;br&gt;Teams that treat launch as the finish line stay stuck in pilot mode. Teams that treat it as the starting line scale.&lt;br&gt;&lt;br&gt;The full playbook covers:&lt;br&gt;- Why most enterprise agents fail&lt;br&gt;- Pre-launch foundations (scope, KPIs, guardrails)&lt;br&gt;- The feedback loop that gates scaling&lt;br&gt;- 3 anti-patterns from 20,000 deployments&lt;br&gt;- Where agent architecture is heading next&lt;br&gt;&lt;br&gt;Full breakdown: &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqbHhIU0lXOFBuMFRRNUZGdTh1NmNCa0d2UjRUd3xBQ3Jtc0tsNFFkQ1pxTUtwTzZFeDhnSkdFV1luYzZNRGZkalFuR1liWXBmSlpCemhkcF9fbFZvU0pnb0F2Yk1nWlBrU1hHdlRFUm40SkttajZJZUdoUGFBbllMYUd6TjAxeWRGaWY1Zlp1dGU2andiWHhxdVZ3SQ&amp;amp;q=https%3A%2F%2Fblog.bytebytego.com%2Fp%2Fwhat-salesforce-learned-from-20000&quot;&gt;https://blog.bytebytego.com/p/what-sa...&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/ai&quot;&gt;#AI&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/aiengineer&quot;&gt;#AIEngineer&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/machinelearning&quot;&gt;#MachineLearning&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/aE_SUvjK3loq9vN1YBHJ1bXHQ5SqmfQHtDYZxSVDpUAgce-wxfrbFdzBoY3xsZt3vO2piL7dTTNRhw=s2484-c-fcrop64=1,00000000ffffd3d3-rw-nd-v1&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/UgkxCA9zslBbIPsgzcn76SPD71NbqHia7y3g</link><guid isPermaLink="false">https://www.youtube.com/post/UgkxCA9zslBbIPsgzcn76SPD71NbqHia7y3g</guid><pubDate>Wed, 10 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>We’re looking for multiple part-time instructors to teach AI and engineering cohort-based live courses. This is a great fit if you love teaching, enjoy sharing what you know, and want a meaningful side thing alongside your main work. The role has some upfront time investment to get familiar with the curriculum and prepare, but after that, it’s designed to be a limited commitment (2-5 hours bi-weekly). It offers stable income, good upside, and a chance to share your knowledge while working with...</title><description>We’re looking for multiple part-time instructors to teach AI and engineering cohort-based live courses.&lt;br&gt;&lt;br&gt;This is a great fit if you love teaching, enjoy sharing what you know, and want a meaningful side thing alongside your main work.&lt;br&gt;&lt;br&gt;The role has some upfront time investment to get familiar with the curriculum and prepare, but after that, it’s designed to be a limited commitment (2-5 hours bi-weekly). It offers stable income, good upside, and a chance to share your knowledge while working with ambitious learners.&lt;br&gt;&lt;br&gt;We’re especially looking for instructors in:&lt;br&gt;&lt;br&gt;- Building Production-Grade AI Systems&lt;br&gt;- System Design&lt;br&gt;- AI Security &amp;amp; LLM Red-Teaming&lt;br&gt;- AI Evals Intensive&lt;br&gt;- AI Cost Optimization&lt;br&gt;- Agentic AI Coding&lt;br&gt;- Build with Codex&lt;br&gt;- AI for Engineering Leaders&lt;br&gt;- AI Automation&lt;br&gt;- Others, please suggest&lt;br&gt;&lt;br&gt;Ideal instructors are hands-on, clear communicators, and excited to teach.&lt;br&gt;&lt;br&gt;If this sounds like you, email us at jobs@bytebytego.com with your background, the topics you’d be excited to teach, and any teaching, writing, or speaking samples.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/ai&quot;&gt;#AI&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/aiengineer&quot;&gt;#AIEngineer&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#Systemdesign&lt;/a&gt;&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/SCwrAeI-QD7uWnomA6ic96TTStGJsOF68NCRf4XDyym7ZoH1gz3NO0P67FyEOhdHR5gNQLNspNvjIA=s6000-c-fcrop64=1,00000534ffffd555-rw-nd-v1&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/Ugkxh0WS0EGvRuY98pQkyU_EL5sSsoNDf-vV</link><guid isPermaLink="false">https://www.youtube.com/post/Ugkxh0WS0EGvRuY98pQkyU_EL5sSsoNDf-vV</guid><pubDate>Tue, 09 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>How OpenAI Built Its Data Agent Most teams building data agents stack routers, fine-tunes, and complex retrieval pipelines on top of multiple LLMs. OpenAI didn&#39;t. Their data agent runs on a single model and only 13 tools, across 1.5 exabytes and 90,000 tables. It&#39;s &quot;pretty vanilla&quot; by design. We spoke with Emma Tang, Head of Data Platform Engineering at OpenAI, to better understand the architecture and the engineering decisions behind it. The article covers: - The architecture behind the data ag...</title><description>How OpenAI Built Its Data Agent&lt;br&gt;&lt;br&gt;Most teams building data agents stack routers, fine-tunes, and complex retrieval pipelines on top of multiple LLMs. OpenAI didn&#39;t.&lt;br&gt;&lt;br&gt;Their data agent runs on a single model and only 13 tools, across 1.5 exabytes and 90,000 tables. It&#39;s &quot;pretty vanilla&quot; by design.&lt;br&gt;&lt;br&gt;We spoke with Emma Tang, Head of Data Platform Engineering at OpenAI, to better understand the architecture and the engineering decisions behind it.&lt;br&gt;&lt;br&gt;The article covers:&lt;br&gt;- The architecture behind the data agent&lt;br&gt;- The six layers of context that make a single LLM reliable across 90,000 tables&lt;br&gt;- How OpenAI Uses Codex Internally: 3 Use Cases&lt;br&gt;- Five practical lessons for any team building a domain agent&lt;br&gt;- Where OpenAI&#39;s data platform is headed next&lt;br&gt;&lt;br&gt;Read the full article here: &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqbjM3R0Vxb1VsZklLaHA1cnZYVWdDekV2azFOd3xBQ3Jtc0trTm4yS25naHBVRS1iLTJVYWlKODdtb00wSjg4ZUFXX0NZMTVBa2FuWmRjdlA2b21qOUlza2dNWVNXa3FuRnI2bWN2bGtmLVpoVmRRWThtUFlfdHY3SmZoV2FtNHE1SW9QaFc5VElEVUdRRlF2U1hpVQ&amp;amp;q=https%3A%2F%2Fblog.bytebytego.com%2Fp%2Fhow-openai-built-its-data-agent&quot;&gt;https://blog.bytebytego.com/p/how-ope...&lt;/a&gt;&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/dPyj9KvF76BWhbZwGVNbnmqdOr-fbn8m402OoHmm5ddq0-t5LX__ufR84P3BAmqfQQiax9I2aJq6=s2484-c-fcrop64=1,00000000ffffc619-rw-nd-v1&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/Ugkx4MLmNG-j9bcoRh2UzbNRmJDz__RXRfvq</link><guid isPermaLink="false">https://www.youtube.com/post/Ugkx4MLmNG-j9bcoRh2UzbNRmJDz__RXRfvq</guid><pubDate>Tue, 09 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>What is Google’s TPU? A TPU (Tensor Processing Unit) is Google’s custom AI chip, designed from scratch for the giant matrix multiplications that modern models live on. GPUs were built for graphics first. TPUs were built for deep learning from day one. At Cloud Next ’26, Google unveiled its 8th generation, and for the first time it ships in two flavors. TPU 8t is built for training, where raw throughput wins. TPU 8i is built for inference, where latency and chip-to-chip speed matter most. Both...</title><description>What is Google’s TPU?&lt;br&gt;&lt;br&gt;A TPU (Tensor Processing Unit) is Google’s custom AI chip, designed from scratch for the giant matrix multiplications that modern models live on. GPUs were built for graphics first.&lt;br&gt;&lt;br&gt;TPUs were built for deep learning from day one.&lt;br&gt;&lt;br&gt;At Cloud Next ’26, Google unveiled its 8th generation, and for the first time it ships in two flavors. TPU 8t is built for training, where raw throughput wins. TPU 8i is built for inference, where latency and chip-to-chip speed matter most. &lt;br&gt;&lt;br&gt;Both still share the same Axion CPUs, liquid cooling, and software stack, so code written for one runs on the other.&lt;br&gt;&lt;br&gt;The diagram below is a quick study guide to what’s the same, what’s different, and why, based on our understanding of published Google articles.&lt;br&gt;&lt;br&gt;--&lt;br&gt;Subscribe to our weekly newsletter to get a Free System Design PDF (368 pages): &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqbHlUaDhtRFZLY1dyREk0RlBPQVhzUk1Jc2ZtZ3xBQ3Jtc0tscU5EQlpGWDg0RzVta1dYNENsZ2pjbzFGcV95QVd2RTlrNGk2TS1kX0RFT1MyRXdNZ25WVjBXR3FMVHdrYW5CVGo4dlB1aHJMUk1zWEJjNFNabGFtQzNMYmZlR09hOFY1ZTJHcXY4aXY4NUtpVnZwMA&amp;amp;q=https%3A%2F%2Fgo.bytebytego.com%2Fnl-subscribe&quot;&gt;https://go.bytebytego.com/nl-subscribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#systemdesign&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/coding&quot;&gt;#coding&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/interviewtips&quot;&gt;#interviewtips&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/QZcya7hUUL8RhMI2JMSzeyZVbtHFhHwvcXvDgWe13FNgwLcmB4pjx5cfzclEMDg3Lkli5fFm7J216g=s2366-c-fcrop64=1,00000000ffffc75f-rw-nd-v1&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/Ugkx1y3MYrL76QVYkyIPudw6m1bNMKpkNms9</link><guid isPermaLink="false">https://www.youtube.com/post/Ugkx1y3MYrL76QVYkyIPudw6m1bNMKpkNms9</guid><pubDate>Tue, 02 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item><item><title>Latency vs Throughput vs Bandwidth Ever wondered why your app feels slow even when the bandwidth looks fine? Latency, throughput, and bandwidth often get used interchangeably, but each one tells a different story about performance. Latency is the delay. How long it takes for a single packet to travel from sender to receiver. If your ping shows 40 ms round-trip, that&#39;s latency. Throughput is the actual delivery rate. How much data is successfully transferred per second. If your download shows 62 ...</title><description>Latency vs Throughput vs Bandwidth&lt;br&gt;&lt;br&gt;Ever wondered why your app feels slow even when the bandwidth looks fine? Latency, throughput, and bandwidth often get used interchangeably, but each one tells a different story about performance.&lt;br&gt;&lt;br&gt;Latency is the delay. How long it takes for a single packet to travel from sender to receiver. If your ping shows 40 ms round-trip, that&#39;s latency.&lt;br&gt;Throughput is the actual delivery rate. How much data is successfully transferred per second. If your download shows 62 Mbps, that’s throughput.&lt;br&gt;&lt;br&gt;Bandwidth is the maximum capacity of the link. For example, a 100 Mbps connection is the upper limit under ideal conditions. &lt;br&gt;&lt;br&gt;Throughput is always less than bandwidth. Network congestion, packet loss, and protocol overhead all affect throughput, which is why you never actually hit the maximum bandwidth capacity in practice.&lt;br&gt;&lt;br&gt;Similarly, low latency doesn&#39;t always mean high throughput. Small payloads, single connections, and tight window sizes can all keep throughput low, which is why fast responses don&#39;t guarantee you&#39;re sending a lot of data.&lt;br&gt;&lt;br&gt;Another way to understand these three concepts: Bandwidth is the highway width. Throughput is the traffic flow. Latency is how long it takes a car to go from A to B.&lt;br&gt;&lt;br&gt;All three matter, but they solve different problems.&lt;br&gt;&lt;br&gt;Over to you: How do you measure these metrics in a way that actually predicts when things will break?&lt;br&gt;&lt;br&gt;--&lt;br&gt;Subscribe to our weekly newsletter to get a Free System Design PDF (368 pages): &lt;a href=&quot;https://www.youtube.com/redirect?event=backstage_event&amp;amp;redir_token=QUFFLUhqa2c2SW9WTWhtZEY1N0tLNmFiRk1sMzJjMVlMUXxBQ3Jtc0tuNEZUdi1yV29xVGFBaXlkRGVkdXY5WWJaenRsck5Bb3NzcnBEUWF5TFBoNFRnN0xwcElOc0MwTGxFQ1A3bEc5LUt0RGJqVzh4ejZiTWtSYU9JMC1OMmVSLTRhTl9HcFV2SHduNENPdnhMMjJHTVlKdw&amp;amp;q=https%3A%2F%2Fgo.bytebytego.com%2Fnl-subscribe&quot;&gt;https://go.bytebytego.com/nl-subscribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/hashtag/systemdesign&quot;&gt;#systemdesign&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/coding&quot;&gt;#coding&lt;/a&gt; &lt;a href=&quot;https://www.youtube.com/hashtag/interviewtips&quot;&gt;#interviewtips&lt;/a&gt; &lt;br&gt;.&lt;br&gt;&lt;img src=&quot;https://yt3.ggpht.com/LvZRlyZxBHCTYR9OyO1SPACE1ehVmS0jw2puvVT7_Sd6OTZQ4cvxJSxylUbcxrLvUUptecL-0vQQ=s1589-c-fcrop64=1,00000000ffffd3dd-nd-v1-rwa&quot; referrerpolicy=&quot;no-referrer&quot;&gt;</description><link>https://www.youtube.com/post/UgkxSIWhvtb0LDwHVr5gVkTNTqgScW2p-4FR</link><guid isPermaLink="false">https://www.youtube.com/post/UgkxSIWhvtb0LDwHVr5gVkTNTqgScW2p-4FR</guid><pubDate>Tue, 02 Jun 2026 05:56:49 GMT</pubDate><author>ByteByteGo</author></item></channel></rss>