<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: biagotaski</title>
    <description>The latest articles on DEV Community by biagotaski (@biagotaski).</description>
    <link>https://dev.to/biagotaski</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F890916%2Fcad7edcb-d9d8-4ba9-b867-d2287e8d878a.jpeg</url>
      <title>DEV Community: biagotaski</title>
      <link>https://dev.to/biagotaski</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/biagotaski"/>
    <language>en</language>
    <item>
      <title>CTO.ai will be at Open Source Summit in Vancouver!</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Tue, 25 Apr 2023 19:13:01 +0000</pubDate>
      <link>https://dev.to/ctoai/ctoai-will-be-at-open-source-summit-in-vancouver-4nkg</link>
      <guid>https://dev.to/ctoai/ctoai-will-be-at-open-source-summit-in-vancouver-4nkg</guid>
      <description>&lt;p&gt;Hi devs!&lt;/p&gt;

&lt;p&gt;We’re excited to announce that we will be at Open Source Summit North America in Vancouver on May 10-12! Visit us at booth G10 to talk about ways to measure &amp;amp; automate your cloud native workflows!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9B9EwcKP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6j7gemq7lymq6h1fejso.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9B9EwcKP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6j7gemq7lymq6h1fejso.jpeg" alt="Flyer containing CTO.ai booth and event information for the Open Source Summit in Vancouver" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See you there!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>devops</category>
    </item>
    <item>
      <title>Imperative vs Declarative Programming in DevOps</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Thu, 13 Apr 2023 22:18:22 +0000</pubDate>
      <link>https://dev.to/ctoai/imperative-vs-declarative-programming-in-devops-2jo6</link>
      <guid>https://dev.to/ctoai/imperative-vs-declarative-programming-in-devops-2jo6</guid>
      <description>&lt;p&gt;Some teams might adopt several tools to automate DevOps with Infrastructure as Code, depending on the team's maturity level, which implies knowledge about declarative and imperative programming. These approaches are easy to find in many IaC tools.&lt;/p&gt;

