<?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: Sanga</title>
    <description>The latest articles on DEV Community by Sanga (@sanga).</description>
    <link>https://dev.to/sanga</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%2Forganization%2Fprofile_image%2F3447%2F1b88d2bc-1e47-4bc6-a252-2f8f3ea54cd2.png</url>
      <title>DEV Community: Sanga</title>
      <link>https://dev.to/sanga</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sanga"/>
    <language>en</language>
    <item>
      <title>Kotlin Emojis Riddle 😈</title>
      <dc:creator>liskov</dc:creator>
      <pubDate>Thu, 25 Mar 2021 16:36:26 +0000</pubDate>
      <link>https://dev.to/sanga/kotlin-emojis-riddle-11k8</link>
      <guid>https://dev.to/sanga/kotlin-emojis-riddle-11k8</guid>
      <description>&lt;p&gt;What's wrong with this Kotlin code?&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;val emojis = listOf(“❤️️“, “🍔”)
val emojiIndex = someNullableInt ?: 0 % (emojis.size - 1)
val selectedEmoji = emojis[emojiIndex]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Faex5d135usno79fs2znz.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Faex5d135usno79fs2znz.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Let's decompile it to java code:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;List emojis = CollectionsKt.listOf(new String[]{“❤️️“, “🍔”})
int emojiIndex = someNullableInt != null ? someNullableInt : 0 % (this.emojis.size() - 1);
String selectedEmoji = (String)this.emojis.get(emojiIndex);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Can you see the problem now?&lt;/p&gt;

&lt;p&gt;the answer is below, don't look straight away :)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fruqlql1k3w469iej053o.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fruqlql1k3w469iej053o.gif" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Answer:
&lt;/h2&gt;

&lt;p&gt;In case someNullableInt is not null, emojiIndex will be assigned with the original value of someNullableInt and not its modulo.&lt;br&gt;
This can cause indexOutOfBoundException.&lt;/p&gt;
&lt;h2&gt;
  
  
  how can we fix it?
&lt;/h2&gt;

&lt;p&gt;the answer is below, don't look straight away :)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fruqlql1k3w469iej053o.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fruqlql1k3w469iej053o.gif" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To fix it we need to add () around someNullableInt ?: 0 -&amp;gt;&lt;br&gt;
&lt;br&gt;
 &lt;code&gt;val emojiIndex = (someNullableInt ?: 0) % (emojis.size - 1)&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Which will compile to the following java code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;List emojis = CollectionsKt.listOf(new String[]{“❤️️“, “🍔”})
int emojiIndex = (someNullableInt != null ? someNullableInt : 0) % (this.emojis.size() - 1);
String selectedEmoji = (String)this.emojis.get(emojiIndex);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;as you can see, now it will do modulo as expected. Case solved.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you for reading, look for our next Byte
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Made with ❤️ by &lt;a href="https://www.sanga.app" rel="noopener noreferrer"&gt;Sanga&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>kotlin</category>
      <category>riddle</category>
      <category>bug</category>
      <category>sanga</category>
    </item>
    <item>
      <title>Controlling the beast</title>
      <dc:creator>Matan Lachmish</dc:creator>
      <pubDate>Wed, 03 Mar 2021 16:15:49 +0000</pubDate>
      <link>https://dev.to/sanga/controlling-the-beast-17ff</link>
      <guid>https://dev.to/sanga/controlling-the-beast-17ff</guid>
      <description>&lt;p&gt;We have all seen these happen too many times:&lt;br&gt;&lt;br&gt;
Every big project starts as a small one.&lt;br&gt;
and a small project does not need a lot of stuff, right?  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It doesn't need &lt;strong&gt;TESTING&lt;/strong&gt; 🙈&lt;/li&gt;
&lt;li&gt;It doesn't need &lt;strong&gt;SECURITY&lt;/strong&gt; 🙉&lt;/li&gt;
&lt;li&gt;It doesn't need &lt;strong&gt;CI/CD&lt;/strong&gt; 🙊&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/3o85xDWOG8Sbl9yQzm/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/3o85xDWOG8Sbl9yQzm/giphy.gif" alt="Alt text of image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Well, if you plan for this project to stay grounded and never make the leap to become a production product then you are probably right 🐒&lt;/p&gt;

