<?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: Roman Voinitchi</title>
    <description>The latest articles on DEV Community by Roman Voinitchi (@bacist_dev).</description>
    <link>https://dev.to/bacist_dev</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%2F3808349%2F1e9a8699-8c72-4ddd-998a-ba058f92cdfd.jpg</url>
      <title>DEV Community: Roman Voinitchi</title>
      <link>https://dev.to/bacist_dev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bacist_dev"/>
    <language>en</language>
    <item>
      <title>Design decisions behind my “Irregular German Verbs” iOS app</title>
      <dc:creator>Roman Voinitchi</dc:creator>
      <pubDate>Thu, 21 May 2026 12:47:43 +0000</pubDate>
      <link>https://dev.to/bacist_dev/design-decisions-behind-my-irregular-german-verbs-ios-app-3585</link>
      <guid>https://dev.to/bacist_dev/design-decisions-behind-my-irregular-german-verbs-ios-app-3585</guid>
      <description>&lt;p&gt;A pet project is, first of all, a way to learn something new in your own field. I have a 9–5 job, but I almost always work on some side projects as well. The difference is that until now I had never actually brought one to the App Store like my current app — Irregular German Verbs. Why did I finish this one? And why exactly this topic?&lt;/p&gt;

&lt;p&gt;Thanks to my wife — a university German language teacher with 25 years of experience. She clearly understood which topic should become a standalone app and how exactly it should be presented. The app is based on my wife’s educational ideas, and the app itself clearly states whose educational methodology it is based on.&lt;/p&gt;

&lt;p&gt;You can find the full list of product decisions on the &lt;a href="https://bacist.com/german-irregular-verbs-app/" rel="noopener noreferrer"&gt;product page&lt;/a&gt;. In this article, I want to explain why these particular decisions were made.&lt;/p&gt;

&lt;h2&gt;
  
  
  One problem, One tool
&lt;/h2&gt;

&lt;p&gt;Irregular German Verbs is a very narrow topic. The app contains only 191 verbs that simply have to be memorised. At first glance, it may seem more logical to build something larger and more universal. We discussed that option as well. But when I suggested making something bigger, I received a categorical “no”. And the reasons were purely educational:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;this topic should not be mixed with any other;&lt;/li&gt;
&lt;li&gt;Irregular German Verbs is difficult because these verbs simply need to be memorised — there are no rules here;&lt;/li&gt;
&lt;li&gt;a proper memorisation system is required, a simple table is not enough.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is exactly the approach I started development with.&lt;/p&gt;

&lt;h2&gt;
  
  
  No ads, No tracking, No subscriptions
&lt;/h2&gt;

&lt;p&gt;Learning requires concentration. Ads and tracking create unnecessary distraction and stress. As a developer, I tried to argue for ads a little. But my wife, as a teacher, responded with a very clear “no”. When she teaches students, distractions are not acceptable.&lt;/p&gt;

&lt;p&gt;And when it comes to subscriptions, I personally dislike them as well and try to avoid them whenever possible. If translated into the educational process, this app should feel more like buying a book: you pay once and continue using it peacefully afterwards. Which feels honest and familiar for students.&lt;/p&gt;

&lt;h2&gt;
  
  
  Free A1-A2
&lt;/h2&gt;

&lt;p&gt;The app includes a decision that is not very obvious and definitely not very profitable for a developer — A1-A2 levels are completely free. And that is basically one third of all verbs in the app. But this decision also comes from educational principles. Everyone learns differently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;some people prefer video;&lt;/li&gt;
&lt;li&gt;some prefer audio;&lt;/li&gt;
&lt;li&gt;some prefer books.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A student should be able to calmly try the material and understand whether this format works for them.&lt;/p&gt;

&lt;p&gt;A1-A2 levels are designed specifically for beginners learning German. If a student decides to continue further, unlocking all verbs requires a one-time $2.99 purchase, which is a very reasonable price for educational material of this level.&lt;/p&gt;

&lt;p&gt;After the purchase, all learning levels and extended testing options become available.&lt;/p&gt;

&lt;h2&gt;
  
  
  No aggressive gamification
&lt;/h2&gt;