&lt;p&gt;Still, for an efficient implementation of an IaC in your project, see the difference between these approaches:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Imperative: The code written is very explicit in every single line, which will help the computer understand &lt;strong&gt;how&lt;/strong&gt; the algorithm should be executed. The developer will put on the "machine's hat" and think like a machine to understand how the computer operates so it can understand the given instructions. It's a more detailed programming style, which requires deep knowledge of code skills.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Declarative: For the declarative approach, there's more abstraction when writing the IaC to tell &lt;strong&gt;what&lt;/strong&gt; you want to be executed. It is more focused on the outcome without explicitly defining every step or condition the code will perform in the machine.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As an example of an imperative code, this one below creates explicitly the function that will track the events that will be sent to CTO.ai's Platform in order to measure the deployment metrics with DORA:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;export async function track(
  tags: string[] | string,
  metadata: object,
): Promise&amp;lt;void&amp;gt; {
  try {
    await request.track({
      tags: Array.isArray(tags) ? tags : [tags],
      ...metadata,
    })
  } catch (e) {
    throw new CTOAI_Error(100, 'sdk.track')
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And for the Declarative code type, we can demonstrate it by importing the SDK to declare the event that will be traced.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sdk.track([], {
        event_name: 'deployment',
        event_action: 'failed',
        environment: STACK_ENV,
        repo: STACK_REPO,
        branch: STACK_TAG,
        commit: STACK_TAG,
        image: `${STACK_REPO}:${STACK_TAG}`
      })
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Both approaches may be used when defining the Infrastructure as Code to automate Workflow processes for software deliveries. However, declarative programming is the most common approach used in DevOps tools, such as Terraform and CloudFormation from AWS, because it's more efficient for replicating the code throughout the CI/CD definition.&lt;/p&gt;

&lt;p&gt;With the CTO.ai Developer Control Plane, the way of defining infrastructure is mostly in the declarative approach, although the usage of imperative programming can be applicable in some cases, depending on how are the developer workflows of an organization.&lt;/p&gt;

&lt;p&gt;You can see the &lt;a href="https://github.com/cto-ai/sdk-js"&gt;source code of the SDKs provided by CTO.ai&lt;/a&gt; mentioned in this article, which allow teams to write customizable workflows and enable dev teams to interact with deployment and builds from Slack or GitHub.&lt;/p&gt;

&lt;p&gt;Therefore, you can see some templates of workflows, which &lt;a href="https://github.com/workflows-sh/aws-ecs-fargate"&gt;you can see in this GitHub repository&lt;/a&gt;, in order to measure your deployment performance with DORA metrics by sending deployment data to the Platform.&lt;/p&gt;

&lt;p&gt;I hope this helped you understand Imperative and Declarative concepts and their applicability in DevOps within IaC for Workflows definition.&lt;/p&gt;

&lt;p&gt;See you soon!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>automation</category>
      <category>tooling</category>
      <category>devops</category>
    </item>
    <item>
      <title>[recorded webinar] How to use CTO.ai's open-source SDKs to create customizable Workflows for software delivery</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Thu, 23 Mar 2023 21:09:01 +0000</pubDate>
      <link>https://dev.to/biagotaski/recorded-webinar-how-to-use-ctoais-open-source-sdks-to-create-customizable-workflows-for-software-delivery-3il7</link>
      <guid>https://dev.to/biagotaski/recorded-webinar-how-to-use-ctoais-open-source-sdks-to-create-customizable-workflows-for-software-delivery-3il7</guid>
      <description>&lt;p&gt;Hi devs!&lt;/p&gt;

&lt;p&gt;Thank you for attending the webinar yesterday!&lt;/p&gt;

&lt;p&gt;If you are interested in watching the recording of the webinar, &lt;a href="https://go.cto.ai/3Z4QjSw"&gt;you can see it through this link&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;In fact, you can see the recording for all past webinars at CTO.ai &lt;a href="https://cto.ai/webinars"&gt;by this page in the website&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If there are any questions about the concepts and the Developer Control Plane from this presentation, feel free to reach out to me through &lt;a href="https://www.linkedin.com/in/biancagotaski/"&gt;my LinkedIn&lt;/a&gt; or &lt;a href="//bianca.gotaski@cto.ai"&gt;email&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;See you soon!&lt;/p&gt;

</description>
      <category>webinar</category>
      <category>devops</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Today, let's talk about using SDKs to enhance developer's workflows</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Wed, 22 Mar 2023 16:58:35 +0000</pubDate>
      <link>https://dev.to/ctoai/today-lets-talk-about-using-sdks-to-enhance-developers-workflows-1pff</link>
      <guid>https://dev.to/ctoai/today-lets-talk-about-using-sdks-to-enhance-developers-workflows-1pff</guid>
      <description>&lt;p&gt;Hi devs!&lt;/p&gt;

&lt;p&gt;This afternoon (&lt;strong&gt;4 PM EST&lt;/strong&gt;) I will host another webinar at CTO.ai, and I'll talk about &lt;strong&gt;How to use CTO.ai’s open-source SDKs to create customizable Workflows for software delivery&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Come join me and let's discuss the topics in the agenda:&lt;/p&gt;

&lt;p&gt;✅ What workflows stand for&lt;br&gt;
✅ What are the open-source SDKs available to get started&lt;br&gt;
✅ How to use them (examples of usage in a real-life environment)&lt;br&gt;
✅ How can these SDKs integrate with third-party tools for product delivery?&lt;br&gt;
✅ Using SDKs to calculate DORA metrics in your project&lt;br&gt;
✅ Q&amp;amp;A&lt;/p&gt;

&lt;p&gt;You can still &lt;a href="https://cto-ai.zoom.us/webinar/register/WN_cvrr1hhsSW2eHX4BXtnQtg"&gt;subscribe here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;See you there :D&lt;/p&gt;

</description>
      <category>webinar</category>
      <category>devops</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
    <item>
      <title>See how to customize a developer workflow using SDKs and a Developer Control Plane [upcoming webinar]</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Fri, 17 Mar 2023 20:50:56 +0000</pubDate>
      <link>https://dev.to/ctoai/see-how-to-customize-a-developer-workflow-using-sdks-and-a-developer-control-plane-upcoming-webinar-459d</link>
      <guid>https://dev.to/ctoai/see-how-to-customize-a-developer-workflow-using-sdks-and-a-developer-control-plane-upcoming-webinar-459d</guid>
      <description>&lt;p&gt;Hi devs!&lt;/p&gt;

&lt;p&gt;Next week I'll be hosting a webinar to talk about &lt;strong&gt;How to use CTO.ai’s open-source SDKs to create customizable Workflows for software delivery&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can learn how to create personalized dev's workflow using the SDKs with the Developer Control Plane, which I'm going to show you on the presentation.&lt;/p&gt;

&lt;p&gt;Here's what's in the agenda:&lt;/p&gt;

&lt;p&gt;✅ What workflows stand for&lt;br&gt;
✅ What are the open-source SDKs available to get started&lt;br&gt;
✅ How to use them (examples of usage in a real-life environment)&lt;br&gt;
✅ How can these SDKs integrate with third-party tools for product delivery?&lt;br&gt;
✅ Using SDKs to calculate DORA metrics in your project&lt;br&gt;
✅ Q&amp;amp;A&lt;/p&gt;

&lt;p&gt;Join me at this webinar!&lt;/p&gt;

&lt;p&gt;It's scheduled to happen next week, &lt;strong&gt;March 22nd, at 4 PM EST.&lt;/strong&gt;&lt;br&gt;
You can &lt;a href="https://cto-ai.zoom.us/webinar/register/WN_cvrr1hhsSW2eHX4BXtnQtg"&gt;subscribe using this link&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;See you there! :)&lt;/p&gt;

</description>
      <category>webinar</category>
      <category>productivity</category>
      <category>tooling</category>
      <category>platformengineering</category>
    </item>
    <item>
      <title>Join us for our upcoming webinar!</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Wed, 08 Mar 2023 19:30:48 +0000</pubDate>
      <link>https://dev.to/ctoai/join-us-for-our-upcoming-webinar-76h</link>
      <guid>https://dev.to/ctoai/join-us-for-our-upcoming-webinar-76h</guid>
      <description>&lt;p&gt;Hi, devs!&lt;/p&gt;

&lt;p&gt;First of all, Happy International Women's Day!&lt;/p&gt;

&lt;p&gt;I am here to invite you to join me at the next webinar I'm hosting for CTO.ai, where I'll talk about &lt;strong&gt;How to use CTO.ai’s open-source SDKs to create customizable Workflows for software delivery&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;At this talk, I'll approach some subjects like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Workflows for developers&lt;/li&gt;
&lt;li&gt;Open-source SDKs to build a customizable delivery' platform for developers to use.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here's the agenda:&lt;/p&gt;

&lt;p&gt;✅ What workflows stand for&lt;br&gt;
✅ What are the open-source SDKs available to get started&lt;br&gt;
✅ How to use them (examples of usage in a real-life environment)&lt;br&gt;
✅ How can these SDKs integrate with third-party tools for product delivery?&lt;br&gt;
✅ Using SDKs to calculate DORA metrics in your project&lt;br&gt;
✅ Q&amp;amp;A&lt;/p&gt;

&lt;p&gt;It's a webinar 30 min long, plus a Q&amp;amp;A at the end so we can chat and discuss doubts that might come up along with the presentation.&lt;/p&gt;

&lt;p&gt;You can subscribe through the website: &lt;a href="https://cto.ai/webinars"&gt;https://cto.ai/webinars&lt;/a&gt; or directly through &lt;a href="https://cto-ai.zoom.us/webinar/register/WN_cvrr1hhsSW2eHX4BXtnQtg"&gt;this link&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;See you there! :) &lt;/p&gt;

</description>
      <category>webinar</category>
      <category>tutorial</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
    <item>
      <title>[Hands-On!] Create a customizable developer workflow</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Fri, 20 Jan 2023 23:38:45 +0000</pubDate>
      <link>https://dev.to/ctoai/hands-on-create-a-customizable-developer-workflow-32ai</link>
      <guid>https://dev.to/ctoai/hands-on-create-a-customizable-developer-workflow-32ai</guid>
      <description>&lt;p&gt;Hi devs!&lt;/p&gt;

&lt;p&gt;Happy new year and I hope you all had great holidays!&lt;br&gt;
Let's start the year with a fresh new Hand-On session, where you can learn how to create a customizable developer workflow, using a Developer Control Plane, developed by &lt;a href="https://cto.ai/"&gt;CTO.ai&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Here's the agenda:&lt;/p&gt;

&lt;p&gt;✅ Understand the concepts of Commands, Pipelines, and Services and how does it apply to the Developer Control Plane;&lt;br&gt;
✅ Create workflows from zero to hero&lt;br&gt;
✅ Customize a workflow to deploy from GitHub, Slack, or CLI&lt;br&gt;
✅ Using deployment data to calculate and measure delivery performance&lt;br&gt;
✅ Other case scenarios: rollback of services and secrets + configs management&lt;br&gt;
✅ Open source workflows to get started&lt;/p&gt;

&lt;p&gt;That's a good opportunity to learn about the Platform and how it can benefit your daily work with tools that you already use!&lt;/p&gt;

&lt;p&gt;It's going to be 30 min of Hands-On + QA, on &lt;strong&gt;January 31st at 3:30 PM EST&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can &lt;a href="https://cto-ai.zoom.us/webinar/register/WN_yJ35jr2gSw6N43sTJ1PVig?utm_content=234976388&amp;amp;utm_medium=social&amp;amp;utm_source=linkedin&amp;amp;hss_channel=lcp-18278566"&gt;subscribe here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Join us and I will see you there! :)&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>performance</category>
      <category>productivity</category>
      <category>serverless</category>
    </item>
    <item>
      <title>Webinar coming up!</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Mon, 12 Dec 2022 23:55:38 +0000</pubDate>
      <link>https://dev.to/ctoai/webinar-coming-up-43je</link>
      <guid>https://dev.to/ctoai/webinar-coming-up-43je</guid>
      <description>&lt;p&gt;Hey devs!&lt;/p&gt;

&lt;p&gt;I'm just passing by to invite you all to my very first webinar at &lt;a href="https://cto.ai/"&gt;CTO.ai&lt;/a&gt;, which I'll talk about &lt;strong&gt;How a Composable Developer Platform Simplifies Ops for Devs&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;What's in the agenda:&lt;/p&gt;

&lt;p&gt;✅ DevX&lt;br&gt;
✅ What is a composable Developer Platform?&lt;br&gt;
✅ Use cases for a Developer Control Plane&lt;br&gt;
✅ Workflows and metrics for performance&lt;br&gt;
✅ Infrastructure Architecture analysis&lt;br&gt;
✅ Demo&lt;/p&gt;

&lt;p&gt;It's scheduled for &lt;strong&gt;next Thursday (Dec 15th) at 3 pm EST&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Join me at this webinar! You can &lt;a href="https://cto-ai.zoom.us/webinar/register/WN_ig77SVgzT_ukiiWRi6AWIQ"&gt;subscribe here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;See you there! :)&lt;/p&gt;

</description>
      <category>webinar</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Use these SDKs to improve devs experience on workflows</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Sat, 19 Nov 2022 00:39:20 +0000</pubDate>
      <link>https://dev.to/ctoai/use-these-sdks-to-improve-devs-experience-on-workflows-2oh6</link>
      <guid>https://dev.to/ctoai/use-these-sdks-to-improve-devs-experience-on-workflows-2oh6</guid>
      <description>&lt;p&gt;Hi there!&lt;/p&gt;

&lt;p&gt;Developers experience should be important as any other concept as it promote good experience on tools for developers so their performance and productivity can increase significantly.&lt;/p&gt;

&lt;p&gt;To help companies on that mission, we have four differente SDKs, where each one is for the well-kwnown languages our there, which are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JavaScript&lt;/li&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;Go&lt;/li&gt;
&lt;li&gt;Bash&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So what can you do with these SDKs?&lt;/p&gt;

&lt;p&gt;These SDKs are for those who use YML file for their workflows and want to display more information for developers during build and deploy phases, whether they trigger these workflows from Slack or via terminal.&lt;/p&gt;

&lt;p&gt;Some methods can be used such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;sdk.track() -&amp;gt; to track events&lt;/li&gt;
&lt;li&gt;ux.print() -&amp;gt; if you want to display some message during the workflow execution for developers that are using Slack&lt;/li&gt;
&lt;li&gt;sdk.start() -&amp;gt; initialize a remote workflow available in a current team&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Note that all these SDKs works better when the Developer Control Plane is being used together, so all the information contained in the Control Plane will be presented for developers who are interacting with it.&lt;/p&gt;

&lt;p&gt;You can try out the Developer Control Plane &lt;a href="https://go.cto.ai/3rfqPmV"&gt;for free here&lt;/a&gt;.&lt;br&gt;
And you can reach out to me or our team if you have any questions.&lt;/p&gt;

&lt;p&gt;Happy Friday and happy code!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>[recorded webinar] Improving DevOps team performance using DORA metrics with GitHub</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Mon, 07 Nov 2022 22:48:13 +0000</pubDate>
      <link>https://dev.to/ctoai/recorded-webinar-improving-devops-team-performance-using-dora-metrics-with-github-1ggm</link>
      <guid>https://dev.to/ctoai/recorded-webinar-improving-devops-team-performance-using-dora-metrics-with-github-1ggm</guid>
      <description>&lt;p&gt;Hey devs!&lt;/p&gt;

&lt;p&gt;Last week we opened an webinar about &lt;strong&gt;Improving DevOps team performance using DORA metrics with GitHub&lt;/strong&gt; and if you didn't have a chance to attend you can still watch the recording here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://go.cto.ai/dora-metrics-webinar-recording-nov-3"&gt;https://go.cto.ai/dora-metrics-webinar-recording-nov-3&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Join our slack to post your questions and chat with us!&lt;br&gt;
&lt;a href="https://join.slack.com/t/ops-community/shared_invite/zt-1jc16m4qq-iZyuiKMTjhxmqmPAsE_X2Q"&gt;https://join.slack.com/t/ops-community/shared_invite/zt-1jc16m4qq-iZyuiKMTjhxmqmPAsE_X2Q&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy Monday!&lt;/p&gt;

</description>
      <category>webinar</category>
      <category>devops</category>
      <category>github</category>
    </item>
    <item>
      <title>[Upcoming webinar] Improving DevOps Team Performance using DORA Metrics with GitHub</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Mon, 31 Oct 2022 21:26:47 +0000</pubDate>
      <link>https://dev.to/ctoai/upcoming-webinar-improving-devops-team-performance-using-dora-metrics-with-github-32o5</link>
      <guid>https://dev.to/ctoai/upcoming-webinar-improving-devops-team-performance-using-dora-metrics-with-github-32o5</guid>
      <description>&lt;p&gt;Hey devs!&lt;/p&gt;

&lt;p&gt;DevOps teams knows the importance of implementing metrics and understand the team's performance. If you are seeking to learn how to implement a good strategy in your processes to increase the performance of your team, you cannot miss this webinar!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/in/jom/"&gt;Justin Malcolm&lt;/a&gt; will talk about the usage of DORA metrics along with GitHub to enhance the performance of DevOps teams. Here's the synopsis of this webinar:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The DevOps Research and Assessment (DORA) has been surveying the DevOps industry for several years and, in their annual State of DevOps report, outlined key metrics known as the DORA Metrics. &lt;br&gt;
To effectively assess your organization's software delivery's velocity, quality and reliability, DORA metrics can be the guiding light for teams aiming for high performance.&lt;br&gt;
CTO.ai supports its customers in measuring and collecting DORA metrics using the platform’s Insights dashboard, which allows teams to quickly get started using their current GitHub organization and existing Cloud processes.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In this webinar, we'll review:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What are DORA metrics, and why should you use them&lt;/li&gt;
&lt;li&gt;Benefits of measuring team delivery performance&lt;/li&gt;
&lt;li&gt;Getting started with DORA Metrics on CTO.ai&lt;/li&gt;
&lt;li&gt;Q&amp;amp;A&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The duration is 45 minutes + Q&amp;amp;A, and &lt;strong&gt;it's happening this week (November 3rd) at 3 PM EST.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can &lt;a href="https://cto-ai.zoom.us/webinar/register/WN_xjEWOpwWSmGMCH3UXPt5ww?utm_content=226313806&amp;amp;utm_medium=social&amp;amp;utm_source=linkedin&amp;amp;hss_channel=lcp-18278566"&gt;subscribe here!&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let's meet there :)&lt;/p&gt;