&lt;p&gt;This Byte is about another item that is usually left out until the project is too big and desperately needs it - &lt;strong&gt;CONTROLLING&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Controlling
&lt;/h2&gt;

&lt;p&gt;Every system needs a way to control its production product, for instance:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User's data&lt;/li&gt;
&lt;li&gt;Content served by your app&lt;/li&gt;
&lt;li&gt;Feature flags&lt;/li&gt;
&lt;li&gt;Many more...&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The greedy way
&lt;/h2&gt;

&lt;p&gt;"For now, let's just create admin APIs"&lt;br&gt;&lt;br&gt;
Well, you do have a way to control but in the cost of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Constant manual dev effort (the worst kind of dev effort 😉)&lt;/li&gt;
&lt;li&gt;Inconsistent way of use, the risk of breaking something up is always high&lt;/li&gt;
&lt;li&gt;Obscurity of implementation, APIs that are not consumed by any client can break/change without anyone knowing.&lt;/li&gt;
&lt;li&gt;Centralized knowledge of how to control your system&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The better way
&lt;/h2&gt;

&lt;p&gt;Some call it "Admin Panel", others "Back office", I've heard "Dashboard" and "Console".&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In Sanga we call it Control™&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;An easy-to-use app that provides a safe and consistent way of using those notorious "Admin APIs".&lt;/p&gt;

&lt;h2&gt;
  
  
  Controlling the beast at Sanga
&lt;/h2&gt;

&lt;p&gt;As soon as we felt that those admin APIs are being used more than "just a couple of times" we've built our Control™ using Vue.js.  &lt;/p&gt;

&lt;p&gt;As straightforward as it may sound, our "definition of done" for a feature includes the ability to manage the feature through Control™.&lt;br&gt;&lt;br&gt;
That means that for every feature we:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Think what are the possible ways to control this feature&lt;/li&gt;
&lt;li&gt;Design the relevant admin APIs&lt;/li&gt;
&lt;li&gt;Enhance Control™ with the ability to interact with these APIs&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Fun fact
&lt;/h2&gt;

&lt;p&gt;Once you have such a capability, new features are being designed with control in place. That leads to some super cool capabilities that otherwise would probably be developed as stiff client-side logic that would be re-written endlessly.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you for reading, look for our next Byte
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Made with ❤️ by &lt;a href="https://www.sanga.app"&gt;Sanga&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>software</category>
      <category>admin</category>
      <category>sanga</category>
      <category>bestpractice</category>
    </item>
    <item>
      <title>Cross platform object oriented design 💣💥💥</title>
      <dc:creator>liskov</dc:creator>
      <pubDate>Wed, 10 Feb 2021 08:38:42 +0000</pubDate>
      <link>https://dev.to/sanga/cross-platform-object-oriented-design-211l</link>
      <guid>https://dev.to/sanga/cross-platform-object-oriented-design-211l</guid>
      <description>&lt;p&gt;Confused about too many names for the same property? &lt;/p&gt;

&lt;p&gt;Tired of remembering all names other teams gave to the same feature?&lt;/p&gt;

&lt;h2&gt;
  
  
  Lisko, please give an example:
&lt;/h2&gt;

&lt;p&gt;A good example from the industry is "String template":&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;iOS developers call it "String interpolation"&lt;/li&gt;
&lt;li&gt;Kotlin developers call it "String template"&lt;/li&gt;
&lt;li&gt;Javascript developers call it "Template literals".&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But it is the same thing, like this giraffe. The only thing that changes is your point of view.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F5a2k8777wrg6hxtljj4b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F5a2k8777wrg6hxtljj4b.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Shared architecture - same name on every stack
&lt;/h2&gt;

&lt;p&gt;We at Sanga first encounter this issue with our IOS &amp;lt;-&amp;gt; backend&lt;br&gt;
architectures and communications between them. When we saw it work &lt;br&gt;
perfectly and without any misunderstanding we applied it to other sides &lt;br&gt;
of our dev stack such as our frontend sphere, and it fitted like a glove. &lt;/p&gt;

