<?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: SkySilk Cloud</title>
    <description>The latest articles on DEV Community by SkySilk Cloud (@skysilkcloud).</description>
    <link>https://dev.to/skysilkcloud</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%2F558405%2F977fefa1-66e5-439d-9172-3ee58221fa57.png</url>
      <title>DEV Community: SkySilk Cloud</title>
      <link>https://dev.to/skysilkcloud</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/skysilkcloud"/>
    <language>en</language>
    <item>
      <title>How To Use Rsync to Backup Your VPS Files Off-Site</title>
      <dc:creator>SkySilk Cloud</dc:creator>
      <pubDate>Thu, 08 Apr 2021 07:08:43 +0000</pubDate>
      <link>https://dev.to/skysilkcloud/how-to-use-rsync-to-backup-your-vps-files-off-site-6ni</link>
      <guid>https://dev.to/skysilkcloud/how-to-use-rsync-to-backup-your-vps-files-off-site-6ni</guid>
      <description>&lt;p&gt;Sync is a simple yet powerful tool for system administrators. It allows you to easily copy and synchronize files from one server to another or from your local machine to a VPS server (off-site). Rsync is a smart tool that allows you to use a special algorithm so you can synchronize files as they are edited or added. &lt;br&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%2Fuploads%2Farticles%2F1yx04hkgccqsb5avsf7j.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%2Fuploads%2Farticles%2F1yx04hkgccqsb5avsf7j.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There are two ways you can utilize the Rsync command to keep a backup of your production server on a remote backup server.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The sync method&lt;/li&gt;
&lt;li&gt;The snapshot method&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Both methods can be automated using a Cron job. However, you need to first set up the production server to login as a root in the backup server without a passphrase.&lt;/p&gt;

&lt;h2&gt;Prerequisites&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;A server running Ubuntu 18.04 – server A&lt;/li&gt;
&lt;li&gt;A backup server running ubuntu 18.04 – server B&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://www.skysilk.com/cloud/pricing/#classId=Standard&amp;amp;section=2" rel="noopener noreferrer"&gt; Deploy Ubuntu 18.04 &lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;Setting Up the Production Server to Login Into the Backup Server&lt;/h2&gt;

&lt;p&gt;Log in to your production server (server A) as root.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 ssh root@server-A-IP
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Create a keygen on your production server. (Make sure you create a passphraseless key).&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 ssh-keygen -t rsa -b 4096 -v
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Copy the keys in your new backup server so that the production server is able to access the backup server as root.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 ssh-copy-id server-B-IP
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once you run the above command, it will ask you for the root password of your backup server. This is a one-time process. You will type Server B’s root password only once. &lt;/p&gt;

&lt;p&gt;Test the authentication by logging in to a remote server inside the production server’s SSH shell.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 ssh root@server-B-IP
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will be logged in to the backup server as root without needing a password. &lt;/p&gt;

&lt;p&gt;On successful authentication, try a few commands with sudo privileges. Once you’re done testing a few commands, logout from the backup server after creating a directory where you’ll be storing the backup. &lt;/p&gt;

&lt;p&gt;For this tutorial, we will use /root/backup as the backup location. Create this directory with the below command.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 cd /root | mkdir backup


1 exit
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt; The Sync Method &lt;/h2&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%2Fuploads%2Farticles%2Fzxy1d10ug74ebdrkwlq1.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%2Fuploads%2Farticles%2Fzxy1d10ug74ebdrkwlq1.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In this method, the rsync command will first look for changes on the production server. The Rsync will process files that match one of the following conditions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;It is a new file added in the “source”&lt;/li&gt;
&lt;li&gt;The file has recently been edited and does not match the file in the destination folder except the file name.&lt;/li&gt;
&lt;li&gt;The file is removed from the “source”&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So, before running the sync command, create a few files on “source”&lt;br&gt;
Login to your production server as root.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 ssh root@server-A-IP
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Create files named &lt;b&gt;1.html index.html&lt;/b&gt; and &lt;b&gt;hello.html&lt;/b&gt; with the below command.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 cd /var/www/html | touch 1.html index.html hello.html
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To run the active sync once, run the following command on your production server.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 rsync -azvP --delete /var/www/html/ root@serverB-ip:/root/backup/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The command returns a message like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sending incremental file list

./

