<?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>Soft Skills Archives - Openturf Technologies</title>
	<atom:link href="https://www.openturf.in/category/daily/soft-skills-daily/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.openturf.in/category/daily/soft-skills-daily/</link>
	<description>Virtual Technology Office</description>
	<lastBuildDate>Mon, 18 Aug 2025 06:58:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.0.12</generator>

<image>
	<url>https://www.openturf.in/wp-content/uploads/2022/03/cropped-favico-32x32.jpg</url>
	<title>Soft Skills Archives - Openturf Technologies</title>
	<link>https://www.openturf.in/category/daily/soft-skills-daily/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Performance Engineering for Cloud Cost Optimization: Tuning for Efficiency, Not Just Speed</title>
		<link>https://www.openturf.in/cloud-cost-optimization-performance-engineering/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Mon, 18 Aug 2025 06:58:43 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[performance engineering]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4741</guid>

					<description><![CDATA[<p>The cloud promised agility and infinite scale, and it delivered. But for many organizations, that promise has come with a hidden tax: a growing, often-uncontrolled mountain of cloud costs. The race to deploy applications has prioritized speed over efficiency, leaving a crucial discipline—performance engineering—on the sidelines. This isn&#8217;t just a financial issue; it&#8217;s a strategic [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/cloud-cost-optimization-performance-engineering/">&lt;strong&gt;Performance Engineering for Cloud Cost Optimization: Tuning for Efficiency, Not Just Speed&lt;/strong&gt;</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>The cloud promised agility and infinite scale, and it delivered. But for many organizations, that promise has come with a hidden tax: a growing, often-uncontrolled mountain of cloud costs. The race to deploy applications has prioritized speed over efficiency, leaving a crucial discipline—performance engineering—on the sidelines. This isn&#8217;t just a financial issue; it&#8217;s a strategic one. It&#8217;s time to shift our focus from merely making things fast to making them both fast and economically sustainable. This is the new frontier of performance engineering.</p>



<figure class="wp-block-image size-full"><img fetchpriority="high" width="1024" height="1024" src="https://www.openturf.in/wp-content/uploads/2025/08/image.png" alt="" class="wp-image-4743" srcset="https://www.openturf.in/wp-content/uploads/2025/08/image.png 1024w, https://www.openturf.in/wp-content/uploads/2025/08/image-300x300.png 300w, https://www.openturf.in/wp-content/uploads/2025/08/image-150x150.png 150w, https://www.openturf.in/wp-content/uploads/2025/08/image-768x768.png 768w, https://www.openturf.in/wp-content/uploads/2025/08/image-230x230.png 230w, https://www.openturf.in/wp-content/uploads/2025/08/image-400x400.png 400w, https://www.openturf.in/wp-content/uploads/2025/08/image-600x600.png 600w, https://www.openturf.in/wp-content/uploads/2025/08/image-640x640.png 640w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h3><strong>The New Reality: The Cost-Performance Matrix</strong></h3>



<p>In the past, the goal was simple: get the fastest response time possible. Now, with the granular pricing models of hyperscalers like AWS, Azure, and Google Cloud, we must consider a new matrix where cost is as important as speed. For example, a fintech startup in 2025 might have a real-time transaction service that handles millions of requests. Using an expensive, high-powered instance might provide sub-millisecond latency, but at an astronomical cost. A smarter approach is to use a less expensive, mid-range instance that still meets the Service Level Agreement (SLA) of 50-millisecond latency. The difference could be hundreds of thousands of dollars a year with no impact on the customer experience. This is the new frontier of performance engineering: finding the optimal balance where performance goals are met without unnecessary expenditure.</p>



<h3><strong>Contemporary illustrations</strong></h3>



<h4>1. The Serverless &#8220;Cold Start&#8221; Conundrum</h4>



<p>A global e-commerce brand, NeoMart, fully migrated its API to a serverless architecture to reduce costs. However, they soon discovered that a new feature—an AI-powered recommendation engine—was suffering from &#8220;cold starts,&#8221; where the first request after a period of inactivity was slow. The solution was not to increase the function&#8217;s memory (a costly choice), but to implement a simple pre-warming function. Every ten minutes, a scheduled task sends a non-intensive request to the function, keeping it active. This simple change eliminated cold starts and saved the company over $500,000 annually by avoiding the over-provisioning of resources.</p>



<h4>2. Optimizing Data Pipelines with Cost-Aware ETL</h4>



<p>A pharmaceutical company, BioGenix, uses a data lake for genomic research, running massive nightly Extract, Transform, Load (ETL) jobs. Their original scripts were designed for speed, indiscriminately processing terabytes of data. After a performance review, their engineering team implemented a cost-aware data pipeline. Instead of processing the entire dataset nightly, the new system identifies only the changed or new data using versioning and metadata. This dramatically reduced the volume of data processed, cutting their data processing costs by 60% and shortening the job runtime from six hours to under two.</p>



<h4>3. Kubernetes Pods and Right-Sizing</h4>



<p>A gaming company&#8217;s microservices were deployed on Kubernetes, but they were running into massive cloud bills. The problem was pod right-sizing. Their original deployment strategy requested more CPU and memory than the applications actually needed, leading to inefficient resource allocation. The team used a custom observability tool that analyzed real-time usage data. By adjusting the pod resource requests to match actual usage patterns, they reduced their cluster size by 30%, resulting in a $1.2 million reduction in their annual cloud spend without any performance degradation.</p>



<p>The discipline of performance engineering has evolved beyond raw speed. It is a strategic function at the intersection of technology and finance, focused on Cloud Cost Optimization. By adopting a mindset of efficiency and leveraging modern tools, companies can build high-performing applications that are also economically sustainable. This approach not only ensures a healthier bottom line but also frees up capital to invest in further innovation and strategic growth.</p>



<p>Is your cloud bill a mystery? It&#8217;s time to stop just monitoring performance and start engineering for efficiency. <a href="https://www.openturf.in/">Contact us </a>today for a cloud cost optimization review and discover how strategic performance tuning can transform your business.</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/cloud-cost-optimization-performance-engineering/">&lt;strong&gt;Performance Engineering for Cloud Cost Optimization: Tuning for Efficiency, Not Just Speed&lt;/strong&gt;</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Excited to share the latest TechPulse episode with Animikh Roy, product architect at Integra Micro Systems and co-founder of Wishtales AI, discussing his fascinating journey from astrophysics to AI-driven fraud detection and tech innovation.</title>
		<link>https://www.openturf.in/excited-to-share-the-latest-techpulse-episode-with-animikh-roy-product-architect-at-integra-micro-systems-and-co-founder-of-wishtales-ai-discussing-his-fascinating-journey-from-astrophysics-to-ai-dr/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 18 Sep 2024 03:50:38 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<category><![CDATA[Scale Adventure Podcast]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4406</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-ai-astrophysics-ugcPost-7241833230352408576-nvmS?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/excited-to-share-the-latest-techpulse-episode-with-animikh-roy-product-architect-at-integra-micro-systems-and-co-founder-of-wishtales-ai-discussing-his-fascinating-journey-from-astrophysics-to-ai-dr/">Excited to share the latest TechPulse episode with Animikh Roy, product architect at Integra Micro Systems and co-founder of Wishtales AI, discussing his fascinating journey from astrophysics to AI-driven fraud detection and tech innovation.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-ai-astrophysics-ugcPost-7241833230352408576-nvmS?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-ai-astrophysics-ugcPost-7241833230352408576-nvmS?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/excited-to-share-the-latest-techpulse-episode-with-animikh-roy-product-architect-at-integra-micro-systems-and-co-founder-of-wishtales-ai-discussing-his-fascinating-journey-from-astrophysics-to-ai-dr/">Excited to share the latest TechPulse episode with Animikh Roy, product architect at Integra Micro Systems and co-founder of Wishtales AI, discussing his fascinating journey from astrophysics to AI-driven fraud detection and tech innovation.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Check out the latest TechPulse episode with Surjeet Thakur, CEO of TrioTree Technologies, as he shares insights from his two-decade journey in healthcare IT and how he&#8217;s localizing technology to transform clinical systems globally!</title>
		<link>https://www.openturf.in/check-out-the-latest-techpulse-episode-with-surjeet-thakur-ceo-of-triotree-technologies-as-he-shares-insights-from-his-two-decade-journey-in-healthcare-it-and-how-hes-localizing-technology-to-tran/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 11 Sep 2024 04:42:34 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<category><![CDATA[Scale Adventure Podcast]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4404</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-innovation-startupjourney-activity-7239308692913799168-zvuW?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/check-out-the-latest-techpulse-episode-with-surjeet-thakur-ceo-of-triotree-technologies-as-he-shares-insights-from-his-two-decade-journey-in-healthcare-it-and-how-hes-localizing-technology-to-tran/">Check out the latest TechPulse episode with Surjeet Thakur, CEO of TrioTree Technologies, as he shares insights from his two-decade journey in healthcare IT and how he&#8217;s localizing technology to transform clinical systems globally!</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-innovation-startupjourney-activity-7239308692913799168-zvuW?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-innovation-startupjourney-activity-7239308692913799168-zvuW?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/check-out-the-latest-techpulse-episode-with-surjeet-thakur-ceo-of-triotree-technologies-as-he-shares-insights-from-his-two-decade-journey-in-healthcare-it-and-how-hes-localizing-technology-to-tran/">Check out the latest TechPulse episode with Surjeet Thakur, CEO of TrioTree Technologies, as he shares insights from his two-decade journey in healthcare IT and how he&#8217;s localizing technology to transform clinical systems globally!</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Exciting times ahead for the tech world—our latest TechPulse podcast dives into how AI tools like ChatGPT and GitHub Copilot are revolutionizing engineering, enhancing productivity, and reshaping work processes, making it a must-listen for anyone wanting to stay ahead in the industry.</title>
		<link>https://www.openturf.in/exciting-times-ahead-for-the-tech-world-our-latest-techpulse-podcast-dives-into-how-ai-tools-like-chatgpt-and-github-copilot-are-revolutionizing-engineering-enhancing-productivity-and-reshap/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Thu, 05 Sep 2024 09:24:58 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<category><![CDATA[Scale Adventure Podcast]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4402</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-ai-techinnovation-ugcPost-7236995580567183361-WzbE?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/exciting-times-ahead-for-the-tech-world-our-latest-techpulse-podcast-dives-into-how-ai-tools-like-chatgpt-and-github-copilot-are-revolutionizing-engineering-enhancing-productivity-and-reshap/">Exciting times ahead for the tech world—our latest TechPulse podcast dives into how AI tools like ChatGPT and GitHub Copilot are revolutionizing engineering, enhancing productivity, and reshaping work processes, making it a must-listen for anyone wanting to stay ahead in the industry.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-ai-techinnovation-ugcPost-7236995580567183361-WzbE?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-ai-techinnovation-ugcPost-7236995580567183361-WzbE?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/exciting-times-ahead-for-the-tech-world-our-latest-techpulse-podcast-dives-into-how-ai-tools-like-chatgpt-and-github-copilot-are-revolutionizing-engineering-enhancing-productivity-and-reshap/">Exciting times ahead for the tech world—our latest TechPulse podcast dives into how AI tools like ChatGPT and GitHub Copilot are revolutionizing engineering, enhancing productivity, and reshaping work processes, making it a must-listen for anyone wanting to stay ahead in the industry.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Tune in to the latest TechPulse episode with Animikh Roy, whose inspiring journey from astrophysics to AI is revolutionizing technology with his groundbreaking work and new ventures.</title>
		<link>https://www.openturf.in/tune-in-to-the-latest-techpulse-episode-with-animikh-roy-whose-inspiring-journey-from-astrophysics-to-ai-is-revolutionizing-technology-with-his-groundbreaking-work-and-new-ventures/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 28 Aug 2024 04:06:40 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<category><![CDATA[Scale Adventure Podcast]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4380</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-ai-activity-7234227084993146880-dtvI?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/tune-in-to-the-latest-techpulse-episode-with-animikh-roy-whose-inspiring-journey-from-astrophysics-to-ai-is-revolutionizing-technology-with-his-groundbreaking-work-and-new-ventures/">Tune in to the latest TechPulse episode with Animikh Roy, whose inspiring journey from astrophysics to AI is revolutionizing technology with his groundbreaking work and new ventures.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-ai-activity-7234227084993146880-dtvI?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-ai-activity-7234227084993146880-dtvI?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/tune-in-to-the-latest-techpulse-episode-with-animikh-roy-whose-inspiring-journey-from-astrophysics-to-ai-is-revolutionizing-technology-with-his-groundbreaking-work-and-new-ventures/">Tune in to the latest TechPulse episode with Animikh Roy, whose inspiring journey from astrophysics to AI is revolutionizing technology with his groundbreaking work and new ventures.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>While managing technical debt is important, peer reviews are our most effective tool for maintaining code quality; in this TechPulse episode, we&#8217;ll emphasize the value of respecting and learning from others’ expertise in reviewing critical modules, highlighting how habitual collaboration leads to exceptional results.</title>
		<link>https://www.openturf.in/while-managing-technical-debt-is-important-peer-reviews-are-our-most-effective-tool-for-maintaining-code-quality-in-this-techpulse-episode-well-emphasize-the-value-of-respecting-and-learning-from/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 21 Aug 2024 11:30:44 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<category><![CDATA[Scale Adventure Podcast]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4378</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-codequality-peerreview-activity-7231691188691492865-OeMX?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/while-managing-technical-debt-is-important-peer-reviews-are-our-most-effective-tool-for-maintaining-code-quality-in-this-techpulse-episode-well-emphasize-the-value-of-respecting-and-learning-from/">While managing technical debt is important, peer reviews are our most effective tool for maintaining code quality; in this TechPulse episode, we&#8217;ll emphasize the value of respecting and learning from others’ expertise in reviewing critical modules, highlighting how habitual collaboration leads to exceptional results.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-codequality-peerreview-activity-7231691188691492865-OeMX?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-codequality-peerreview-activity-7231691188691492865-OeMX?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/while-managing-technical-debt-is-important-peer-reviews-are-our-most-effective-tool-for-maintaining-code-quality-in-this-techpulse-episode-well-emphasize-the-value-of-respecting-and-learning-from/">While managing technical debt is important, peer reviews are our most effective tool for maintaining code quality; in this TechPulse episode, we&#8217;ll emphasize the value of respecting and learning from others’ expertise in reviewing critical modules, highlighting how habitual collaboration leads to exceptional results.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Join us on this TechPulse episode with Manish Joshi as he shares his 20+ years of expertise on choosing between monolith and microservices architectures, including scalability and design insights.</title>
		<link>https://www.openturf.in/join-us-on-this-techpulse-episode-with-manish-joshi-as-he-shares-his-20-years-of-expertise-on-choosing-between-monolith-and-microservices-architectures-including-scalability-and-design-insights/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 14 Aug 2024 10:41:31 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<category><![CDATA[Scale Adventure Podcast]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4376</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-microservices-activity-7229149055212224515-ygUD?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/join-us-on-this-techpulse-episode-with-manish-joshi-as-he-shares-his-20-years-of-expertise-on-choosing-between-monolith-and-microservices-architectures-including-scalability-and-design-insights/">Join us on this TechPulse episode with Manish Joshi as he shares his 20+ years of expertise on choosing between monolith and microservices architectures, including scalability and design insights.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-microservices-activity-7229149055212224515-ygUD?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-microservices-activity-7229149055212224515-ygUD?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/join-us-on-this-techpulse-episode-with-manish-joshi-as-he-shares-his-20-years-of-expertise-on-choosing-between-monolith-and-microservices-architectures-including-scalability-and-design-insights/">Join us on this TechPulse episode with Manish Joshi as he shares his 20+ years of expertise on choosing between monolith and microservices architectures, including scalability and design insights.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Tune in to our latest Tech Pulse episode featuring Mr. Bhagvan Kommadi, CIO of Capri Global Capital Ltd., as he shares his 21-year journey from IIT Madras to shaping IT strategies for Fortune 100 companies, building Centers of Excellence, and driving Gen AI innovation.</title>
		<link>https://www.openturf.in/tune-in-to-our-latest-tech-pulse-episode-featuring-mr-bhagvan-kommadi-cio-of-capri-global-capital-ltd-as-he-shares-his-21-year-journey-from-iit-madras-to-shaping-it-strategies-for-fortune-100-comp/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 07 Aug 2024 04:22:38 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4374</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-techleadership-innovation-activity-7226615098931396608-WX8N?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/tune-in-to-our-latest-tech-pulse-episode-featuring-mr-bhagvan-kommadi-cio-of-capri-global-capital-ltd-as-he-shares-his-21-year-journey-from-iit-madras-to-shaping-it-strategies-for-fortune-100-comp/">Tune in to our latest Tech Pulse episode featuring Mr. Bhagvan Kommadi, CIO of Capri Global Capital Ltd., as he shares his 21-year journey from IIT Madras to shaping IT strategies for Fortune 100 companies, building Centers of Excellence, and driving Gen AI innovation.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-techleadership-innovation-activity-7226615098931396608-WX8N?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-techleadership-innovation-activity-7226615098931396608-WX8N?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/tune-in-to-our-latest-tech-pulse-episode-featuring-mr-bhagvan-kommadi-cio-of-capri-global-capital-ltd-as-he-shares-his-21-year-journey-from-iit-madras-to-shaping-it-strategies-for-fortune-100-comp/">Tune in to our latest Tech Pulse episode featuring Mr. Bhagvan Kommadi, CIO of Capri Global Capital Ltd., as he shares his 21-year journey from IIT Madras to shaping IT strategies for Fortune 100 companies, building Centers of Excellence, and driving Gen AI innovation.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Check out our latest TechPulse episode with Abhishek Jain, who shares his 15 years of tech innovation experience from Amazon to Adda247, offering insights on engineering, product management, and leadership.</title>
		<link>https://www.openturf.in/check-out-our-latest-techpulse-episode-with-abhishek-jain-who-shares-his-15-years-of-tech-innovation-experience-from-amazon-to-adda247-offering-insights-on-engineering-product-management-and-leade/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 31 Jul 2024 04:38:26 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[OpenTurf]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4368</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-techleadership-ugcPost-7224073699811803139-21M2?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/check-out-our-latest-techpulse-episode-with-abhishek-jain-who-shares-his-15-years-of-tech-innovation-experience-from-amazon-to-adda247-offering-insights-on-engineering-product-management-and-leade/">Check out our latest TechPulse episode with Abhishek Jain, who shares his 15 years of tech innovation experience from Amazon to Adda247, offering insights on engineering, product management, and leadership.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-techleadership-ugcPost-7224073699811803139-21M2?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-podcast-techleadership-ugcPost-7224073699811803139-21M2?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/check-out-our-latest-techpulse-episode-with-abhishek-jain-who-shares-his-15-years-of-tech-innovation-experience-from-amazon-to-adda247-offering-insights-on-engineering-product-management-and-leade/">Check out our latest TechPulse episode with Abhishek Jain, who shares his 15 years of tech innovation experience from Amazon to Adda247, offering insights on engineering, product management, and leadership.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Join us on the latest episode of TechPulse for a look at how automation is reshaping creativity in engineering.</title>
		<link>https://www.openturf.in/join-us-on-the-latest-episode-of-techpulse-for-a-look-at-how-automation-is-reshaping-creativity-in-engineering/</link>
		
		<dc:creator><![CDATA[Kaustubh]]></dc:creator>
		<pubDate>Wed, 24 Jul 2024 05:15:39 +0000</pubDate>
				<category><![CDATA[Soft Skills]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[#automation]]></category>
		<category><![CDATA[Thoughtworks]]></category>
		<guid isPermaLink="false">https://www.openturf.in/?p=4366</guid>

					<description><![CDATA[<p>https://www.linkedin.com/posts/zunderlekshmanan_techpulse-automation-podcast-activity-7221544993008574467-Hpx7?utm_source=share&#38;utm_medium=member_desktop</p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/join-us-on-the-latest-episode-of-techpulse-for-a-look-at-how-automation-is-reshaping-creativity-in-engineering/">Join us on the latest episode of TechPulse for a look at how automation is reshaping creativity in engineering.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.linkedin.com/posts/zunderlekshmanan_techpulse-automation-podcast-activity-7221544993008574467-Hpx7?utm_source=share&amp;utm_medium=member_desktop">https://www.linkedin.com/posts/zunderlekshmanan_techpulse-automation-podcast-activity-7221544993008574467-Hpx7?utm_source=share&amp;utm_medium=member_desktop</a></p>
<p>The post <a rel="nofollow" href="https://www.openturf.in/join-us-on-the-latest-episode-of-techpulse-for-a-look-at-how-automation-is-reshaping-creativity-in-engineering/">Join us on the latest episode of TechPulse for a look at how automation is reshaping creativity in engineering.</a> appeared first on <a rel="nofollow" href="https://www.openturf.in">Openturf Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