&lt;p&gt;I am a native iOS developer, but my background is strongly connected to games. Naturally, I know Game Center very well, and almost immediately I suggested adding gamification features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;achievements;&lt;/li&gt;
&lt;li&gt;visit streaks;&lt;/li&gt;
&lt;li&gt;different progress rewards.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At one point I even suggested implementing streaks without Game Center.&lt;/p&gt;

&lt;p&gt;But none of these ideas passed the teacher’s approval. All of this distracts from a difficult topic and serious educational material. That is why the app only includes progress tracking — simply as statistics for the student. Nothing more.&lt;/p&gt;

&lt;h2&gt;
  
  
  Code and architectural decisions
&lt;/h2&gt;

&lt;p&gt;For me, a pet project is also a great opportunity to learn something new, build a clean architecture, and experiment with code. At the same time, I have a regular 9–5 job, so I can dedicate maybe a couple of hours per day to the project, and not even every day. Sometimes the main job simply wins.&lt;/p&gt;

&lt;p&gt;Taking all of this into account, the project took 2 years to develop. For an app like this, that is still quite a long time. But as a developer, I am happy with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the architecture;&lt;/li&gt;
&lt;li&gt;the code;&lt;/li&gt;
&lt;li&gt;and the knowledge I gained during development.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What’s next
&lt;/h2&gt;

&lt;p&gt;During development, we barely looked at competitors. This is a specific educational system created by a specific teacher — Ecaterina Niculchea. So for us, it was not that important what other apps were doing. After releasing the app, we finally decided to take a closer look at competitors — and honestly, we were very happy with our own solution.&lt;/p&gt;

&lt;p&gt;In any case, what I released was an MVP. Even before release, I already had a long list of ideas: interface improvements, new settings, testing improvements, and overall UX polishing. All of these are new and interesting product decisions for the future development of the app.&lt;/p&gt;

&lt;p&gt;I also noticed some interesting ideas in competitor apps — and that is completely normal. So the next step is gradual improvement and polishing the product as much as possible. After that, I will probably try submitting it for an App Store feature. I hope the product will be strong enough for that by then.&lt;/p&gt;

&lt;p&gt;One of the strategic product design decisions was the desire to gradually polish the app and bring the project to the best possible state. This is exactly what I am working on now, and almost every new update brings new product decisions.&lt;/p&gt;

&lt;p&gt;What about you? What difficult product or architectural decisions did you make in your own pet projects?&lt;/p&gt;

</description>
      <category>ios</category>
      <category>showdev</category>
      <category>startup</category>
      <category>discuss</category>
    </item>
    <item>
      <title>My anti-burnout system as an indie developer</title>
      <dc:creator>Roman Voinitchi</dc:creator>
      <pubDate>Thu, 14 May 2026 13:50:32 +0000</pubDate>
      <link>https://dev.to/bacist_dev/my-anti-burnout-system-as-an-indie-developer-5f9j</link>
      <guid>https://dev.to/bacist_dev/my-anti-burnout-system-as-an-indie-developer-5f9j</guid>
      <description>&lt;h2&gt;
  
  
  Work is not everything
&lt;/h2&gt;

&lt;p&gt;I am an iOS developer. I work full-time on a game project, eight hours a day. My experience and qualifications allow me to feel calm. But programming is more than just work for me.&lt;/p&gt;

&lt;p&gt;It is important for me to constantly update my knowledge and follow how software development evolves. As a result, about three more hours of learning are added to my main job every day. This can be reading documentation, building pet projects, or exploring new directions. The form may change, but the essence is the same — all of this requires time, energy, and focus.&lt;/p&gt;

&lt;p&gt;All these complex tasks and advanced topics take up 11 hours every day. That is a lot. And without a clear schedule, this kind of routine can easily lead to burnout.&lt;/p&gt;

&lt;h2&gt;
  
  
  Anti-burnout is not a one-time action
&lt;/h2&gt;

&lt;p&gt;When I was younger, things were simpler. While studying for my master’s degree, working at the same time, and learning new things at night, occasional days off really helped. Youth allows you to ignore fatigue more easily.&lt;/p&gt;

&lt;p&gt;Over time, both my approach to work and the work itself have changed. The depth of learning became different. If earlier I was learning how to write variables, now I study algorithms, data structures, and architecture. Work tasks also became more complex — more fundamental problems that require up-to-date knowledge and constant attention.&lt;/p&gt;