&lt;p&gt;The universal design language we created:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Contracts - The objects that pass between our stack parts&lt;/li&gt;
&lt;li&gt;View Layer - Controllers, the topmost layer that creates an interface to be consumed (can be UI in an iOS app or REST API in a µservice)&lt;/li&gt;
&lt;li&gt;Service - Business logic layer&lt;/li&gt;
&lt;li&gt;Repository - Responsible for CRUD operations on our model.&lt;/li&gt;
&lt;li&gt;Factory - Responsible for Converting Contracts to Models and vice versa.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fi8vqmfrqtnxuydjo8e5j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fi8vqmfrqtnxuydjo8e5j.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F9ifxjkh3amvv27umqcpd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F9ifxjkh3amvv27umqcpd.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Shared code
&lt;/h2&gt;

&lt;p&gt;Shared architecture makes it possible to have a shared code.&lt;/p&gt;

&lt;p&gt;We are currently on our journey to find the right way to share code between the different stack layers - but I wouldn't conclude it yet - as we didn't solve this question yet. when we do it will be one hell of a byte!&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you for reading, look for our next Byte
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Made with ❤️ by &lt;a href="https://www.sanga.app" rel="noopener noreferrer"&gt;Sanga&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Monorepo</title>
      <dc:creator>liskov</dc:creator>
      <pubDate>Wed, 20 Jan 2021 14:43:57 +0000</pubDate>
      <link>https://dev.to/sanga/monorepo-f4c</link>
      <guid>https://dev.to/sanga/monorepo-f4c</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vVPxvKu0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3p5x5lwsk9h75bxf8xwi.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vVPxvKu0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3p5x5lwsk9h75bxf8xwi.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  what?
&lt;/h2&gt;

&lt;p&gt;Monorepo is when putting code of several micro-projects in one code repository.  &lt;/p&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/l2JeiCp90TpSSUOU8/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/l2JeiCp90TpSSUOU8/giphy.gif" alt="Alt text of image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  So it's kind of a Monolith?
&lt;/h2&gt;

&lt;p&gt;Well, that's the missing part of the micro-service architecture.&lt;/p&gt;

&lt;p&gt;Splitting our code into micro-projects, each with its own tests, deployment, scaling, etc., introduces a new challenge of maintaining and using many microcode repositories.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Monorepo will hold the collection of micro-project while sharing the echo system of testing, deploying, etc.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  when?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;When your team needs to run fast -&amp;gt; faster -&amp;gt; fastest.&lt;/li&gt;
&lt;li&gt;When there are too many repositories and no one understands what/where they are and if their dependency versions are aligned.&lt;/li&gt;
&lt;li&gt;When small library change follows with 30 PR's on 30 git repositories (was the story of my life).&lt;/li&gt;
&lt;li&gt;When there are a small number of teams working together because when there are a greater number 
of teams working on the same git repository, it can do worse than better.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When -&amp;gt; &lt;code&gt;now()&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Things to consider while working with a mono repo:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Per micro project build&amp;amp;deploy:

&lt;ul&gt;
&lt;li&gt;use &lt;code&gt;git diff&lt;/code&gt; to find out what directory changed&lt;/li&gt;
&lt;li&gt;build&amp;amp;deploy only this part&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Code owners:

&lt;ul&gt;
&lt;li&gt;what team is responsible for what part of the code?&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Generate micro project script:

&lt;ul&gt;
&lt;li&gt;Creating new microservice should be done in seconds(take a look at &lt;a href="https://yeoman.io"&gt;https://yeoman.io&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Each new microservice should be built automatically by the same standard as all other services&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Contract lib:

&lt;ul&gt;
&lt;li&gt;All services contracts speak in the same language: Rest/Grpc/etc...&lt;/li&gt;
&lt;li&gt;All services use the same libraries with no duplicate code.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Listen to our CTO, Matan Lachmish, talks about Monorepos on &lt;a href="https://open.spotify.com/episode/4xw3LQiPIr9bs0rCms0Rhm?si=WEZgvNGXR3C7ODlgNfWhgQ"&gt;Developing Symptoms podcast&lt;/a&gt; (for Hebrew speakers)
&lt;/h4&gt;

&lt;h3&gt;
  
  
  Thank you for reading, look for our next Byte
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Made with ❤️ by &lt;a href="https://www.sanga.app"&gt;Sanga&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>monorepo</category>
      <category>sanga</category>
      <category>git</category>
    </item>
    <item>
      <title>Architecture - The Pancake Theory</title>
      <dc:creator>waffleman</dc:creator>
      <pubDate>Wed, 20 Jan 2021 12:35:41 +0000</pubDate>
      <link>https://dev.to/sanga/architecture-the-pancake-theory-o6g</link>
      <guid>https://dev.to/sanga/architecture-the-pancake-theory-o6g</guid>
      <description>&lt;p&gt;It's very easy to get technical when discussing architecture,&lt;br&gt;&lt;br&gt;
But I believe that's not how you suppose to play that game at all.&lt;/p&gt;

&lt;p&gt;The most important thing when building a layered system is to have a clear vision that is agreeable by all team members.&lt;br&gt;&lt;br&gt;
A clear vision helps us stay consistent in the way we think and approach those layers.&lt;/p&gt;

&lt;h2&gt;
  
  
  Pancakes
&lt;/h2&gt;

&lt;p&gt;As a B2C SaaS company we decided to break down our architecture layers the following way:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GmkG1e5j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/55la33i58np0hysqf667.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GmkG1e5j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/55la33i58np0hysqf667.png" alt="Sanga Layered System diagram"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As we see it, each layer is defined by its core purpose and expose an interface to be consumed by the layer above it.  &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;e.g The services layer holds Sanga microservices and expose resources that are being consumed by the client layer via restful api.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Maple &amp;amp; Butter.
&lt;/h2&gt;

&lt;p&gt;@#$% yeah, lets put some maple &amp;amp; butter on those pancakes 😉&lt;/p&gt;

&lt;p&gt;Similar to how restful api acts as the tunnel that the services layer expose to the client layer above it (no news here 🤷‍♂️),&lt;br&gt;&lt;br&gt;
The infrastructure layer does the same by exposing the resources it creates to be consumed by the services layer via kubernetes (e.g Database, S3 Bucket).&lt;br&gt;&lt;br&gt;
That means that when a service is being deployed,&lt;br&gt;&lt;br&gt;
it looks for the resources it needs in Kubernetes secrets (big news here 🤯).&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you for reading, look for our next Byte
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Made with ❤️ by &lt;a href="https://www.sanga.app"&gt;Sanga&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>infrastructure</category>
      <category>software</category>
      <category>pancakes</category>
    </item>
    <item>
      <title>Welcome to Sanga Bytes</title>
      <dc:creator>Matan Lachmish</dc:creator>
      <pubDate>Wed, 20 Jan 2021 12:09:18 +0000</pubDate>
      <link>https://dev.to/sanga/welcome-to-sanga-bytes-2el0</link>
      <guid>https://dev.to/sanga/welcome-to-sanga-bytes-2el0</guid>
      <description>&lt;p&gt;This is exciting...&lt;br&gt;&lt;br&gt;
Every big journey start with one small step,&lt;br&gt;&lt;br&gt;
and this is the very first (and very small) step of &lt;a href="https://www.sanga.app"&gt;Sanga&lt;/a&gt;'s &lt;a href="https://www.dev.to/sanga"&gt;tech blog&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Let us introduce you to our Byte size concept.
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/McgWV3RzDQZZNdFWRA/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/McgWV3RzDQZZNdFWRA/giphy.gif" alt="Alt text of image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The theme of our company's tech blog is to share with the dev community the concepts we came to refine during our journey of developing Sanga.&lt;/p&gt;

&lt;p&gt;We aim to share ideas and ignite a thought process.&lt;br&gt;&lt;br&gt;
You will not find tutorials, or a very detailed step by step posts on how to write your first microservice or how to use Combine with Swift UI.&lt;/p&gt;

&lt;p&gt;Instead, you will find a very concise concept written in a Byte size format.&lt;br&gt;&lt;br&gt;
Meaning, &lt;strong&gt;no more than a couple of paragraphs and an image&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;We hope that this format will increase the relevancy of each post to all sort of backgrounds and stacks.&lt;br&gt;&lt;br&gt;
And we are positive that reading a Byte size post is easier than a Gigabyte one.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you for reading, look for our next Byte
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Made with ❤️ by &lt;a href="https://www.sanga.app"&gt;Sanga&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>firstpost</category>
      <category>sanga</category>
    </item>
  </channel>
</rss>
