<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Infobip Kuala Lumpur Archives - ShiftMag</title>
	<atom:link href="https://shiftmag.dev/tag/infobip-kuala-lumpur/feed/" rel="self" type="application/rss+xml" />
	<link>https://shiftmag.dev/tag/infobip-kuala-lumpur/</link>
	<description>Insightful engineering content &#38; community</description>
	<lastBuildDate>Tue, 30 Dec 2025 21:51:05 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://shiftmag.dev/wp-content/uploads/2024/08/cropped-ShiftMag-favicon-32x32.png</url>
	<title>Infobip Kuala Lumpur Archives - ShiftMag</title>
	<link>https://shiftmag.dev/tag/infobip-kuala-lumpur/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>MCP Lets AI Actually Do Stuff Safely &#8211; But Only If You Watch It Like a Hawk</title>
		<link>https://shiftmag.dev/mcp-ai-developers-6943/</link>
		
		<dc:creator><![CDATA[Marko Crnjanski]]></dc:creator>
		<pubDate>Fri, 14 Nov 2025 15:36:26 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Alex Shershebnev]]></category>
		<category><![CDATA[Infobip Kuala Lumpur]]></category>
		<category><![CDATA[MCP]]></category>
		<category><![CDATA[Shift Conference]]></category>
		<category><![CDATA[Shift Kuala Lumpur]]></category>
		<guid isPermaLink="false">https://shiftmag.dev/?p=6943</guid>

					<description><![CDATA[<p>As AI moves from generating code to taking real actions, MCP provides a crucial safety net - but only if developers enforce strict controls and monitor every move.</p>
<p>The post <a href="https://shiftmag.dev/mcp-ai-developers-6943/">MCP Lets AI Actually Do Stuff Safely &#8211; But Only If You Watch It Like a Hawk</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Although today’s LLMs are exceptional at recognizing linguistic patterns, they lack <em>grounding</em> in the physical and operational world. An LLM can generate meaningful text, but <strong>it does not truly understand the systems</strong>, <strong>data structures</strong>, or <strong>state behind that text</strong>.</p>



<p class="wp-block-paragraph"><strong>Alex Shershebnev</strong> (Head of ML/DevOps and DevRel, Zencoder) explains that this gap becomes obvious once developers try using AI in real production systems, where even a logical-sounding model output can trigger unexpected and potentially harmful effects if it interacts directly with live infrastructure.</p>



<p class="wp-block-paragraph">He warned that letting an LLM act without limits &#8211; like querying databases or deploying code &#8211; could cause serious damage, from wiping data to pushing faulty code. </p>



<p class="wp-block-paragraph">The key challenge, therefore, is to <strong>bridge this intelligence gap <em>safely</em></strong>.</p>



<h2 class="wp-block-heading">Enter MCP &#8211; a bridge between AI and infrastructure</h2>



<p class="wp-block-paragraph">To address this problem, the industry has turned to the <strong><a href="https://shiftmag.dev/how-infobips-mcp-enables-true-agentic-ai-5220/" target="_blank" rel="noreferrer noopener">Model Context Protocol (MCP)</a></strong>, introduced by Anthropic in late 2024. MCP standardizes how LLMs connect with external tools, APIs, and systems in a secure and transparent manner. The protocol defines two core entities:</p>



<ul class="wp-block-list">
<li><strong>MCP Client</strong> – usually the LLM or AI agent that determines which tools it needs to fulfill a task.</li>



<li><strong>MCP Server</strong> – the component that exposes a curated list of available tools and safely executes operations when requested.</li>
</ul>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">This structure allows LLMs to extend their functionality beyond text generation, performing actions like fetching monitoring data from Grafana, reading error logs from Sentry, or triggering CI/CD pipelines without requiring unrestricted access.</p>
</blockquote>



<p class="wp-block-paragraph">Even major players like OpenAI have adopted MCP, underscoring its growing importance as an interoperability and safety standard.</p>



<h2 class="wp-block-heading"><span id="clear-parameters-drive-accurate-tool-execution">Clear parameters drive accurate tool execution</span></h2>



<p class="wp-block-paragraph">Shershebnev detailed how <strong>MCP servers present resources as</strong> <strong>tools</strong>, each defined by a name, parameters, and a clear description. The MCP client (LLM) can then select and execute the appropriate tool to retrieve or modify data.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">This exchange follows a predictable, auditable flow: upon initialization, the server exposes a list of all available tools, and the LLM requests specific actions based on user input. The server executes the operation, returns the results in a standardized format, and the LLM incorporates them into its response.</p>
</blockquote>



<p class="wp-block-paragraph">Alex emphasized that MCP’s design makes it language-agnostic and easy to integrate. Developers can quickly<strong> connect their existing systems </strong>by importing a lightweight MCP library and defining tool endpoints. This opens a path for automating repetitive DevOps tasks such as branch creation, ticket management, and incident reporting.</p>



<p class="wp-block-paragraph">Through live examples, he showed how MCP agents can automatically handle Jira tickets, open branches, and even query Kubernetes clusters to diagnose pod issues, all without leaving the IDE. However, these same capabilities also amplify the potential for misuse if the setup is not properly secured.</p>



<h2 class="wp-block-heading"><span id="mcp-servers-inherit-all-the-vulnerabilities-of-traditional-servers">MCP servers inherit all the vulnerabilities of traditional servers</span></h2>



<p class="wp-block-paragraph">&#8220;Great power comes with great responsibility,&#8221; Alex noted when addressing MCP’s dual nature. MCP servers, while powerful, inherit all the vulnerabilities of traditional servers: package hijacking, malicious dependencies, open ports, and unpatched libraries. </p>



<p class="wp-block-paragraph">On top of that, they introduce new, <strong>AI-specific risks</strong>.</p>



<p class="wp-block-paragraph">The most prominent among them is <strong>prompt injection,</strong> a scenario in which a malicious payload hidden inside text, code, or a web page manipulates the LLM into performing unintended actions.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="628" src="https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-1024x628.png?x94846" alt="" class="wp-image-6949" srcset="https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-1024x628.png 1024w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-300x184.png 300w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-768x471.png 768w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_.png 1028w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Alex also reminded the audience that the <strong>MCP represents a major leap forward for AI-driven automation</strong>. It allows LLMs to interact meaningfully with the real world, enabling developers to build more context-aware systems.</figcaption></figure>



<p class="wp-block-paragraph">Another class of attacks he called <strong>&#8220;shadow tools”</strong> exploits naming collisions: a malicious tool is registered under the same name as a legitimate one, tricking the LLM into executing unauthorized operations. These vulnerabilities highlight how tightly coupled AI logic and system control have become, and why simple sandboxing or API tokens are no longer enough.</p>



<p class="wp-block-paragraph">Alex also referenced industry data showing that even advanced AI providers detect only a portion of injection-based threats, meaning some attacks still slip through. The takeaway for developers: assume partial protection and plan defense in depth.</p>



<h2 class="wp-block-heading"><span id="deploying-mcp-safely-requires-careful-controls">Deploying MCP safely requires careful controls</span></h2>



<p class="wp-block-paragraph">Alex emphasized that deploying MCP safely requires careful planning and strict boundaries: &#8220;You can&#8217;t treat MCP as just another tool in your stack. Every action an agent takes must be controlled, monitored, and limited to what is strictly necessary.&#8221; </p>



<p class="wp-block-paragraph">According to him, <strong>developers should define precisely which tools are accessible to the LLM</strong>, ensuring that only allowed operations are permitted.</p>



<p class="wp-block-paragraph">Agents should operate with the principle of least privilege, confined to staging or read-only environments rather than production. He also mentioned the importance of input sanitization, explaining: </p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">Never feed raw, unfiltered content directly to the model. Use intermediary layers to clean and summarize information before passing it along. Every MCP call and response should be fully auditable, with detailed logging of tool identifiers, inputs, outputs, and timestamps.</p>
</blockquote>



<p class="wp-block-paragraph">For critical operations, such as deployments or database changes, Alex recommended<strong> incorporating human approval steps</strong> to prevent unintended actions.</p>



<h2 class="wp-block-heading">MCP lets AI act in the real world &#8211; but only under controlled boundaries</h2>



<p class="wp-block-paragraph">Finally, Alex urged teams to <strong>combine traditional DevSecOps measures with MCP-specific precautions</strong>. </p>



<p class="wp-block-paragraph">Dependency scanning, code signing, and supply-chain verification remain essential, and simulation through red-team exercises can reveal vulnerabilities from prompt injections or shadow tools before they reach production. &#8220;These measures are not optional,&#8221; he said, &#8220;they are prerequisites for responsibly integrating AI into DevOps pipelines.&#8221;</p>



<p class="wp-block-paragraph">Alex concluded by reminding the audience that the <strong>MCP represents a major leap forward for AI-driven automation</strong>. It allows LLMs to interact meaningfully with the real world, enabling developers to build faster, smarter, and more context-aware systems. However, without strict governance and defensive design, the same flexibility can easily become a security liability.</p>



<p class="wp-block-paragraph">MCP is not just a technical framework; it’s a blueprint for <em>trust boundaries</em> between human developers, AI agents, and production infrastructure:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">As organizations begin adopting these tools, the line between code generation and code execution will blur, and the teams that succeed will be those who treat AI not as an omnipotent engine, but as a collaborator that must operate within precisely defined limits.</p>
</blockquote>



<p class="wp-block-paragraph"><strong>To see these principles in action, Infobip offers their own <a href="https://github.com/infobip/mcp" target="_blank" rel="noreferrer noopener">MCP servers</a> for its communication APIs and has released an open-sourced <a href="https://github.com/infobip/infobip-openapi-mcp" target="_blank" rel="noreferrer noopener">OpenAPI MCP framework</a> that developers can use to expose any OpenAPI-described service to AI agents securely. </strong></p>


<figure class="wp-block-post-featured-image"><img decoding="async" width="1200" height="630" src="https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_.png?x94846" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="object-fit:cover;" srcset="https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_.png 1200w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_-300x158.png 300w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_-1024x538.png 1024w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_-768x403.png 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></figure>


<p class="wp-block-paragraph"></p>
<p>The post <a href="https://shiftmag.dev/mcp-ai-developers-6943/">MCP Lets AI Actually Do Stuff Safely &#8211; But Only If You Watch It Like a Hawk</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Lessons from Atlassian: AI is Like Your Dog, It Needs a Firm Master</title>
		<link>https://shiftmag.dev/lessons-from-atlassian-ai-is-like-your-dog-it-needs-a-firm-master-6907/</link>
		
		<dc:creator><![CDATA[Nikolina Oršulić]]></dc:creator>
		<pubDate>Wed, 12 Nov 2025 14:37:31 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Atlassian]]></category>
		<category><![CDATA[Infobip Kuala Lumpur]]></category>
		<category><![CDATA[Shift Conference]]></category>
		<category><![CDATA[Shift Kuala Lumpur]]></category>
		<guid isPermaLink="false">https://shiftmag.dev/?p=6907</guid>

					<description><![CDATA[<p>AI will happily dive in and try to do everything you ask - but just like a mischievous dog, it sometimes gets it spectacularly wrong, warned Atlassian’s Dugald Morrow.</p>
<p>The post <a href="https://shiftmag.dev/lessons-from-atlassian-ai-is-like-your-dog-it-needs-a-firm-master-6907/">Lessons from Atlassian: AI is Like Your Dog, It Needs a Firm Master</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></description>
										<content:encoded><![CDATA[<figure class="wp-block-post-featured-image"><img decoding="async" width="2100" height="1400" src="https://shiftmag.dev/wp-content/uploads/2025/11/photo-61-scaled.jpg?x94846" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="object-fit:cover;" srcset="https://shiftmag.dev/wp-content/uploads/2025/11/photo-61-scaled.jpg 2100w, https://shiftmag.dev/wp-content/uploads/2025/11/photo-61-300x200.jpg 300w, https://shiftmag.dev/wp-content/uploads/2025/11/photo-61-1024x683.jpg 1024w, https://shiftmag.dev/wp-content/uploads/2025/11/photo-61-768x512.jpg 768w" sizes="(max-width: 2100px) 100vw, 2100px" /></figure>


<p class="wp-block-paragraph">AI, just like your dog, will eagerly try to please you but its assistance can sometimes be anything but helpful. AI, just like your dog, needs a firm master, warned principal developer advocate at Atlassian <strong>Dugald Morrow</strong>. </p>



<p class="wp-block-paragraph">As one of the first speakers at the <a href="https://shift.infobip.com/asia/" target="_blank" rel="noreferrer noopener">Shift conference in Kuala Lumpur</a>, he delivered a clear message: <strong>use AI wisely, not blindly</strong>. </p>



<h2 class="wp-block-heading"><span id="ai-needs-guidance-and-supervision">AI needs guidance and supervision</span></h2>



<p class="wp-block-paragraph">Morrow illustrated how much AI needs guidance and supervision by dividing AI tasks into three levels. </p>



<ul class="wp-block-list">
<li>On the first level, AI performs well. </li>
</ul>



<p class="wp-block-paragraph">This is when it&#8217;s <strong>dealing with simple, well-defined tasks</strong> such as searching for information or processing raw data. </p>



<ul class="wp-block-list">
<li>On the second level, AI can still perform, but often inconsistently.</li>
</ul>



<p class="wp-block-paragraph">This occurs when tasks grow more complex and require understanding the relationships between pieces of data &#8211; in other words, <strong>when analysis demands some degree of knowledge</strong>.</p>



<ul class="wp-block-list">
<li>On the third and most challenging level, AI fails.</li>
</ul>



<p class="wp-block-paragraph">This stage involves <strong>deep reasoning</strong>, <strong>judgment</strong>, <strong>and the creation of entirely new content</strong> &#8211; and here, the house of cards begins to fall apart. Yet our expectations for its ability to generate content remain enormous.</p>



<h2 class="wp-block-heading"><span id="despite-appearing-capable-ai-lacks-true-wisdom">Despite appearing capable, AI lacks true wisdom</span></h2>



<p class="wp-block-paragraph">Although it appears capable, AI lacks the necessary wisdom, it works well <em>within</em> known data but struggles to go <em>beyond</em> it, Morrow explains. He even offers a diagnosis of AI:&nbsp;</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">AI actually<strong> suffers from the Dunning-Kruger effect</strong>. It&#8217;s always willing to answer a question, but sometimes it&#8217;s not quite capable of doing so. </p>
</blockquote>



<p class="wp-block-paragraph">He even goes a step further comparing AI to a dog:&nbsp;</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">It’s got boundless enthusiasm, gleefully doing whatever you ask, though the results are often questionable or sometimes brilliant. We all know dogs have incredible senses &#8211; some can even sniff out cancer. Yet they can also do very silly things, just like AI can hallucinate or miss obvious facts.</p>
</blockquote>



<h2 class="wp-block-heading"><span id="what%e2%80%99s-the-cost-of-delegating-everything-to-ai%c2%a0">What’s the cost of delegating everything to AI? </span></h2>



<p class="wp-block-paragraph">This comparison works pretty well, although we could just as easily say that <strong>we’re the lazy dogs</strong>, demanding AI to do things instead of us.  </p>



<p class="wp-block-paragraph">Morrow, who has a very interesting CV, having helped build submarine combat systems (for Collins-class submarines) and later an air traffic control system for Canada, in his exposé posed a question we’ve all asked ourselves: <em>What’s the cost of delegating everything to AI?</em>&nbsp;</p>



<p class="wp-block-paragraph">He offered a few answers to that, and they are not flattering.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="683" src="https://shiftmag.dev/wp-content/uploads/2025/11/photo-66-1024x683.jpg?x94846" alt="" class="wp-image-6923" srcset="https://shiftmag.dev/wp-content/uploads/2025/11/photo-66-1024x683.jpg 1024w, https://shiftmag.dev/wp-content/uploads/2025/11/photo-66-300x200.jpg 300w, https://shiftmag.dev/wp-content/uploads/2025/11/photo-66-768x512.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">While using AI in generating content<strong> you don&#8217;t become as familiar with that content</strong> as you would have if you generated the content manually. And you can&#8217;t evaluate if your content is of a high quality or not, he said.&nbsp;</p>



<p class="wp-block-paragraph">He warned the developers in the room that in their code may be hidden bugs or performance issues that they would have thought about if they had created it alone.&nbsp;</p>



<p class="wp-block-paragraph">Also he pointed out that <strong>overuse of AI erodes our skills to create</strong>:&nbsp;</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">We all heard the practice makes perfect. You can&#8217;t learn tennis by just watching it or asking someone else to do it for you.  </p>
</blockquote>



<h2 class="wp-block-heading"><span id="96-of-companies-haven%e2%80%99t-seen-major-ai-gains-yet">96% of companies haven’t seen major AI gains yet</span></h2>



<p class="wp-block-paragraph">It’s tempting to use AI, but it’s really not necessary everywhere. How addicted we’ve become to LLMs and how often they fail to meet our expectations is shown in a recent <a href="https://www.atlassian.com/blog/state-of-teams-2025" target="_blank" rel="noreferrer noopener">Atlassian report</a>.&nbsp;</p>



<p class="wp-block-paragraph">Although 62% of executives say that AI makes them more efficient, 37% say that it has <strong>wasted their teams’ time.</strong> Among the 12,000 people who participated in the research, 42% admitted that they trust AI too much. Perhaps the most striking finding from the report is that<strong> </strong>96% of companies haven’t seen any dramatic improvements from AI yet. </p>



<p class="wp-block-paragraph">Therefore, Morrow proposes a <strong>managed AI approach</strong>, which means using artificial intelligence with the right level of human oversight, depending on the complexity and importance of the task.  </p>



<p class="wp-block-paragraph">As we all know, not every task should be handed over entirely to AI.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph">However, some rudimentary ones, like extending existing code patterns or fixing small bugs can be. In those cases, AI can safely work almost independently, since it’s simply repeating known patterns.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph">He gave example of his own presentation which he made using Atlassian’s cloudapp development platform:&nbsp;</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">The &#8220;spot image&#8221; didn’t display and showed a 404, so I used Robodev. It didn’t create a new image—just found the correct one and updated the code instantly. Since it was a simple, repetitive task, I trusted AI to handle it reliably.</p>
</blockquote>



<h2 class="wp-block-heading"><span id="when-ai-needs-a-firm-master">When AI needs a firm master</span></h2>



<p class="wp-block-paragraph">But if AI has a task to build something entirely new, master has to be there. In this case Morrow advises <strong>breaking the work into smaller parts </strong>or defining a detailed specification before asking AI to generate code. That way, human stay in control of structure and intent. </p>



<p class="wp-block-paragraph">This is even more important when AI is asked to do <strong>complex algorithms</strong>.  </p>



<p class="wp-block-paragraph">Developers should first define and document the algorithm in detail (inputs, outputs, logic) and then let AI complete it, suggests Morrow because that&#8217;s how AI has enough context to succeed. Otherwise, he claims, the good output is highly unlikely.&nbsp;</p>



<p class="wp-block-paragraph">He showed the code for his presentation and explained how he used AI to extract parts of a large SVG file for different slides, providing detailed descriptions and documentation for the extraction algorithm.&nbsp;</p>



<p class="wp-block-paragraph">To conclude, everything he said makes sense. The managed AI approach he advocates is essentially about <strong>balancing automation with human judgment</strong>. Rather than blindly delegating tasks to AI, developers should determine the appropriate level of guidance and oversight for each situation. As Morrow puts it: </p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">AI is like your dog. It’s a wonderful tool, but you need to manage it.</p>
</blockquote>
<p>The post <a href="https://shiftmag.dev/lessons-from-atlassian-ai-is-like-your-dog-it-needs-a-firm-master-6907/">Lessons from Atlassian: AI is Like Your Dog, It Needs a Firm Master</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Shift is Coming to Asia &#8211; and We’re Giving Away 10 Tickets!</title>
		<link>https://shiftmag.dev/shift-is-coming-to-asia-and-were-giving-away-10-tickets-6597/</link>
		
		<dc:creator><![CDATA[ShiftMag]]></dc:creator>
		<pubDate>Fri, 17 Oct 2025 14:43:35 +0000</pubDate>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[AI agents]]></category>
		<category><![CDATA[Infobip Kuala Lumpur]]></category>
		<category><![CDATA[LLM]]></category>
		<category><![CDATA[Shift Conference]]></category>
		<guid isPermaLink="false">https://shiftmag.dev/?p=6597</guid>

					<description><![CDATA[<p>For the first time ever, the Shift Conference is coming to Asia, landing in Kuala Lumpur in November 2025 - with a full focus on Copilots, Agents, and LLMs.</p>
<p>The post <a href="https://shiftmag.dev/shift-is-coming-to-asia-and-were-giving-away-10-tickets-6597/">Shift is Coming to Asia &#8211; and We’re Giving Away 10 Tickets!</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></description>
										<content:encoded><![CDATA[<figure class="wp-block-post-featured-image"><img loading="lazy" decoding="async" width="2047" height="1365" src="https://shiftmag.dev/wp-content/uploads/2025/10/54821194997_fc6a6a90e4_k.jpg?x94846" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="object-fit:cover;" srcset="https://shiftmag.dev/wp-content/uploads/2025/10/54821194997_fc6a6a90e4_k.jpg 2047w, https://shiftmag.dev/wp-content/uploads/2025/10/54821194997_fc6a6a90e4_k-300x200.jpg 300w, https://shiftmag.dev/wp-content/uploads/2025/10/54821194997_fc6a6a90e4_k-1024x683.jpg 1024w, https://shiftmag.dev/wp-content/uploads/2025/10/54821194997_fc6a6a90e4_k-768x512.jpg 768w" sizes="auto, (max-width: 2047px) 100vw, 2047px" /></figure>


<p class="wp-block-paragraph">Infobip Shift, one of Europe’s leading developer conferences, is making its <a href="https://shift.infobip.com/asia/" target="_blank" rel="noreferrer noopener">Asian debut</a> on <strong>November 4th, 2025</strong>! </p>



<p class="wp-block-paragraph">In partnership with Cradle, Malaysia’s startup ecosystem builder, we’re bringing <strong>developers, founders, and innovators</strong> from across ASEAN together in Kuala Lumpur &#8211; building connections, sparking ideas, and shaping the future of software.</p>



<p class="wp-block-paragraph">&#8220;By bringing Shift to Malaysia, we’re giving Southeast Asian developers the chance to learn, connect, and join <strong>the same conversations shaping tech in Europe and the US,</strong>&#8221; says Stipe Cigic, Head of the Infobip Shift team:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">The city has a fast-growing, diverse tech community, full of talent, curiosity, and energy &#8211; but without many events that truly bring developers together in one place. </p>
</blockquote>



<h2 class="wp-block-heading"><span id="everything-is-ai-are-you-ready">Everything is AI. Are you ready?</span></h2>



<p class="wp-block-paragraph">Whether you’re <strong>working with AI at scale or exploring it for the first time</strong>, Shift KL brings together developers, researchers, and founders to share knowledge and insights. </p>



<p class="wp-block-paragraph">From copilots and LLMs to agentic workflows and ethical challenges, AI is reshaping how software is built &#8211; and Shift KL is where you can see it in action and discuss what it means for your work.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="683" src="https://shiftmag.dev/wp-content/uploads/2025/10/54822373215_f7032b5099_k-1024x683.jpg?x94846" alt="" class="wp-image-6611" srcset="https://shiftmag.dev/wp-content/uploads/2025/10/54822373215_f7032b5099_k-1024x683.jpg 1024w, https://shiftmag.dev/wp-content/uploads/2025/10/54822373215_f7032b5099_k-300x200.jpg 300w, https://shiftmag.dev/wp-content/uploads/2025/10/54822373215_f7032b5099_k-768x512.jpg 768w, https://shiftmag.dev/wp-content/uploads/2025/10/54822373215_f7032b5099_k.jpg 2047w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">World-class experts including <strong>Tejas Kumar</strong> (Developer Advocate, IBM), <strong>Dugald Morrow</strong> (Principal Developer Advocate, Atlassian), and <strong>Joyce Lin</strong> (Lead Tech Educator, LMArena) will share their perspectives on the latest AI trends and practical ways to apply them.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">For Shift, it’s also a way of staying true to what we’ve always stood for: connecting developers wherever they are, and building a global community that keeps learning and growing together.</p>



<p class="wp-block-paragraph"></p>
</blockquote>



<p class="wp-block-paragraph">Shift KL will also be <strong>third event on a third continent in the same year</strong>!</p>



<h2 class="wp-block-heading"><span id="get-your-ticket">Get your ticket!</span></h2>



<p class="wp-block-paragraph">Calling all developers, tech aficionados, and industry experts!</p>



<p class="wp-block-paragraph"><strong>The first 10 applicants to complete the form get free tickets, and the next 10 receive a 30% discount for <a href="https://shift.infobip.com/asia/" target="_blank" rel="noreferrer noopener">Shift Kuala Lumpur 2025</a>!</strong></p>



<p class="wp-block-paragraph"></p>



<iframe loading="lazy" class="airtable-embed" src="https://airtable.com/embed/appDKumOxVuEZO1nh/pagyF873fcKGOGrqT/form" frameborder="0" onmousewheel="" width="100%" height="533" style="background: transparent; border: 1px solid #ccc;"></iframe>
<p>The post <a href="https://shiftmag.dev/shift-is-coming-to-asia-and-were-giving-away-10-tickets-6597/">Shift is Coming to Asia &#8211; and We’re Giving Away 10 Tickets!</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: shiftmag.dev @ 2026-06-27 14:34:54 by W3 Total Cache
-->