</description>
      <category>webinar</category>
      <category>devops</category>
      <category>performance</category>
      <category>github</category>
    </item>
    <item>
      <title>Build your own Kubernetes infrastructure with just a few minutes</title>
      <dc:creator>biagotaski</dc:creator>
      <pubDate>Fri, 28 Oct 2022 00:10:40 +0000</pubDate>
      <link>https://dev.to/ctoai/build-your-own-kubernetes-infrastructure-with-just-a-few-minutes-4eb1</link>
      <guid>https://dev.to/ctoai/build-your-own-kubernetes-infrastructure-with-just-a-few-minutes-4eb1</guid>
      <description>&lt;p&gt;Hi, devs!&lt;/p&gt;

&lt;p&gt;At CTO.ai, we know that most startups need help to scale faster in operations and software infrastructure to handle multiple requests and keep the application up at a lower cost.&lt;/p&gt;

&lt;p&gt;If your team has decided to go for Kubernetes already, we have an open-source repository you can try to build an infrastructure on your own using DigitalOcean.&lt;/p&gt;

&lt;p&gt;Here are the technologies used on the code that can help you scale quickly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Infra based on Kubernetes&lt;/li&gt;
&lt;li&gt;Container Registry&lt;/li&gt;
&lt;li&gt;Postgres&lt;/li&gt;
&lt;li&gt;Spaces&lt;/li&gt;
&lt;li&gt;Load Balancers SSL (via LetsEncrypt)&lt;/li&gt;
&lt;li&gt;Project Resource Management all build using CDKTF&lt;/li&gt;
&lt;li&gt;Terraform Cloud&lt;/li&gt;
&lt;li&gt;TypeScript&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It also includes integration with CTO.ai's Developer Control Plane, that focus on the developer experience. In that way, you can build infrastructure using tools you are familiar with, such as Slack and CLI.&lt;/p&gt;

&lt;p&gt;With the Developer Control Plane, you can deliver features using these most common tools and preview the application after each deployment. You can test it before going live in a production environment.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/workflows-sh/do-k8s-cdktf"&gt;Click here to go to the GitHub repository&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to collaborate with our open-source code as well! We'll be glad to have your expertise and feedback on the code we've been building &lt;strong&gt;from developers to developers&lt;/strong&gt; :)&lt;/p&gt;

</description>
      <category>typescript</category>
      <category>opensource</category>
      <category>productivity</category>
      <category>kubernetes</category>
    </item>
  </channel>
</rss>
