<?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: Andrew W Mandillah</title>
    <description>The latest articles on DEV Community by Andrew W Mandillah (@fleekvinah).</description>
    <link>https://dev.to/fleekvinah</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%2F795023%2F1400927d-7a46-4462-b0ae-fd7b5f31a72d.png</url>
      <title>DEV Community: Andrew W Mandillah</title>
      <link>https://dev.to/fleekvinah</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fleekvinah"/>
    <language>en</language>
    <item>
      <title>Transfer files from Mobile to PC for free using FTP.( Without USB )</title>
      <dc:creator>Andrew W Mandillah</dc:creator>
      <pubDate>Sun, 27 Aug 2023 13:11:43 +0000</pubDate>
      <link>https://dev.to/fleekvinah/transfer-files-from-mobile-to-pc-for-free-using-ftp-without-usb--27i8</link>
      <guid>https://dev.to/fleekvinah/transfer-files-from-mobile-to-pc-for-free-using-ftp-without-usb--27i8</guid>
      <description>&lt;p&gt;You're at home or at the office and you quickly need to transfer or access files on your Mobile device from your PC. &lt;br&gt;
No USB cable ? Fine . I know its 2023 , but ftp is still here to save the day !&lt;/p&gt;

&lt;p&gt;1.&lt;strong&gt;Install an FTP Server App:&lt;/strong&gt;&lt;br&gt;
On your mobile device, use file Manager with support for FTP sharing eg. CX File Explorer or install an FTP server app from your app store, e.g."AndFTP" for Android or "FTPManager" for iOS.&lt;/p&gt;

&lt;p&gt;2.&lt;strong&gt;Connect to the Same Wi-Fi Network:&lt;/strong&gt;&lt;br&gt;
Ensure that both your mobile device and PC are connected to the same Wi-Fi network. This step is essential for devices to communicate with each other.&lt;/p&gt;

&lt;p&gt;3.&lt;strong&gt;Launch FTP Server App:&lt;/strong&gt;&lt;br&gt;
Open the FTP server app on your mobile device. Configure the app settings, including the username, password, and the folder you want to share.&lt;/p&gt;

&lt;p&gt;4.&lt;strong&gt;Start FTP Server:&lt;/strong&gt;&lt;br&gt;
Start the FTP server within the mobile app. It will provide you with an FTP address (usually an IP address and port number).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--0T2Sfuyq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hcjuxpt5bppks1pbg0zv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--0T2Sfuyq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hcjuxpt5bppks1pbg0zv.png" alt="Phone Screenshot FTP" width="720" height="968"&gt;&lt;/a&gt;&lt;br&gt;
5.&lt;strong&gt;Use FTP Client on PC:&lt;/strong&gt;&lt;br&gt;
On your PC,use the default File Manager as FTP Client or built-in command-line FTP tool or  download and install an FTP client software like "FileZilla". Open the FTP client and enter the FTP address provided by the mobile app (Step 4).&lt;/p&gt;

&lt;p&gt;6.&lt;strong&gt;Connect and Transfer Files:&lt;/strong&gt;&lt;br&gt;
In the FTP client, enter the username and password you set in the mobile app (Step 3). Connect to the FTP server. You'll see your mobile device's shared folder. From here, you can drag and drop files between your PC and mobile device.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--efo3EtU6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4cvw9h46jw8t64eqyz3k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--efo3EtU6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4cvw9h46jw8t64eqyz3k.png" alt="PC Screenshot FTP" width="696" height="193"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>linux</category>
      <category>android</category>
      <category>ios</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Solving Merge Conflicts in Git | Conflicts between two branches on the same file [ Command Line ]</title>
      <dc:creator>Andrew W Mandillah</dc:creator>
      <pubDate>Fri, 25 Aug 2023 13:00:15 +0000</pubDate>
      <link>https://dev.to/fleekvinah/solving-merge-conflicts-in-git-conflicts-between-two-branches-on-the-same-file-command-line--3b8f</link>
      <guid>https://dev.to/fleekvinah/solving-merge-conflicts-in-git-conflicts-between-two-branches-on-the-same-file-command-line--3b8f</guid>
      <description>&lt;p&gt;While &lt;strong&gt;collaborating on github&lt;/strong&gt; , and you update the same file at the same time , you have  &lt;strong&gt;conflicts&lt;/strong&gt; between two branches on the same file upon merge!&lt;br&gt;
Let's take a scenario , where you have &lt;code&gt;main&lt;/code&gt; branch and &lt;code&gt;updated_branch&lt;/code&gt; and the &lt;code&gt;updated_branch&lt;/code&gt; has remote changes on the same file as your local &lt;code&gt;main&lt;/code&gt; branch.&lt;br&gt;
&lt;strong&gt;TLDR&lt;/strong&gt;;&lt;br&gt;
&lt;code&gt;git merge updated_branch&lt;/code&gt; throws an error  &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--0YTzbHvS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5gcelad6s5as6o0ulsem.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--0YTzbHvS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5gcelad6s5as6o0ulsem.png" alt="merge Error Image" width="535" height="62"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's easy . Let's solve it :&lt;br&gt;
&lt;strong&gt;1. Checkout the main branch&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;git checkout main&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;2. Merge specific files from the updated_branch  :&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;git checkout other_branch_name -- path/to/file&lt;/code&gt;&lt;br&gt;
&lt;em&gt;Replace other_branch_name with the actual name of the other branch and path/to/file with the path to the file you want to update.&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;3.Commit the Changes:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;git commit -m "Update file from updated_branch_name"&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;4.Push Changes (If Necessary):&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;git push origin master&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Finally&lt;/strong&gt; , try the initial merge operation. &lt;br&gt;
&lt;code&gt;git merge updated_branch&lt;/code&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Voila&lt;/strong&gt; ! Everything should be fine now !!&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>webdev</category>
      <category>react</category>
    </item>
  </channel>
</rss>
