<?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: SonicResume Group</title>
    <description>The latest articles on DEV Community by SonicResume Group (@srgroup).</description>
    <link>https://dev.to/srgroup</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4093651%2Fdecc3312-777d-46b7-b35a-0b1dbe45f331.png</url>
      <title>DEV Community: SonicResume Group</title>
      <link>https://dev.to/srgroup</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/srgroup"/>
    <language>en</language>
    <item>
      <title>Tech Tip of the Day: Back Up Before You Customize</title>
      <dc:creator>SonicResume Group</dc:creator>
      <pubDate>Tue, 01 Sep 2026 08:41:47 +0000</pubDate>
      <link>https://dev.to/srgroup/tech-tip-of-the-day-back-up-before-you-customize-3d97</link>
      <guid>https://dev.to/srgroup/tech-tip-of-the-day-back-up-before-you-customize-3d97</guid>
      <description>&lt;p&gt;One of the easiest mistakes to make when working with Linux servers, Docker, or self-hosted applications is changing something that already works — without creating a backup first.&lt;/p&gt;

&lt;p&gt;It sounds obvious, but it saves a lot of headaches.&lt;/p&gt;

&lt;h2&gt;
  
  
  My simple rule
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;If it works, back it up.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Before modifying configuration files, application code, Docker settings, or production services, create a backup.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cp&lt;/span&gt; &lt;span class="nt"&gt;-a&lt;/span&gt; /mnt/d/mailtrain /mnt/d/mailtrain-backup-&lt;span class="si"&gt;$(&lt;/span&gt;&lt;span class="nb"&gt;date&lt;/span&gt; +%Y%m%d-%H%M&lt;span class="si"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now you have a point-in-time copy you can return to if something goes sideways.&lt;/p&gt;

&lt;p&gt;Even better: use Git&lt;/p&gt;

&lt;p&gt;For code and configuration that you expect to customize regularly, Git is even better.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git status
git add &lt;span class="nb"&gt;.&lt;/span&gt;
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"Backup before customization"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then you can see what changed:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git diff
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And, when appropriate, roll back to a previous version.&lt;/p&gt;

&lt;p&gt;Why this matters&lt;/p&gt;

&lt;p&gt;When you're working with Dockerized applications, a small configuration change can sometimes affect several services.&lt;/p&gt;

&lt;p&gt;A five-second backup can save an hour of troubleshooting.&lt;/p&gt;

&lt;p&gt;And if you're building a setup that you plan to reproduce for multiple clients, backups become even more valuable. You want a &lt;strong&gt;repeatable installation&lt;/strong&gt;, not a server that only works because nobody remembers exactly what was changed. 😄&lt;/p&gt;

&lt;p&gt;The takeaway&lt;/p&gt;

&lt;p&gt;Backup first. Customize second.&lt;/p&gt;

&lt;p&gt;Future you will be glad you did.&lt;/p&gt;

&lt;h1&gt;
  
  
  devtips #docker #linux #webdev #sysadmin #selfhosted #programming
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Welcome to SonicResume</title>
      <dc:creator>SonicResume Group</dc:creator>
      <pubDate>Fri, 28 Aug 2026 12:29:58 +0000</pubDate>
      <link>https://dev.to/srgroup/welcome-to-sonicresume-4k9a</link>
      <guid>https://dev.to/srgroup/welcome-to-sonicresume-4k9a</guid>
      <description>&lt;p&gt;And before you ask — no, SonicResume is &lt;strong&gt;not just a resume builder.&lt;/strong&gt; Don’t let the name fool you.&lt;/p&gt;

&lt;p&gt;I’m building a platform designed to bring &lt;strong&gt;technology, AI, apps, and professional services together in one place — with the goal of saving people time and money.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There’s already a lot happening behind the scenes:&lt;/p&gt;

&lt;p&gt;AI tools and workflows&lt;br&gt;
⚖️ Legal chat and document analysis&lt;br&gt;
📄 Document creation, processing, and signing&lt;br&gt;
💼 Career and employment tools&lt;br&gt;
📅 Scheduling and appointments&lt;br&gt;
🎥 Video meetings&lt;br&gt;
👥 Contact and communication tools&lt;br&gt;
📱 Social media applications&lt;br&gt;
🌐 Web-based UI and dashboards&lt;br&gt;
🔌 AI provider and API integrations&lt;br&gt;
Custom applications and connected services&lt;/p&gt;

&lt;p&gt;And that’s only part of it.&lt;/p&gt;

&lt;p&gt;What makes SonicResume different is that I’m not simply putting a collection of apps together. &lt;strong&gt;I’m building the technology and providing the services that go with it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The idea is simple:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Less time searching for different tools.&lt;br&gt;
Less money paying for unnecessary subscriptions.&lt;br&gt;
Less jumping between platforms.&lt;br&gt;
More getting things done.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I’m going to use this community to share what I’m building, the technology behind it, the problems I run into, and the solutions I come up with.&lt;/p&gt;

&lt;p&gt;This is just the beginning.&lt;/p&gt;

&lt;p&gt;SonicResume is the name. The platform is much bigger. &lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://www.sonicresume.com/" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fsonicresume.com%2Flogo.png" height="512" class="m-0" width="512"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://www.sonicresume.com/" rel="noopener noreferrer" class="c-link"&gt;
            SonicResume Group | Enterprise Software Ecosystem
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            Enterprise automation and AI software ecosystem.
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.sonicresume.com%2Ffavicon.png" width="512" height="512"&gt;
          sonicresume.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
  </channel>
</rss>