1.html

              0 100%    0.00kB/s    0:00:00 (xfr#1, to-chk=2/4)

hello.html

              0 100%    0.00kB/s    0:00:00 (xfr#2, to-chk=1/4)

index.html

              0 100%    0.00kB/s    0:00:00 (xfr#3, to-chk=0/4)

sent 222 bytes  received 76 bytes  596.00 bytes/sec

total size is 0  speedup is 0.00
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The next time you run this command again, the response should be something like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sending incremental file list

sent 107 bytes  received 12 bytes  238.00 bytes/sec


total size is 0  speedup is 0.00
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;As you can see, rsync was smart enough to detect that there are no changes in the “source”. That is why, rsync did not transfer any file to the “destination”.&lt;/p&gt;

&lt;p&gt;Test the sync by &lt;b&gt;creating 2.html&lt;/b&gt; and &lt;b&gt;deleting hello.html&lt;/b&gt; followed by the same rsync command.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 cd /var/www/html | touch 2.html | rm -r hello.html


1 rsync -azvP --delete /var/www/html/ root@serverB-ip:/root/backup/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This time, rsync recognized the changes and synchronized the file that was added. Also, rsync deleted hello.html in the “destination” directory as it does not exist in the “source” anymore.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sending incremental file list

deleting hello.html

./

2.html

              0 100%    0.00kB/s    0:00:00 (xfr#1, to-chk=1/4)

sent 150 bytes  received 52 bytes  134.67 bytes/sec

total size is 0  speedup is 0.00
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To facilitate the synchronization, create a bash script so that you don’t have to type the whole command everytime you want to synchronize the files.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 cd /root


1 nano sync.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In the nano editor, paste the following and save.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#!/bin/sh

#Automating the rsync to smart sync html folder to backup server

rsync -azvP –delete /var/www/html/ root@serverB-ip:/root/backup/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Save and exit the file using ctrl+X followed by Y and Enter. &lt;/p&gt;

&lt;p&gt;Now, everytime you want to manually synchronize the files to the backup server, run the following command.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 /root/sync.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;Setting up Cronjob to Activate the Sync&lt;/h2&gt;

&lt;p&gt;Once you’re convinced that the Rsync command works as required, automate it with a new Cronjob.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 crontab -e
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Choose the editor you want to use. Add the following line at the end of this file.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 30 20 * * 1 /root/sync.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The above cron will run every monday at 8:30 PM and sync all the files from source directory on the production server to the destination directory on your backup server. &lt;/p&gt;

&lt;p&gt;Save the file using ctrl+X followed by Y and Enter. &lt;/p&gt;

&lt;h2&gt;The Snapshot Method&lt;/h2&gt;

&lt;p&gt;The sync method is not a scalable and effective method to keep backup of a production site. &lt;/p&gt;

&lt;p&gt;When you delete a file from the source destination, it will be automatically deleted from the destination directory as well when the cron runs. You can not retrieve the deleted file afterwards. &lt;/p&gt;

&lt;p&gt;To tackle this problem, you can create snapshots. You can set it up in the following manner.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Set up the rsync command to synchronize the files every morning at 9:30 AM&lt;/li&gt;
&lt;li&gt;Create a snapshot of the site weekly on every monday at 10:30 AM.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This way, you will retain a copy of the source directory in a separate folder on the backup server. &lt;/p&gt;

&lt;p&gt;Instead of creating a snapshot and further transferring it to the backup server, create a bash script to do everything at once with a single line of code. &lt;/p&gt;

&lt;p&gt;Create a script&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 cd /root


1 nano snapshot.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In the nano editor, paste the below content and change the following values.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;!/bin/sh

# Create a timestamp

date=date "+%Y-%m-%d-t-%H-%M-%S"


# Define the directory to retain on your production server


SOURCE=/var/www/html/

# Specify the destination folder on your backup VPS

DEST=/root/snapshots

# Execute rsync followed by cleanup

rsync -arvt -t \

  –delete \

  –link-dest=../current \

  $SOURCE root@server-B-IP:$DEST/backup-$ddate \

  &amp;amp;&amp;amp; ssh root@server-B-IP \

  “rm -rf $DEST/current \

  &amp;amp;&amp;amp; ln -s $DEST/backup-$date $DEST/current \

  &amp;amp;&amp;amp; find $DEST -maxdepth 1 -type d -mtime +30 -exec rm -r {} +”
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Change &lt;b&gt;server-B-IP&lt;/b&gt; with your backup server’s public IP.  Save the file and exit using ctrl+X followed by Y and Enter.&lt;/p&gt;

&lt;p&gt;Run this script with the following command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 /root/snapshot.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When you run the command, it does the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It creates a snapshot of the “source” directory and further transfers it to the backup server in the specified destination folder&lt;/li&gt;
&lt;li&gt;It creates a soft link “current” in the destination directory to the latest snapshot inside the directory.&lt;/li&gt;
&lt;li&gt;It also checks for snapshots that are older than 30 days and further deletes it to conserve space on your backup server.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Automating the Snapshots and Sync with Cron job&lt;/h2&gt;

&lt;p&gt;To create an efficient backup of your files and sync the current version on the backup server, you can set up 2 cron jobs. &lt;/p&gt;

&lt;p&gt;Edit the crontab&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 crontab -e
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Choose the editor you want to use and add the following line at the end of this file.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# synchronize the files from the production server to the backup server every morning at 9:30 am

30 9 * * * /root/sync.sh



# create a snapshot of the source directory weekly on every Monday

30 10 * * 1 /root/sync.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Save the file and exit using &lt;b&gt;ctrl+X&lt;/b&gt; followed by &lt;b&gt;Y&lt;/b&gt; and &lt;b&gt;Enter&lt;/b&gt;.&lt;/p&gt;

&lt;h2&gt;Conclusion&lt;/h2&gt;

&lt;p&gt;At this stage you have set up a daily off-site active sync along with weekly off-site snapshots.&lt;/p&gt;

&lt;p&gt;You can do much more with Rsync command itself and automate it with bash scripts and cron jobs. &lt;br&gt;
&lt;/p&gt;

</description>
      <category>databackup</category>
      <category>cloudskills</category>
      <category>tutorial</category>
      <category>ubuntu</category>
    </item>
    <item>
      <title>What Professions Will Cloud Computing Make Redundant?</title>
      <dc:creator>SkySilk Cloud</dc:creator>
      <pubDate>Tue, 30 Mar 2021 13:36:22 +0000</pubDate>
      <link>https://dev.to/skysilkcloud/what-professions-will-cloud-computing-make-redundant-nm9</link>
      <guid>https://dev.to/skysilkcloud/what-professions-will-cloud-computing-make-redundant-nm9</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZuVXQhuE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t1gw5kb5xhbby9vq0xw1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZuVXQhuE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t1gw5kb5xhbby9vq0xw1.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
An increasing number of businesses, and the IT sector, are relying on automation for growth. The recurring question becomes, what organizational changes will cloud computing bring? &lt;/p&gt;

&lt;p&gt;Although businesses and institutions desire to embrace cloud computing as a disruptive technology, they don't desire to change their organizational structures. The fact remains that you can’t adopt disruptive technologies without affecting your organizational structure. And the individuals who perform various tasks in your organization.&lt;/p&gt;

&lt;h2&gt; Effects of Disruptive Technology on IT Professions &lt;/h2&gt;

&lt;p&gt;Disruptive technologies influence IT professions in two ways: profession transition and profession loss. Employees dread the two; with the latter dreaded the most. Cloud computing is not a commerce craze anymore. It’s here for the long haul, and it’s changing IT professions.&lt;/p&gt;

&lt;p&gt;A study by the Center for Business and Economic Research at Ball State University found that 85% of jobs lost in the U.S. from 2000 to 2010 were attributed to technological change due to automation.&lt;/p&gt;

&lt;p&gt;It’s predicted in the next 5-10 years that cloud computing will hit IT professions the hardest. Will cloud computing eliminate jobs? No, the embracing of cloud computing will move IT professions instead of eliminating them.&lt;/p&gt;

&lt;p&gt;IT professions will see decreased internal demand. Fresh IT professions will increase with the support of remote cloud networks. The internal IT professions that are anticipated to see reduced demand in the foreseeable future are:&lt;/p&gt;

&lt;p&gt;System Administrators and Database Administrators - Cloud computing remotely streamlines networks. This will create a reduced demand for internal system and database administrators. IT experts with this background will still be needed by cloud providers, as more institutions bank on the cloud for management.&lt;br&gt;
Help Desk Support - Like with preferred management posts, the function of help desk personnel will not be made entirely redundant. It’s presumed that the pair of helpdesk and system support personnel roles will lessen in-house as companies migrate to the cloud. They will evolve within remote service providers.&lt;br&gt;
Infrastructure and Network Professionals - These positions will be absorbed by cloud providers, as there will be an increase in demand for network specialist to maintain cloud networks.&lt;/p&gt;

&lt;h2&gt; The Increase of the Cloud Job Market &lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CrM7ZQa2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dcmmmx97akhluoo6d7lp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CrM7ZQa2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dcmmmx97akhluoo6d7lp.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
With the exponential growth in the cloud computing industry, there will be increased demand for cloud computing specialists. The demand will continue to increase for the foreseeable future. The projection is that 80% of professions predicted to be formed in 2025 don’t even exist.&lt;/p&gt;

&lt;p&gt;As more organizations and businesses spur benefit from container platforms, infrastructure as code solutions, software-defined networking, storage, continuous integration delivery, and AI, the demand for people with skills and profound technical understanding of the cloud will grow. Job market growth for the IT sector will be in cloud services. &lt;/p&gt;

&lt;p&gt;Cloud computing profiles accessible in the current job market are a result of employer demand propelling innovation. This is the principle of providing new business apps and end-user services.&lt;/p&gt;

&lt;h2&gt; Sought-after Cloud Computing Professions &lt;/h2&gt;

&lt;p&gt;Cloud computing’s impact on IT jobs is evident. The high paying cloud computing jobs that have increased in demand are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Project Manager Possessing IT Proficiency - They are required to restate an institution’s cloud computing concepts and their impact on various projects. The average base pay is $88,397 &lt;/li&gt; 
&lt;li&gt; Cloud Architect/Cloud Developer/Cloud System Administrator - They will oversee an institution’s cloud computing blueprint from deployment and management to support of cloud apps. The average base pay is $64,892 &lt;/li&gt; 
&lt;li&gt; Cloud Consultants - They will carry out an institution’s technical analysis and evaluation. They will also give cloud technology recommendations to bolster productivity and capability. The average base pay is $86,619 &lt;/li&gt; 
&lt;li&gt; Business Intelligence Analyst - They will work together with most IT department personnel to boost performance and production. The average base salary is $85,277 &lt;/li&gt; 
&lt;li&gt; Software Developer - They will be tasked with updating, maintaining, and creating software. The average base pay is $76,526. A software engineer intern earns on average $30,000.&lt;/li&gt; 
&lt;/ul&gt;

&lt;p&gt;So if you are asking yourself, is cloud computing a good career for me? Yes, it is lucrative but you’ll have to have passion, dedication, discipline, and the drive to succeed.&lt;/p&gt;

&lt;h2&gt; Closing Remarks… &lt;/h2&gt;

&lt;p&gt;Cloud computing continues to grow at remarkable speed as organizations and businesses continue spending on cloud services like SaaS, PaaS, IaaS, and FaaS. The endorsement of cloud technology platforms gives institutions immeasurable opportunities for innovation.&lt;/p&gt;

&lt;p&gt;However, in order to stay at pace with this innovation, and the rapid batch of services provided by cloud providers, all businesses and organizations will require skilled personnel. They will offer these professionals lucrative and rewarding careers in the cloud computing industry for years to come.&lt;/p&gt;

&lt;p&gt;In-demand professionals will be required year-after-year and the question that will be left unanswered is, will demand outpace the supply of these professionals? Only time will tell.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>cloud</category>
      <category>hybridcloud</category>
      <category>cloudcomputing</category>
    </item>
    <item>
      <title>We’re thrilled to be here with you!</title>
      <dc:creator>SkySilk Cloud</dc:creator>
      <pubDate>Wed, 03 Mar 2021 11:08:50 +0000</pubDate>
      <link>https://dev.to/skysilkcloud/we-re-thrilled-to-be-here-with-you-4da6</link>
      <guid>https://dev.to/skysilkcloud/we-re-thrilled-to-be-here-with-you-4da6</guid>
      <description>&lt;p&gt;Hi everyone! We’re thrilled to be here at Dev.to &lt;/p&gt;

&lt;p&gt;We’re SkySilk, a cloud computing company. We offer simple cloud computing solutions for beginners, aspiring developers, experienced developers, or anyone who’s fascinated with developing. &lt;/p&gt;

&lt;p&gt;Our purpose is to meet the growing public demand for virtualized hardware through cloud utilization. We believe cloud computing is the future. It will continue to grow in every aspect of our day-to-day lives; from communication and interaction with others to learning, shopping, banking, traveling, and more...thus shaping our future.&lt;/p&gt;

&lt;p&gt;That’s why we created a cloud server management service that’s not only secure but cost-effective. Along the way, we’ve managed to stay up-to-date with the latest technology ensuring our customers get the best user experience. We want to become a global leader in Cloud Hosting, Virtualization  Management, and Enterprise-level Data Security.&lt;/p&gt;

&lt;p&gt;Currently, it's becoming a necessity to own a cloud. The conventional IT infrastructure is outpaced and the ability to effectively utilize the cloud is priceless.&lt;/p&gt;

&lt;h2&gt;What We Stand For&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JKvspfw0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rjxgplapex2yu1n63ma4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JKvspfw0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rjxgplapex2yu1n63ma4.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
We want to make deployment as simple as flipping a switch. And we’ve managed to do that as developers or teams can deploy their applications seamlessly. We’ve done this by investing and spending countless hours improving our platform. Though there are still a lot of improvements to be made we’re on the right track.&lt;/p&gt;

&lt;p&gt;Everything we do is aimed at creating a platform for developers and teams to deploy and scale their applications quickly and efficiently. Our joy is having a part to play in your next award-winning project that’s going to change the world.&lt;/p&gt;

&lt;p&gt;This has been our driving force from our inception. In the end, we want everyone to be able to harness the power of the cloud. To some, this might seem too ambitious but we’re driven and motivated to make it happen&lt;/p&gt;

&lt;h2&gt;Why We Do What We Do&lt;/h2&gt;

&lt;p&gt;It’s our obligation to spread cloud computing technology for the greater good of humanity. Your own or your team’s long-awaited project(s) shouldn’t be stored away on a local hard drive because you couldn’t deploy due to lack of funds. We enable you to showcase your creations to the world and bring them to life.&lt;/p&gt;

&lt;p&gt;We pride ourselves on being able to offer enterprise-grade services to those who just dreamed about it. Your success is our success. Our platform is your platform.&lt;/p&gt;

&lt;p&gt;&lt;i&gt;“Cloud is about how you do computing, not where you do computing”&lt;/i&gt; - Paul Maritz, Computer Scientist.&lt;/p&gt;

&lt;h2&gt;How Happy We are to Contribute to this Channel&lt;/h2&gt;

&lt;p&gt;It gives us great pleasure to be able to showcase our expertise and experience in various subjects and hands-on scenarios. We will bring our unique visioning ability to all community members. &lt;/p&gt;

&lt;p&gt;We’re experienced in many areas related to cloud computing, including deployment, monitoring, and management. For example, we’ve helped individuals and businesses alike with premium resources to scale upwards and NEVER downwards. &lt;/p&gt;

&lt;h2&gt;The Sky's the Limit&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--THeVkZKG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/68yjqo00y9ncyoq3jnu3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--THeVkZKG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/68yjqo00y9ncyoq3jnu3.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
We have a strong conviction that there are no limits whatsoever to achieving your ultimate goal. The Sky represents abundance and anyone can own their own cloud. Ours is to give you a robust and secure platform to do your thing. Don’t worry about downtime or DDoS. Just do your magic and deploy seamlessly.&lt;/p&gt;

&lt;p&gt;We’re going to have lots of fun and lots to share that will be meant to give you value and insight into the development world. Also, if you want additional support on any of your projects or just share value that you feel is important, we have an active community that’s willing to listen, learn and also advise you on Discord. Every attendee:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Has a right to be heard by every member &lt;/li&gt;
&lt;li&gt; Is free to propose subjects to cover, ask questions, chip in on every conversation &lt;/li&gt;
&lt;li&gt; Is welcome to invite anyone who wishes to participate &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We ensure:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Every attendee is heard &lt;/li&gt;
&lt;li&gt; There is a friendly, conducive, and productive environment ALWAYS (but we do joke from time-to-time) &lt;/li&gt;
&lt;li&gt; There is an aura of love &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you’ve got any questions, suggestions, remarks, shoot away. We’re honored to be able to assist anyone and also take notes from you. When you’re around, do add us so that we can always learn and share from each other. &lt;/p&gt;

&lt;p&gt;We’ll also be delighted to get back to you on any comments you left down below.&lt;br&gt;
Anyone can own a cloud. If you’ve been taken for granted by people not wanting to listen to what you have to say, you’ve got a chance to own and have your voice here. We want to build one of the most helpful, satisfying, informative, and coolest cloud computing communities around.&lt;/p&gt;

&lt;p&gt;Once again, it’s an honor to be here and we’re confident that you’re going to get the very best from us. We stick by whatever we say and never go back on any of our promises or commitments.&lt;/p&gt;

&lt;p&gt;Do come and sail with us in the cloud.&lt;/p&gt;

</description>
      <category>skysilk</category>
    </item>
  </channel>
</rss>