&lt;p&gt;And all of this still happens within the same 11 hours every day. In this situation, a random day off no longer solves the problem. A system is needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  My anti-burnout plan
&lt;/h2&gt;

&lt;p&gt;Over time, I developed a clear structure that helps me stay productive without constant pressure and exhaustion:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Daily level&lt;/strong&gt; — no more than 11 hours of programming per day. After that, only family and activities I enjoy.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Weekly level&lt;/strong&gt; — 5 working days and 2 days off. No programming on weekends.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Half-year level&lt;/strong&gt; — two weeks of vacation every six months. No work and no staying connected.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is important to note that I work remotely. This schedule is designed for remote work and may differ from an office routine.&lt;/p&gt;

&lt;h2&gt;
  
  
  Daily level: what a normal day looks like
&lt;/h2&gt;

&lt;p&gt;For a remote worker, it is important to start the day with work. Breaks and other activities come later. This kind of start already gives several hours of productive work.&lt;/p&gt;

&lt;p&gt;During the day, pauses appear naturally. Between main work and learning, a proper reset is required — without it, new information is simply not absorbed. Learning itself, whether it is pet projects or something else, usually goes without breaks. It is my hobby and something I genuinely enjoy.&lt;/p&gt;

&lt;p&gt;As for activities during the day, the key point is that they should be personal — something that truly helps you rest. I have two such activities.&lt;/p&gt;

&lt;h2&gt;
  
  
  Activity #1. baCist — bass guitar from a programmer
&lt;/h2&gt;

&lt;p&gt;I cannot imagine my life without music. I have been playing bass guitar for a long time. This activity truly calms me down, helps me recover, and gives me energy.&lt;/p&gt;

&lt;p&gt;During the workday, these are short 5–10 minute breaks just to groove. After all the work and learning, I usually spend about an hour playing calmly and learning something new.&lt;/p&gt;

&lt;h2&gt;
  
  
  Activity #2. Daily physical activity
&lt;/h2&gt;

&lt;p&gt;For me, this is a simple walk close to a workout: 5–6 kilometers at a fast pace, with a heart rate above 100. This is a daily practice, including weekends. On weekends, I just walk longer and more calmly.&lt;/p&gt;

&lt;p&gt;The most important thing is not to stop and to take care of yourself every day. The type of activity can be different for everyone, but the fact that a programmer needs regular physical activity is obvious to me.&lt;/p&gt;

&lt;h2&gt;
  
  
  Two days off in a row is mandatory
&lt;/h2&gt;

&lt;p&gt;Even with a good daily schedule, the last working day of the week still feels heavy. That is why two days off in a row are essential for me. During this time, I completely exclude programming. Usually, this includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;calm walks&lt;/li&gt;
&lt;li&gt;bass guitar&lt;/li&gt;
&lt;li&gt;cooking&lt;/li&gt;
&lt;li&gt;football&lt;/li&gt;
&lt;li&gt;sleep&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is enough to start a new week with a sense of freshness, not resistance.&lt;/p&gt;

&lt;h2&gt;
  
  
  Two weeks of vacation without work or connection
&lt;/h2&gt;

&lt;p&gt;Just like the end of the workweek, the last month before a vacation feels especially heavy. This is where the need for a two-week break appears — a break with no mentions of programming at all.&lt;/p&gt;

&lt;p&gt;Even though my work is something I love, it is important for me to fully disconnect from development at least twice a year. Changing the environment and traveling helps the most.&lt;/p&gt;

&lt;p&gt;This is also where the travel direction of this website comes from. I have accumulated many places and travel stories that I genuinely want to share.&lt;/p&gt;

&lt;h2&gt;
  
  
  Anti-burnout is not procrastination
&lt;/h2&gt;

&lt;p&gt;An anti-burnout plan is not laziness and not an attempt to avoid work. It is a way to preserve energy for long-term, stable work on something you truly enjoy.&lt;/p&gt;

&lt;p&gt;Everyone can have their own approach, their own intervals, and their own forms of rest. But one thing is clear: such a strategy is necessary. And it is essential if you want to stay productive seriously and for a long time.&lt;/p&gt;

&lt;p&gt;I am also curious — do you have any habits, activities, or systems that help you avoid burnout?&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>burnout</category>
      <category>career</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
