• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
  • Home
  • Create a VM ($25 Credit)
  • Buy a Domain
  • 1 Month free Back Blaze Backup
  • Other Deals
    • Domain Email
    • Nixstats Server Monitoring
    • ewww.io Auto WordPress Image Resizing and Acceleration
  • About
  • Links

IoT, Code, Security, Server Stuff etc

Views are my own and not my employer's.

Personal Development Blog...

Coding for fun since 1996, Learn by doing and sharing.

Buy a domain name, then create your own server (get $25 free credit)

View all of my posts.

  • Cloud
    • I moved my domain to UpCloud (on the other side of the world) from Vultr (Sydney) and could not be happier with the performance.
    • How to buy a new domain and SSL cert from NameCheap, a Server from Digital Ocean and configure it.
    • Setting up a Vultr VM and configuring it
    • All Cloud Articles
  • Dev
    • I moved my domain to UpCloud (on the other side of the world) from Vultr (Sydney) and could not be happier with the performance.
    • How to setup pooled MySQL connections in Node JS that don’t disconnect
    • NodeJS code to handle App logins via API (using MySQL connection pools (1000 connections) and query parameters)
    • Infographic: So you have an idea for an app
    • All Development Articles
  • MySQL
    • Using the free Adminer GUI for MySQL on your website
    • All MySQL Articles
  • Perf
    • PHP 7 code to send object oriented sanitised input data via bound parameters to a MYSQL database
    • I moved my domain to UpCloud (on the other side of the world) from Vultr (Sydney) and could not be happier with the performance.
    • Measuring VM performance (CPU, Disk, Latency, Concurrent Users etc) on Ubuntu and comparing Vultr, Digital Ocean and UpCloud – Part 1 of 4
    • Speeding up WordPress with the ewww.io ExactDN CDN and Image Compression Plugin
    • Setting up a website to use Cloudflare on a VM hosted on Vultr and Namecheap
    • All Performance Articles
  • Sec
    • Using the Qualys FreeScan Scanner to test your website for online vulnerabilities
    • Using OWASP ZAP GUI to scan your Applications for security issues
    • Setting up the Debian Kali Linux distro to perform penetration testing of your systems
    • Enabling TLS 1.3 SSL on a NGINX Website (Ubuntu 16.04 server) that is using Cloudflare
    • PHP implementation to check a password exposure level with Troy Hunt’s pwnedpasswords API
    • Setting strong SSL cryptographic protocols and ciphers on Ubuntu and NGINX
    • Securing Google G Suite email by setting up SPF, DKIM and DMARC with Cloudflare
    • All Security Articles
  • Server
    • I moved my domain to UpCloud (on the other side of the world) from Vultr (Sydney) and could not be happier with the performance.
    • All Server Articles
  • Ubuntu
    • I moved my domain to UpCloud (on the other side of the world) from Vultr (Sydney) and could not be happier with the performance.
    • Useful Linux Terminal Commands
    • All Ubuntu Articles
  • VM
    • I moved my domain to UpCloud (on the other side of the world) from Vultr (Sydney) and could not be happier with the performance.
    • All VM Articles
  • WordPress
    • Speeding up WordPress with the ewww.io ExactDN CDN and Image Compression Plugin
    • Installing and managing WordPress with WP-CLI from the command line on Ubuntu
    • How to backup WordPress on a host that has CPanel
    • Moving WordPress to a new self managed server away from CPanel
    • Moving a CPanel domain with email to a self managed VPS and Gmail
    • All WordPress Articles
  • All

Twitter

DIY Scheduling automatic tweets with WordPress links and hashtags

September 18, 2017 by Simon

I have recently blogged about moving WordPress away from a CPanel managed domain to a self-managed Ubuntu server. I wanted a faster server with a free encrypted SSL certificate, no usage capacity limits (that I had on CPanel host) on server capacity and improve SEO. This guide aims to automate tweets with links to existing blog posts based on recent twitter command line research. I plan on using the Ubuntu crontab to schedule bash scripts to automate sending tweets. I plan on automating tweets with this GitHub repo: https://github.com/sferik/t every 6 hours.

Source posts for automation

I have the Yoast SEO plugin installed in WordPress and it automatically creates a Pages and Posts sitemaps when new content is posted in WordPress. I used to choose Pages and Posts for publishing WordPress content but recently switched to using Posts only.

Here are my websites sitemaps XML files.

My Sitemap XML’s

  • Posts: https://fearby.com/post-sitemap.xml
  • Pages: https://fearby.com/page-sitemap.xml

Sitemaps

I plan on automating tweets from random pages in https://fearby.com/post-sitemap.xml

More on setting up the Twitter command line utility here.

Test tweeting from a bash file

FYI: real twitter accounts have been renamed below in all output below to @twitteraccount01 and @twitteraccount02

I created a bash file to handle the logic for automation

cd /scripts/
sudo nano tweetrandomblogarticle.sh

I tested the bash files ability to send a tweet

#!/bin/bash

/user/.rbenv/shims/t update "Test tweet from the command line :)"

I made the file executable

chmod +x /scripts/tweetrandomblogarticle.sh

I tested the script

sudo bash /scripts/tweetrandomblogarticle.sh 
Tweet posted by @#############.

Run `t delete status ###############` to delete.

The bash script sent a text message 🙂

Test Tweet

Now it is time to authorize a second twitter account with the t utility (see this guide for help creating a Twitter app and linking it to t).

Summary:

  • Goto https://apps.twitter.com/ and log in with the right Twitter account.
  • Create a new app.
  • I had to link my twitter account to a mobile number before I could create the app.
  • Set twitter app permissions: Read, Write and Access direct messages.

I ran these commands to Authorize a second twitter account in t

t authorize
It looks like you've already registered an application with Twitter.
To authorize a new account, just follow the steps below:
  1. Sign in to the Twitter Developer site.
  2. Select the application for which you'd like to authorize an account.
  3. Copy and paste the consumer key and secret below when prompted.

Press [Enter] to open the Twitter Developer site. 

Open: https://apps.twitter.com
Enter your API key: ###########################
Enter your API secret: ######################################################
In a moment, you will be directed to the Twitter app authorization page.
Perform the following steps to complete the authorization process:
  1. Sign in to Twitter.
  2. Press "Authorize app".
  3. Copy and paste the supplied PIN below when prompted.

Press [Enter] to open the Twitter app authorization page. 

Open: https://api.twitter.com/oauth/authorize?oauth_callback=oob&oauth_consumer_key=##################&oauth_nonce=########################################&oauth_signature=##################################&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1505645819&oauth_token=_####################Ew&oauth_version=1.0
Enter the supplied PIN: ######
Authorization successful.

I can now see I have two Twitter accounts added to t

t accounts
twitteraccountname01
  #########################
twitteraccountname02
  ######################### (active)

Now let’s see if we can tweet to the new twitter account (while keeping the old account linked): https://www.twitter.com/FearbySoftware

I edited the bash script to have a different message to tweet.

#!/bin/bash

/user/.rbenv/shims/t update "Test tweet from the command line (blog post soon at www.fearby.com)."

Success

Test Tweet

https://github.com/sferik/t suggests I can set the active Twitter account by entering the following command before tweeting

t set active sferik UDfNTpOz5ZDG4a6w7dIWj

You can find linked twitter account usernames and id’s by running

 t accounts

I have updated the /scripts/tweetrandomblogarticle.sh  file to switch active accounts before tweeting

#!/bin/bash

/user/.rbenv/shims/t set active twitteraccount01 #
/user/.rbenv/shims/t update "Another test tweet from the command line from @twitteraccount01"

/user/.rbenv/shims/t set active twitteraccount02 ######################### 
/user/.rbenv/shims/t update "Anothe test tweet from the command line from @twitteraccount02 (blog post soon at www.fearby.com)."

I ran the bash file to test sending multiple tweets from different accounts

sudo bash /scripts/tweetrandomblogarticle.sh 
Active account has been updated to twitteraccount01.
Tweet posted by @twitteraccount01.

Run `t delete status ###############` to delete.
Active account has been updated to twitteraccount02.
Tweet posted by @twitteraccount02.

Run `t delete status ###############` to delete.

Success

Processing the sitemaps file

At this point, I realized I have setup t on a different server than the server with sitemaps.xml. This is not a problem, I can easily download the sitemaps file onto this server with curl and process the XML with bash before tweeting.

Downloading the XML file

cd /scripts/
rm -R /scripts/tmp.xml
curl -o /scripts/tmp.xml https://fearby.com/post-sitemap.xml
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  121k    0  121k    0     0  87270      0 --:--:--  0:00:01 --:--:-- 87267

Now what does the XML Sitemaps file look like (Important for processing)

sudo cat /scripts/tmp.xml

XML Sitemap Contents:

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//fearby.com/main-sitemap.xsl"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<url>
		<loc>https://fearby.com/latest-articles/</loc>
	</url>
	<url>
		<loc>https://fearby.com/article/alibaba-cloud-how-good-is-it/</loc>
		<lastmod>2017-08-02T08:38:01+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba_featured.png</image:loc>
			<image:title><![CDATA[alibaba_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba001.jpg</image:loc>
			<image:caption><![CDATA[alibaba001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba002.jpg</image:loc>
			<image:caption><![CDATA[alibaba002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba003.jpg</image:loc>
			<image:caption><![CDATA[alibaba003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba004.jpg</image:loc>
			<image:caption><![CDATA[alibaba004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba005.jpg</image:loc>
			<image:caption><![CDATA[alibaba005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba006.jpg</image:loc>
			<image:caption><![CDATA[alibaba006]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba007.jpg</image:loc>
			<image:caption><![CDATA[alibaba007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba008.jpg</image:loc>
			<image:caption><![CDATA[alibaba008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba009-error-multiple.png</image:loc>
			<image:caption><![CDATA[alibaba009 error - multiple]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba010.jpg</image:loc>
			<image:caption><![CDATA[alibaba010]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba011_verify_bank_failed.jpg</image:loc>
			<image:caption><![CDATA[alibaba011_verify_bank_failed]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba012_verify_bank_failed.jpg</image:loc>
			<image:caption><![CDATA[alibaba012_verify_bank_failed]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba013_trying_to_report_error.jpg</image:loc>
			<image:caption><![CDATA[alibaba013_trying_to_report_error]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba014_unsupported_attahment_format.jpg</image:loc>
			<image:caption><![CDATA[alibaba014_unsupported_attahment_format]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba015_reported_verification_error.jpg</image:loc>
			<image:caption><![CDATA[alibaba015_reported_verification_error]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba016_waiting_for_response.jpg</image:loc>
			<image:caption><![CDATA[alibaba016_waiting_for_response]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba017_readded_payment_card.jpg</image:loc>
			<image:caption><![CDATA[alibaba017_readded_payment_card]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba018_multiple_verify_tokens_again_and_none_at_012c.jpg</image:loc>
			<image:caption><![CDATA[alibaba018_multiple_verify_tokens_again_and_none_at_012c]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba019.jpg</image:loc>
			<image:caption><![CDATA[alibaba019]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba021.jpg</image:loc>
			<image:caption><![CDATA[alibaba021]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba022.jpg</image:loc>
			<image:caption><![CDATA[alibaba022]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/alibaba023.jpg</image:loc>
			<image:caption><![CDATA[alibaba023]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/img_9755.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-up-github-on-an-imac-and-creating-a-project/</loc>
		<lastmod>2017-08-02T08:39:30+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/featured_github.jpg</image:loc>
			<image:title><![CDATA[featured_github]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github009.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github011.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github012.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github060.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github061.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github062.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github063.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github064.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github065.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github069a.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github069b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/github070.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/ubuntu-desktop-os-for-developers/</loc>
		<lastmod>2017-08-02T08:42:05+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu_featured.png</image:loc>
			<image:title><![CDATA[ubuntu_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu004a.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu004b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu006a.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu006b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu009.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ubuntu010.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/connection-not-private/</loc>
		<lastmod>2017-08-02T08:43:47+10:00</lastmod>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-up-a-raspberry-pi-zero-w/</loc>
		<lastmod>2017-08-02T08:45:07+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero_featured.jpg</image:loc>
			<image:title><![CDATA[zero_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero0000a.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero0000b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero0000c.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero000a.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero0000d.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero009a_pi_boots_raspian.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero009b_pi_boots_raspian_desktop.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero010_setup_network_and_update.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero011a_new_firmware.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero011b_new_firmware.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero012a_try_usb_adapter.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero012b_try_usb_adapter.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/zero013_we_have_mouse.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-up-bitbucket-on-an-imac-and-creating-a-project/</loc>
		<lastmod>2017-08-02T08:47:11+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket_featured.jpg</image:loc>
			<image:title><![CDATA[bitbucket_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket007b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket009.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket010.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket011b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket012.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket013.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket014.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket015.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket016.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket017b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket018b.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket019.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket020.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket021.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket022.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket023.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket024.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket026.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket027.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket028.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bitbucket029.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bbb1.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bbb2.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bbb3.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bbb4.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/bbb5.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-upgrade-an-aws-free-tier-ec2-t2-micro-instance-to-an-on-demand-t2-medium-server/</loc>
		<lastmod>2017-08-02T08:48:58+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade_featured.png</image:loc>
			<image:title><![CDATA[awsupgrade_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade001.png</image:loc>
			<image:caption><![CDATA[awsupgrade001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade002.png</image:loc>
			<image:caption><![CDATA[awsupgrade002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade003.png</image:loc>
			<image:caption><![CDATA[awsupgrade003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/cpu0busy.jpg</image:loc>
			<image:caption><![CDATA[cpu0busy]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade005.png</image:loc>
			<image:caption><![CDATA[awsupgrade005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade006.png</image:loc>
			<image:caption><![CDATA[awsupgrade006]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade007.png</image:loc>
			<image:caption><![CDATA[awsupgrade007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade008.png</image:loc>
			<image:caption><![CDATA[awsupgrade008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/awsupgrade009.png</image:loc>
			<image:caption><![CDATA[awsupgrade009]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how_to_develop_software_ideas/</loc>
		<lastmod>2017-08-02T08:51:36+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop_featured.png</image:loc>
			<image:title><![CDATA[develop_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/001.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0730.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0732.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0737-1.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop050.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/11/ncdo2016_009.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop010.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop009.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0011.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift050.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/cpu0busy.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50g.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0554.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/develop006.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-up-a-digital-ocean-droplet-as-a-sub-domain-on-an-aws-domain/</loc>
		<lastmod>2017-08-02T09:01:21+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/route53_featured.png</image:loc>
			<image:title><![CDATA[route53_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain001.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain002.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain003.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain004.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain005.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain006.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain007.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain008.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain009.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain012.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain010.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain011.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/subdomain013.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0730-1.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0732-1.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0737-1-1.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-get-useful-feedback-for-your-ideas/</loc>
		<lastmod>2017-08-02T09:06:05+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/feedback_featured.jpg</image:loc>
			<image:title><![CDATA[feedback_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/feedback001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/feedback002.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/securing-wordpress/</loc>
		<lastmod>2017-08-02T09:09:38+10:00</lastmod>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-vultr-vm-configuring-runcloud-io/</loc>
		<lastmod>2017-08-02T09:22:53+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/featured_runcloud.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/runcloud001.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/runcloud003.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/runcloud002.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/runcloud005.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/runcloud006.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/runcloud007.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/runcloud008.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_065.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/05/why_website_001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_066.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_065.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/securing-an-ubuntu-vm-with-a-free-letsencrypt-ssl-certificate-in-1-minute/</loc>
		<lastmod>2017-08-02T09:25:45+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/featured_lets_encrypt.jpg</image:loc>
			<image:title><![CDATA[featured_lets_encrypt]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/lets_encrypt_001.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/lets_encrypt_002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/lets_encrypt_003.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/lets_encrypt_004.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/lets_encrypt_0045.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/lets_encrypt_006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/lets_encrypt_007.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/using-phpservermonitor-org-check-whether-websites-servers-running/</loc>
		<lastmod>2017-08-02T09:27:29+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/featured_server_monitor.jpg</image:loc>
			<image:title><![CDATA[featured_server_monitor]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_006-2.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/server_monitor_009.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_1246.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_1247.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/what-to-look-for-when-buying-a-new-computer/</loc>
		<lastmod>2017-08-02T09:46:42+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/computer_featured.png</image:loc>
			<image:title><![CDATA[computer_featured]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/share-what-you-know-and-do/</loc>
		<lastmod>2017-08-02T09:47:59+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/share_featured.png</image:loc>
			<image:title><![CDATA[share_featured]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/costs-of-running-a-cloud-based-service/</loc>
		<lastmod>2017-08-02T09:55:16+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/cloud_costs_featured.png</image:loc>
			<image:title><![CDATA[cloud_costs_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/05/cpanel_summary.png</image:loc>
			<image:caption><![CDATA[CPanel Summary]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/cpenal_usage_exceeded.png</image:loc>
			<image:caption><![CDATA[cpenal_usage_exceeded]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/webservicesssl.png</image:loc>
			<image:caption><![CDATA[Bad CPanel SSL Certificate]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/raspberry-pi-2b-security-webcam/</loc>
		<lastmod>2017-08-02T09:57:33+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/05/IMG_9206.jpg</image:loc>
			<image:caption><![CDATA[IMG_9206]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/05/IMG_9213.jpg</image:loc>
			<image:caption><![CDATA[IMG_9213]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/05/IMG_9211.jpg</image:loc>
			<image:caption><![CDATA[IMG_9211]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/forklift-3-the-ultimate-mac-file-manager-for-mac/</loc>
		<lastmod>2017-08-02T11:18:33+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift_featured.jpg</image:loc>
			<image:title><![CDATA[forklift_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl001.png</image:loc>
			<image:caption><![CDATA[fl001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/ft001b.png</image:loc>
			<image:caption><![CDATA[ft001b]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl004-1.png</image:loc>
			<image:caption><![CDATA[fl004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl008.png</image:loc>
			<image:caption><![CDATA[fl008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/012.png</image:loc>
			<image:caption><![CDATA[012]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/010.png</image:loc>
			<image:caption><![CDATA[010]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl014.png</image:loc>
			<image:caption><![CDATA[fl014]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/011.png</image:loc>
			<image:caption><![CDATA[011]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl015.png</image:loc>
			<image:caption><![CDATA[fl015]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/013.png</image:loc>
			<image:caption><![CDATA[013]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl016.png</image:loc>
			<image:caption><![CDATA[fl016]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl017.png</image:loc>
			<image:caption><![CDATA[fl017]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl018.png</image:loc>
			<image:caption><![CDATA[fl018]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fl019.png</image:loc>
			<image:caption><![CDATA[fl019]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift050.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift051.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift052.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift053.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift054.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift055.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift056.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/forklift057.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/fltouchbar.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/nodemcu-introduction-open-source-iot-platform-based-on-the-esp8266-wi-fi-soc/</loc>
		<lastmod>2017-08-02T11:30:01+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/03/node_title2.png</image:loc>
			<image:title><![CDATA[node_title2]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/03/nodemcu003.png</image:loc>
			<image:caption><![CDATA[nodemcu003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/03/nodemcu001.png</image:loc>
			<image:caption><![CDATA[nodemcu001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/03/nodemcu002.png</image:loc>
			<image:caption><![CDATA[nodemcu002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/03/nodemcu004.jpg</image:loc>
			<image:caption><![CDATA[nodemcu004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/03/nodemcu005.png</image:loc>
			<image:caption><![CDATA[nodemcu005]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/developing_robust_distributed_apps_with_the_help_of_little_snitch_firewall_on_osx/</loc>
		<lastmod>2017-08-02T11:34:58+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitchBanner.png</image:loc>
			<image:title><![CDATA[LittleSnitchBanner]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch001.png</image:loc>
			<image:caption><![CDATA[LittleSnitch001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch002.png</image:loc>
			<image:caption><![CDATA[LittleSnitch002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch003.png</image:loc>
			<image:caption><![CDATA[LittleSnitch003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch004.png</image:loc>
			<image:caption><![CDATA[LittleSnitch004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch005.png</image:loc>
			<image:caption><![CDATA[LittleSnitch005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch007.png</image:loc>
			<image:caption><![CDATA[LittleSnitch007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/w6ehv.png</image:loc>
			<image:caption><![CDATA[w6ehv]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch008.png</image:loc>
			<image:caption><![CDATA[LittleSnitch008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch009.png</image:loc>
			<image:caption><![CDATA[LittleSnitch009]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0010d.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0010d]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0010c.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0010c]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0011.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0011]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0012.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0012]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0013.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0013]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0014.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0014]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0015.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0015]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0016.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0016]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0017.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0017]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0019.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0019]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0020.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0020]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch008.png</image:loc>
			<image:caption><![CDATA[LittleSnitch008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0022.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0022]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/01/LittleSnitch0019.png</image:loc>
			<image:caption><![CDATA[LittleSnitch0019]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/digital-disruption-or-digital-tinkering/</loc>
		<lastmod>2017-08-02T11:55:05+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/consultant_000.png</image:loc>
			<image:title><![CDATA[consultant_000]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/kodak-bankruptcy.jpg</image:loc>
			<image:caption><![CDATA[kodak-bankruptcy]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/consultant_001.jpg</image:loc>
			<image:caption><![CDATA[consultant_001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/consultant_003.png</image:loc>
			<image:caption><![CDATA[consultant_003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/nosql-triangle.png</image:loc>
			<image:caption><![CDATA[nosql-triangle]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/consultant_002-1.jpg</image:loc>
			<image:caption><![CDATA[consultant_002-1]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50f.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/consultant_004.jpg</image:loc>
			<image:caption><![CDATA[consultant_004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/cpu0busy.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/awsicsmongotest002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c9-003.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/creating-and-configuring-a-centos-server-on-digital-ocean/</loc>
		<lastmod>2017-08-02T11:58:15+10:00</lastmod>
	</url>
	<url>
		<loc>https://fearby.com/article/beyond-ssl-with-content-security-policy-public-key-pinning-etc/</loc>
		<lastmod>2017-08-02T11:59:48+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/websecurity-001.jpg</image:loc>
			<image:caption><![CDATA[websecurity-001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/websecurity-006.jpg</image:loc>
			<image:caption><![CDATA[websecurity-006]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/websecurity-007.jpg</image:loc>
			<image:caption><![CDATA[websecurity-007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/websecurity-005.jpg</image:loc>
			<image:caption><![CDATA[websecurity-005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/websecurity-004.jpg</image:loc>
			<image:caption><![CDATA[websecurity-004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/12/websecurity-003.jpg</image:loc>
			<image:caption><![CDATA[websecurity-003]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-up-a-fast-distributed-mysql-environment-with-ssl/</loc>
		<lastmod>2017-08-02T12:04:23+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/09/ewww.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/09/ewww3.png</image:loc>
			<image:caption><![CDATA[ewww3]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/connecting-to-an-aws-ec2-ubuntu-instance-with-cloud-9-ide-as-user-ubuntu-and-root/</loc>
		<lastmod>2017-08-02T12:06:03+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/09/awsec2featured.jpg</image:loc>
			<image:title><![CDATA[awsec2featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/c9io15-004.jpg</image:loc>
			<image:caption><![CDATA[c9io15-004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c9-003.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/c9io15-000.jpg</image:loc>
			<image:caption><![CDATA[c9io15-000]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/c9io15-002.jpg</image:loc>
			<image:caption><![CDATA[c9io15-002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/c9io15-001.jpg</image:loc>
			<image:caption><![CDATA[c9io15-001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/c9io15-003.jpg</image:loc>
			<image:caption><![CDATA[c9io15-003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/09/c9io15-005.jpg</image:loc>
			<image:caption><![CDATA[c9io15-005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/09/c9io15-007.jpg</image:loc>
			<image:caption><![CDATA[c9io15-007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/09/c9io15-006.jpg</image:loc>
			<image:caption><![CDATA[c9io15-006]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/09/c9io15-009.jpg</image:loc>
			<image:caption><![CDATA[c9io15-009]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/application-scalability-on-a-budget-my-journey/</loc>
		<lastmod>2017-08-02T12:16:06+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/awsbench.jpg</image:loc>
			<image:title><![CDATA[awsbench]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/locationlocationlocation.jpg</image:loc>
			<image:caption><![CDATA[locationlocationlocation]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/cipherspeed.png</image:loc>
			<image:caption><![CDATA[cipherspeed]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50c.jpg</image:loc>
			<image:caption><![CDATA[nodebench50c]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50b.jpg</image:loc>
			<image:caption><![CDATA[nodebench50b]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50a.jpg</image:loc>
			<image:caption><![CDATA[nodebench50a]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50d.jpg</image:loc>
			<image:caption><![CDATA[nodebench50d]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50e.jpg</image:loc>
			<image:caption><![CDATA[nodebench50e]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50f.jpg</image:loc>
			<image:caption><![CDATA[nodebench50f]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50g.jpg</image:loc>
			<image:caption><![CDATA[nodebench50g]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50h.jpg</image:loc>
			<image:caption><![CDATA[nodebench50h]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/nodebench50i.jpg</image:loc>
			<image:caption><![CDATA[nodebench50i]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/cpu0busy.jpg</image:loc>
			<image:caption><![CDATA[cpu0busy]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/censisfail.jpg</image:loc>
			<image:caption><![CDATA[censisfail]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/awsicsmongotest001.jpg</image:loc>
			<image:caption><![CDATA[awsicsmongotest001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/awsicsmongotest002.jpg</image:loc>
			<image:caption><![CDATA[awsicsmongotest002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/awsbench2.jpg</image:loc>
			<image:caption><![CDATA[awsbench2]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/scalability_budget_2017_001.png</image:loc>
			<image:caption><![CDATA[scalability_budget_2017_001]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/4-winning-tips-for-online-startups/</loc>
		<lastmod>2017-08-02T12:17:54+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/webdesignperth.png</image:loc>
			<image:caption><![CDATA[webdesignperth]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/essential-android-antivirus-and-antimalware-apps/</loc>
		<lastmod>2017-08-02T12:19:04+10:00</lastmod>
	</url>
	<url>
		<loc>https://fearby.com/article/quick-guide-to-using-adobe-premiere-pro-cc-to-make-videos/</loc>
		<lastmod>2017-08-02T12:26:30+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_17.png</image:loc>
			<image:title><![CDATA[premiere_pro_17]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/adobecc.png</image:loc>
			<image:caption><![CDATA[adobecc]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/cc_1.png</image:loc>
			<image:caption><![CDATA[cc_1]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/cc2.png</image:loc>
			<image:caption><![CDATA[cc2]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_01.png</image:loc>
			<image:caption><![CDATA[premiere_pro_01]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_02.png</image:loc>
			<image:caption><![CDATA[premiere_pro_02]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_03.png</image:loc>
			<image:caption><![CDATA[premiere_pro_03]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_04.png</image:loc>
			<image:caption><![CDATA[premiere_pro_04]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_05.png</image:loc>
			<image:caption><![CDATA[premiere_pro_05]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_06.png</image:loc>
			<image:caption><![CDATA[premiere_pro_06]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_07.png</image:loc>
			<image:caption><![CDATA[premiere_pro_07]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_08.png</image:loc>
			<image:caption><![CDATA[premiere_pro_08]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_09.png</image:loc>
			<image:caption><![CDATA[premiere_pro_09]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_10.png</image:loc>
			<image:caption><![CDATA[premiere_pro_10]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_11.png</image:loc>
			<image:caption><![CDATA[premiere_pro_11]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_12.png</image:loc>
			<image:caption><![CDATA[premiere_pro_12]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_13.png</image:loc>
			<image:caption><![CDATA[premiere_pro_13]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_14.png</image:loc>
			<image:caption><![CDATA[premiere_pro_14]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_15.png</image:loc>
			<image:caption><![CDATA[premiere_pro_15]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_16.png</image:loc>
			<image:caption><![CDATA[premiere_pro_16]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/premiere_pro_17.png</image:loc>
			<image:caption><![CDATA[premiere_pro_17]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/what-is-you-backup-plan-in-2016/</loc>
		<lastmod>2017-08-02T12:27:33+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/03/backblaze.jpg</image:loc>
			<image:title><![CDATA[backblaze]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/analytics-personalization-bigdata-bedtime-stories/</loc>
		<lastmod>2017-08-02T12:28:39+10:00</lastmod>
	</url>
	<url>
		<loc>https://fearby.com/article/computer-hardware-clock-cycles-and-code-ramblings/</loc>
		<lastmod>2017-08-02T12:29:40+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/04/cpu_die.jpg</image:loc>
			<image:title><![CDATA[cpu_die]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/listen-to-your-customers-and-act/</loc>
		<lastmod>2017-08-02T12:30:24+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/04/feedback-meme.png</image:loc>
			<image:title><![CDATA[feedback-meme]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/update-openssl-on-a-digital-ocean-vm/</loc>
		<lastmod>2017-08-02T12:31:53+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/oraclecve.png</image:loc>
			<image:caption><![CDATA[oraclecve]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-get-started-in-programming/</loc>
		<lastmod>2017-08-02T12:32:41+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/codetestbuild.png</image:loc>
			<image:title><![CDATA[codetestbuild]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/06/codetestbuild.png</image:loc>
			<image:caption><![CDATA[codetestbuild]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/innovation-innovation-innovation/</loc>
		<lastmod>2017-08-02T13:49:53+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/03/Senate.jpg</image:loc>
			<image:title><![CDATA[Senate]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-buy-a-new-domain-dedicated-server-from-digital-ocean-and-add-a-ssl-certificate-from-namecheap/</loc>
		<lastmod>2017-08-02T14:00:42+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/12/namecheapnameservers.png</image:loc>
			<image:caption><![CDATA[namecheapnameservers]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/why-choose-a-wordpress-website-over-a-static-html-site-edited-with-dreamweaver/</loc>
		<lastmod>2017-08-02T14:06:06+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/wordpress_dreamweaver_featured.jpg</image:loc>
			<image:title><![CDATA[wordpress_dreamweaver_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/dreamweaver_01.jpg</image:loc>
			<image:caption><![CDATA[Dreamweaver CC]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/sublime_01.jpg</image:loc>
			<image:caption><![CDATA[Sublime Text 3]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/05/wordpress.jpg</image:loc>
			<image:caption><![CDATA[wordpress]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/wordpress_org_01.jpg</image:loc>
			<image:caption><![CDATA[wordpress_org_01]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/wp-ios.png</image:loc>
			<image:caption><![CDATA[wp-ios]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/wp-android.png</image:loc>
			<image:caption><![CDATA[wp-android]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/wordpress_editing_now.jpg</image:loc>
			<image:caption><![CDATA[wordpress_editing_now]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/wordpress_editing_media.jpg</image:loc>
			<image:caption><![CDATA[wordpress_editing_media]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/page-redirects-domain-tracking/</loc>
		<lastmod>2017-08-02T14:12:48+10:00</lastmod>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-setup-and-use-push-notifications-to-modern-web-browsers-with-onesignal/</loc>
		<lastmod>2017-08-02T14:13:57+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/pushfeatured.jpg</image:loc>
			<image:title><![CDATA[pushfeatured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push01.jpg</image:loc>
			<image:caption><![CDATA[Web Browser Push Requirements]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push03.jpg</image:loc>
			<image:caption><![CDATA[Push Configuration]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push04.jpg</image:loc>
			<image:caption><![CDATA[Opt In Push Notification Warning]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push07.jpg</image:loc>
			<image:caption><![CDATA[Browser Push]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push08.jpg</image:loc>
			<image:caption><![CDATA[Push Message]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push09.jpg</image:loc>
			<image:caption><![CDATA[Closed Browser]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push06.jpg</image:loc>
			<image:caption><![CDATA[Opt Out]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push-firefox.jpg</image:loc>
			<image:caption><![CDATA[FireFox]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/push05.jpg</image:loc>
			<image:caption><![CDATA[Project ID]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-build-your-first-cross-platform-mobile-app-with-corona/</loc>
		<lastmod>2017-08-02T14:16:34+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/cross_platform_app-2.jpg</image:loc>
			<image:title><![CDATA[cross_platform_app-2]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/cross_platform_app-2.jpg</image:loc>
			<image:caption><![CDATA[cross_platform_app-2]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_001.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_002.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_003.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_004.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_005.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_006.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_006]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_007.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_008.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_009.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_009]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_010.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_010]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_011.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_011]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_012.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_012]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_013.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_013]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_014.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_014]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_015.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_015]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_016.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_016]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_017.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_017]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_018.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_018]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_019.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_019]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_020.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_020]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_021.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_021]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_023.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_023]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_024.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_024]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_025.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_025]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_026.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_026]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_027.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_027]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_028.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_028]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_029.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_029]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_030.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_030]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_031.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_031]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_032.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_032]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_034.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_034]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_035.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_035]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_036.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_036]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_037.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_037]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_038.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_038]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_039.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_039]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_040.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_040]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_041.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_041]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_044b.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_044b]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_042.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_042]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_043.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_043]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_044.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_044]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_045.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_045]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/apple_app_dev_046.jpg</image:loc>
			<image:caption><![CDATA[apple_app_dev_046]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_001.jpg</image:loc>
			<image:caption><![CDATA[Android_001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_002.jpg</image:loc>
			<image:caption><![CDATA[Android_002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_003.jpg</image:loc>
			<image:caption><![CDATA[Android_003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_004.jpg</image:loc>
			<image:caption><![CDATA[Android_004]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_005.jpg</image:loc>
			<image:caption><![CDATA[Android_005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_006.jpg</image:loc>
			<image:caption><![CDATA[Android_006]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_007.jpg</image:loc>
			<image:caption><![CDATA[Android_007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_008.jpg</image:loc>
			<image:caption><![CDATA[Android_008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_009.jpg</image:loc>
			<image:caption><![CDATA[Android_009]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_010.jpg</image:loc>
			<image:caption><![CDATA[Android_010]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_011.jpg</image:loc>
			<image:caption><![CDATA[Android_011]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_012.jpg</image:loc>
			<image:caption><![CDATA[Android_012]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/Android_013.jpg</image:loc>
			<image:caption><![CDATA[Android_013]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/crona-sublime.jpg</image:loc>
			<image:caption><![CDATA[crona-sublime]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/what-is-the-difference-between-a-website-app-web-app-hybrid-app-and-software/</loc>
		<lastmod>2017-08-02T14:25:07+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/09/responsive.jpg</image:loc>
			<image:title><![CDATA[responsive]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/the-quickest-way-to-setup-a-scalable-development-ide-and-web-server/</loc>
		<lastmod>2017-08-02T14:38:09+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c9-003.png</image:loc>
			<image:title><![CDATA[Sample Cloud 9 Wordpspace]]></image:title>
			<image:caption><![CDATA[Sample Cloud 9 Wordpspace]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c92016.png</image:loc>
			<image:caption><![CDATA[c92016]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c92016b.png</image:loc>
			<image:caption><![CDATA[c92016b]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c9-004.png</image:loc>
			<image:caption><![CDATA[Edit and View Code Workspace]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c9-003.png</image:loc>
			<image:caption><![CDATA[Sample Cloud 9 Wordpspace]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c9-terminal.png</image:loc>
			<image:caption><![CDATA[Full Bash Terminal]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/do2016b.png</image:loc>
			<image:caption><![CDATA[do2016b]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/do2016.png</image:loc>
			<image:caption><![CDATA[do2016]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/do-008.png</image:loc>
			<image:caption><![CDATA[Digital Ocean Droplet (VM) Created]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/c92016c.png</image:loc>
			<image:caption><![CDATA[c92016c]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/cp-zone.png</image:loc>
			<image:caption><![CDATA[DNS Zone]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/adding-a-commercial-ssl-certificate-to-a-digital-ocean-vm/</loc>
		<lastmod>2017-08-02T14:39:17+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/ssl_lockdown_003.png</image:loc>
			<image:title><![CDATA[Final SSL Labs Score]]></image:title>
			<image:caption><![CDATA[Final SSL Labs Score]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/webservicesssl.png</image:loc>
			<image:caption><![CDATA[Managed WebServices SSL]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/nottrusted.png</image:loc>
			<image:caption><![CDATA[Self Signed Certificates are not trusted]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/dmdefault.png</image:loc>
			<image:caption><![CDATA[SSL Test After Install ]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/ssl_lockdown_003.png</image:loc>
			<image:caption><![CDATA[Final SSL Labs Score]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/adding-secure-credit-card-payments-to-your-website/</loc>
		<lastmod>2017-08-02T14:40:37+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/cc02.png</image:loc>
			<image:title><![CDATA[Popup Micro Payment Form]]></image:title>
			<image:caption><![CDATA[Popup Micro Payment Form]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/donate5dollars.png</image:loc>
			<image:caption><![CDATA[donate5dollars]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/payment_screen.png</image:loc>
			<image:caption><![CDATA[payment_screen]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/cc04.png</image:loc>
			<image:caption><![CDATA[Real Payment via Simple Form]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/cc03.png</image:loc>
			<image:caption><![CDATA[Bank Statement]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/cc-nice.png</image:loc>
			<image:caption><![CDATA[Nice Bootstrap form]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/06/stripe.png</image:loc>
			<image:caption><![CDATA[Stripe Charges]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-setup-pooled-mysql-connections-in-node-js-that-dont-disconnect/</loc>
		<lastmod>2017-08-02T14:46:02+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/08/pooled-mysql-banner.jpg</image:loc>
			<image:title><![CDATA[pooled-mysql-banner]]></image:title>
			<image:caption><![CDATA[Pooled MySQL Connections in NodeJS]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/digital-marketing-and-user-engagement-101/</loc>
		<lastmod>2017-08-03T22:22:58+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/digital_featured.jpg</image:loc>
			<image:title><![CDATA[digital_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0390.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_1220.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/img_9930.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/img_9307.jpg</image:loc>
			<image:caption><![CDATA[img_9307.jpg]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/img_1389.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_1219.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/developing_software_and_staying_on_track/</loc>
		<lastmod>2017-08-07T13:53:43+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian_featured.png</image:loc>
			<image:title><![CDATA[atlassian_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/001.png</image:loc>
			<image:caption><![CDATA[001]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/002.png</image:loc>
			<image:caption><![CDATA[002]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/003.png</image:loc>
			<image:caption><![CDATA[003]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/a009.png</image:loc>
			<image:caption><![CDATA[a009]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/a010.png</image:loc>
			<image:caption><![CDATA[a010]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/a005.png</image:loc>
			<image:caption><![CDATA[a005]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/a006.png</image:loc>
			<image:caption><![CDATA[a006]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/a007.png</image:loc>
			<image:caption><![CDATA[a007]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/a008.png</image:loc>
			<image:caption><![CDATA[a008]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian009.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian010.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian011.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian012.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian013.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian014.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian015.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian016.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian017.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian018.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian019.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian020.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/caching-mysql-queries-in-memory-for-xx-seconds/</loc>
		<lastmod>2017-08-08T15:24:32+10:00</lastmod>
	</url>
	<url>
		<loc>https://fearby.com/article/creating-an-aws-ec2-ubuntu-14-04-server-with-nginx-node-and-mysql-and-phpmyadmin/</loc>
		<lastmod>2017-08-08T18:48:30+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/awsip.jpg</image:loc>
			<image:caption><![CDATA[awsip]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2016/08/aws-console_aa.png</image:loc>
			<image:caption><![CDATA[aws-console_aa]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/nodejs-code-to-handle-app-logins-via-api-using-mysql-connection-pools-1000-connections-and-query-parameters/</loc>
		<lastmod>2017-08-09T11:07:25+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/nodejs_featured.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/installing-webmin-server-management-web-gui-onto-ubuntu/</loc>
		<lastmod>2017-08-10T05:57:09+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin_featured.jpg</image:loc>
			<image:title><![CDATA[webmin_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin015.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin009.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin010.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin011.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin012.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin013.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/webmin014.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-transfer-an-existing-website-to-jumba-com-au-uber-com-au/</loc>
		<lastmod>2017-08-14T16:36:07+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_featured.jpg</image:loc>
			<image:title><![CDATA[transfer_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_01.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_01]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_02.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_02]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_031.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_03]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_041.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_04]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_05.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_05]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_06.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_06]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_08.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_08]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/11/transfer_domain_09.jpg</image:loc>
			<image:caption><![CDATA[transfer_domain_09]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/05/cpanel_summary.png</image:loc>
			<image:caption><![CDATA[CPanel Summary]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/improving-the-speed-of-wordpress/</loc>
		<lastmod>2017-08-15T10:33:03+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wpcachet_featured.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc003.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc004.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc002.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc001.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc005.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc006.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc007.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc008.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc009.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc010.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc011.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc012.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc013.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc018.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc016.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/wptc019.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-boost-your-sites-seo/</loc>
		<lastmod>2017-08-15T22:05:18+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/featured_seo.jpg</image:loc>
			<image:title><![CDATA[featured_seo]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo017.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/sitemapseo.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/bing001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/bing003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/bing004.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/bing005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo010.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo011.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo012.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo013.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo008.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo009.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo014.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo015.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seo016.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/seomonitor.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/self-service-status-pages/</loc>
		<lastmod>2017-08-15T22:11:22+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0668.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_0688.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-up-google-analytics-on-your-website/</loc>
		<lastmod>2017-08-22T23:14:31+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/analytics_featured.jpg</image:loc>
			<image:title><![CDATA[analytics_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics002.jpg</image:loc>
			<image:caption><![CDATA[Google Analitics Geenrate ID]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics003.jpg</image:loc>
			<image:caption><![CDATA[edit file]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics004.jpg</image:loc>
			<image:caption><![CDATA[html source]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/googleanalitics014.jpg</image:loc>
			<image:caption><![CDATA[page hits]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics005.jpg</image:loc>
			<image:caption><![CDATA[Analitics Home]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics006.jpg</image:loc>
			<image:caption><![CDATA[active users]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics007.jpg</image:loc>
			<image:caption><![CDATA[audience stats]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics008.jpg</image:loc>
			<image:caption><![CDATA[City breakdown]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics009.jpg</image:loc>
			<image:caption><![CDATA[Devices]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics010.jpg</image:loc>
			<image:caption><![CDATA[user flow]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics011.jpg</image:loc>
			<image:caption><![CDATA[Page speed]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics012.jpg</image:loc>
			<image:caption><![CDATA[goals]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2015/10/googleanalitics013.jpg</image:loc>
			<image:caption><![CDATA[alerts]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-be-alerted-after-system-boot-on-ubuntu-16-04-with-an-email-via-gmail/</loc>
		<lastmod>2017-09-05T23:16:43+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/startup_featured.jpg</image:loc>
			<image:title><![CDATA[startup_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/startup_email_001.jpg</image:loc>
			<image:caption><![CDATA[email capture]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/add-google-adwords-wordpress-blog/</loc>
		<lastmod>2017-09-11T23:52:35+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/featured_adwords.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_004.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_003.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_006.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_007.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_008.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_009.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_010.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_012.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/adsense_013.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/adsense_005.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/adsense_050.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/adsense_051.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/img_1308.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/img_1307.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/adsense99.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/gsuitebilling.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/installing-and-managing-wordpress-with-wp-cli-from-the-command-line-on-ubuntu/</loc>
		<lastmod>2017-09-12T01:05:39+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/wpcli_featured.jpg</image:loc>
			<image:title><![CDATA[wpcli_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/wordpresscli-001.jpg</image:loc>
			<image:caption><![CDATA[Wordpress manual update plugins page]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/wordpresscli-002.jpg</image:loc>
			<image:caption><![CDATA[WordPress Plugins]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/wordpresscli-003.jpg</image:loc>
			<image:caption><![CDATA[Update WordPress]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/wordpresscli-004.jpg</image:loc>
			<image:caption><![CDATA[WordPress version]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/optimize-sites-search-engine-optimization-seo-grow-customers-without-paying-ads/</loc>
		<lastmod>2017-09-12T01:06:01+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/seo2_featured.jpg</image:loc>
			<image:title><![CDATA[seo2_featured]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/installing-redis-4-x-onto-ubuntu-16-04/</loc>
		<lastmod>2017-09-12T01:06:40+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/redis_featured.jpg</image:loc>
			<image:title><![CDATA[redis_featured]]></image:title>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/atlaz-io-beta-project-management-tool-for-cross-functional-teams-the-trello-and-atlassianjira-killer/</loc>
		<lastmod>2017-09-12T01:10:53+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/atlaz_featured.jpg</image:loc>
			<image:title><![CDATA[atlaz_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/atlassian006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/atlazaa.jpg</image:loc>
			<image:caption><![CDATA[Atlaz Setup]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/atlazb.jpg</image:loc>
			<image:caption><![CDATA[when setup]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/atlazbb.jpg</image:loc>
			<image:caption><![CDATA[Import Trello Steps]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/atlazcc.jpg</image:loc>
			<image:caption><![CDATA[Imported TRrello Items]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/atlazdd.jpg</image:loc>
			<image:caption><![CDATA[Importing JIRA Items]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/atlaz0ee.jpg</image:loc>
			<image:caption><![CDATA[Atlaz Imported]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-backup-an-ubuntu-vm-in-the-cloud-via-crontab-entries-that-trigger-bash-scripts-ssh-rsync-and-email-backup-alerts/</loc>
		<lastmod>2017-09-12T01:12:32+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/backupvm_featured.jpg</image:loc>
			<image:title><![CDATA[backupvm_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/backupvm002.jpg</image:loc>
			<image:caption><![CDATA[disk usage screenshot]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-send-email-via-g-suite-from-ubuntu-in-the-cloud/</loc>
		<lastmod>2017-09-12T01:12:44+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/sendemail_featured.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/ubuntuemail001.png</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/deploying-wordpress-to-a-vultr-vm-via-comamnd-line/</loc>
		<lastmod>2017-09-12T01:13:42+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/vultrwordpress_featured.jpg</image:loc>
			<image:title><![CDATA[vultrwordpress_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/installwordpressvultr001.jpg</image:loc>
			<image:caption><![CDATA[Loading PHP Configuration]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/installwordpressvultr002.jpg</image:loc>
			<image:caption><![CDATA[Wordpress Setup GUI]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/installwordpressvultr003.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/moving-wordpress-to-a-new-self-managed-server-away-from-cpanel/</loc>
		<lastmod>2017-09-12T01:14:15+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/wordpressmove_featured.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/uber001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_015.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/movewp001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/movewp002.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/strengths-and-weaknesses/</loc>
		<lastmod>2017-09-12T01:14:30+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/personality_featured.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/securing-ubuntu-cloud/</loc>
		<lastmod>2017-09-12T01:15:12+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/secure_ububtu_featured.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/su005.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/su006.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/su007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/su001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/su003.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/su004.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/moving-a-cpanel-domain-with-email-to-a-self-managed-vps-and-gmail/</loc>
		<lastmod>2017-09-12T01:15:46+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/gsuite_featured.jpg</image:loc>
			<image:title><![CDATA[gsuite_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/uber001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_001.jpg</image:loc>
			<image:caption><![CDATA[Screenshots of Google G Suite setup]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_002.png</image:loc>
			<image:caption><![CDATA[More screenshots of Google G suite setup]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_003.png</image:loc>
			<image:caption><![CDATA[Picture of G suite asking how i will log in]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_004.png</image:loc>
			<image:caption><![CDATA[Google G suite did not like my email provided]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_005.png</image:loc>
			<image:caption><![CDATA[Final G suite setup screenshots.]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_006.png</image:loc>
			<image:caption><![CDATA[G Suite said im all ready to add users]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_007.png</image:loc>
			<image:caption><![CDATA[G Suite adding users]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/google_apps_010.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_011.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_008.png</image:loc>
			<image:caption><![CDATA[Screenshot of Cpanel users ]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_009.png</image:loc>
			<image:caption><![CDATA[CPanel backup screenshot]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_012.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_014.jpg</image:loc>
			<image:caption><![CDATA[NameCheap DNS]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_011.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_016.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_015.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_013.png</image:loc>
			<image:caption><![CDATA[Import IMAP mail to GMail]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/06/cpenal_usage_exceeded.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_017.png</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/ncdu.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/ssl_move_001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/ssl_move_002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/gsuitebilling001.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/gsuitebilling002.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/gsuitebilling050.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/gsuite201.jpg</image:loc>
			<image:caption><![CDATA[troubleshooting 1]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/gsuite202.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/gsuite203b.jpg</image:loc>
			<image:caption><![CDATA[past email]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/run-ubuntu-vm-system-audit-lynis/</loc>
		<lastmod>2017-09-12T01:21:42+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/lynis_featured.jpg</image:loc>
			<image:title><![CDATA[lynis_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/LYNIS001.jpg</image:loc>
			<image:caption><![CDATA[Lynis Plans]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-setup-and-secure-mongodb-on-ubuntu-16-04-and-verify-with-studio3t/</loc>
		<lastmod>2017-09-16T12:25:29+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/mongo16b_featured.jpg</image:loc>
			<image:title><![CDATA[mongo16b_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/mongo16-001.jpg</image:loc>
			<image:caption><![CDATA[mongodb open]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/mongo16-002.jpg</image:loc>
			<image:caption><![CDATA[Create MOngoDB USER]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/mongo16-003.jpg</image:loc>
			<image:caption><![CDATA[use login details]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/mongo16-004.jpg</image:loc>
			<image:caption><![CDATA[all secure]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/setting-vultr-vm-configuring/</loc>
		<lastmod>2017-09-16T22:18:00+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/featured_vultr.jpg</image:loc>
			<image:title><![CDATA[featured_vultr]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_001.png</image:loc>
			<image:caption><![CDATA[Vultr signup]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_002.png</image:loc>
			<image:caption><![CDATA[Vultr add cc]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_003.jpg</image:loc>
			<image:caption><![CDATA[Vultr deploy vm]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_005.jpg</image:loc>
			<image:caption><![CDATA[Vultr 20 month]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_004.jpg</image:loc>
			<image:caption><![CDATA[Vultr add ssh key]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_006.jpg</image:loc>
			<image:caption><![CDATA[Vultr ass ssh key 2]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_007.jpg</image:loc>
			<image:caption><![CDATA[Vultr deploy now]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_008.jpg</image:loc>
			<image:caption><![CDATA[Vultr my servers]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_009.png</image:loc>
			<image:caption><![CDATA[Vultr server information]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_010.jpg</image:loc>
			<image:caption><![CDATA[Vultr ssh]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_011-1.png</image:loc>
			<image:caption><![CDATA[Vultr namecheap]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_057-1.png</image:loc>
			<image:caption><![CDATA[Vultr namecheap 2]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_058.png</image:loc>
			<image:caption><![CDATA[Vultr dns]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_063.png</image:loc>
			<image:caption><![CDATA[Vultr chrome privacy]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_061.png</image:loc>
			<image:caption><![CDATA[Vultr ssl checker]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_062.png</image:loc>
			<image:caption><![CDATA[Vultr ssl labs]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_012.png</image:loc>
			<image:caption><![CDATA[Vultr ncdu]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_013.png</image:loc>
			<image:caption><![CDATA[Vultr pydf]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_014.png</image:loc>
			<image:caption><![CDATA[Vultr firewall]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_015.png</image:loc>
			<image:caption><![CDATA[Vultr add domain]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_016.png</image:loc>
			<image:caption><![CDATA[Vultr charts]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_059.png</image:loc>
			<image:caption><![CDATA[Vultr c9]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_052-1.png</image:loc>
			<image:caption><![CDATA[Vultr ssl cert]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_053.png</image:loc>
			<image:caption><![CDATA[Vultr ssl cert 2]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_054.png</image:loc>
			<image:caption><![CDATA[Comodo]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/img_1243.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_064.png</image:loc>
			<image:caption><![CDATA[site ready]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_062.png</image:loc>
			<image:caption><![CDATA[ssl labs]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_075.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/useful-linux-termianl-commands/</loc>
		<lastmod>2017-09-16T22:25:45+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/termianl2_featured.jpg</image:loc>
			<image:title><![CDATA[termianl2_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/json.jpg</image:loc>
			<image:caption><![CDATA[output from json tool]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/07/vultur_013.png</image:loc>
			<image:caption><![CDATA[output from pydf tool]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/migrate_017.png</image:loc>
			<image:caption><![CDATA[output from htop tool]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/08/ubuntu_tools_001.jpg</image:loc>
			<image:caption><![CDATA[Screen dump of ipref -c ip]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-use-sublime-text-editor-locally-to-edit-code-files-on-a-remote-server-via-ssh/</loc>
		<lastmod>2017-09-17T12:39:51+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh_featured.jpg</image:loc>
			<image:title><![CDATA[sublimessh_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh001.jpg</image:loc>
			<image:caption><![CDATA[Sublime instal package]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh002.jpg</image:loc>
			<image:caption><![CDATA[Sublime Install RSUB]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh003.jpg</image:loc>
			<image:caption><![CDATA[SSH Alias]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh004.jpg</image:loc>
			<image:caption><![CDATA[ssh alias]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh005.jpg</image:loc>
			<image:caption><![CDATA[ssh connect]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh006.jpg</image:loc>
			<image:caption><![CDATA[SSH]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh007.jpg</image:loc>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/sublimessh008.jpg</image:loc>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/setup-ruby-rails-gem-and-a-command-line-twitter-tool-to-query-twitter-on-ubuntu-via-a-twitter-app/</loc>
		<lastmod>2017-09-17T14:29:58+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/rubytwitter_featured.jpg</image:loc>
			<image:title><![CDATA[rubytwitter_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/rubyt001.jpg</image:loc>
			<image:caption><![CDATA[Twitter App]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/rubyt002.jpg</image:loc>
			<image:caption><![CDATA[Created Twitter App]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/rubyt003.jpg</image:loc>
			<image:caption><![CDATA[Twitter App Permissions]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/rubyt004.jpg</image:loc>
			<image:caption><![CDATA[Authorize Twitter]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/rubyt005.jpg</image:loc>
			<image:caption><![CDATA[Auhorize Pin]]></image:caption>
		</image:image>
	</url>
	<url>
		<loc>https://fearby.com/article/how-to-setup-a-twitter-feed-api-endpoint-in-nodejs-with-nginx-ruby-t-etc/</loc>
		<lastmod>2017-09-17T14:47:15+10:00</lastmod>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/twitterquery_featured.jpg</image:loc>
			<image:title><![CDATA[twitterquery_featured]]></image:title>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/nodetwitterapi001001.jpg</image:loc>
			<image:caption><![CDATA[Node API]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/nodetwitterapi003.jpg</image:loc>
			<image:caption><![CDATA[API Test]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/nodetwitterapi004.jpg</image:loc>
			<image:caption><![CDATA[API Auth]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/nodetwitterapi005.jpg</image:loc>
			<image:caption><![CDATA[API Working]]></image:caption>
		</image:image>
		<image:image>
			<image:loc>https://fearby.com/wp-content/uploads/2017/09/nodetwitterapi007.jpg</image:loc>
		</image:image>
	</url>
</urlset>
<!-- XML Sitemap generated by Yoast SEO -->

Processing the XML file

Here is my final bash script that manages temp files, downloads a sitemap, finds URLs in the Sitemap, chooses a random article, loads the page to get the title, finds hashtags and posts a tweet.

Final script with hashtag routine.

#!/bin/bash
clear
printf "\n\nDeleting old temp files..":
rm -R ./tmp.xml>/dev/null 2>&1
rm -R ./urls.txt>/dev/null 2>&1
rm -R ./randomarticle.txt>/dev/null 2>&1
rm -R ./randomarticletitle.txt>/dev/null 2>&1

printf "\n\nDownloading: https://fearby.com/post-sitemap.xml";
curl -o ./tmp.xml https://fearby.com/post-sitemap.xml

printf "\n\nFinding posts in tmp.xml";
sed '/<loc>/!d; s/[[:space:]]*<loc>\(.*\)<\/loc>/\1/' ./tmp.xml > ./urls.txt

printf "Displaying: ./urls.txt";
cat ./urls.txt

printf "\n\nChoosing a Random Article":
shuf -n1 ./urls.txt >./randomarticle.txt

printf "\n\nDisplaying Random Article";
cat ./randomarticle.txt

printf "\n\nShowing Random Article Page";
randomarticle=$(<randomarticle.txt)printf "\n\n$randomarticle";

printf "\n\nGetting title from page":
wget -qO- "$randomarticle" |
  gawk -v IGNORECASE=1 -v RS='</h1' 'RT{gsub(/.*<h1[^>]*>/,"");print;exit}'>randomarticletitle.txt

printf "\n\nShowing title form random article";
randomarticletitle=$(<randomarticletitle.txt)
printf "$randomarticletitle";

hashtag="codetba";

printf "\n\nSample Tweet\n\n";
printf "\n\n$randomarticletitle: $randomarticle $hashtag\n\n";

printf "\n\nSetting Default Twitter Account";
/root/.rbenv/shims/t set active FearbySoftware ####################### 

printf "\n\nSending Tweet";
/root/.rbenv/shims/t update "$randomarticletitle: $randomarticle $hashtag"

printf "\n\nDone\n\n";

Hashtags

I added custom hashtags routine to the tweets body depending on the article url by adding the code below over the hashtag=”codetba” placeholder above.

hashtag="";
case "$randomarticle" in
"https://fearby.com/article/alibaba-cloud-how-good-is-it/")
	hashtag=" #alibaba #cloud";
	;;
"https://fearby.com/article/setting-up-github-on-an-imac-and-creating-a-project/")
	hashtag=" #github";
	;;
"https://fearby.com/article/ubuntu-desktop-os-for-developers/")
	hashtag=" #ubuntu";
	;;
"https://fearby.com/article/connection-not-private/")
	hashtag=" #ssl #cached";
	;;
"https://fearby.com/article/setting-up-a-raspberry-pi-zero-w/")
	hashtag=" #raspberripi";
	;;
"https://fearby.com/article/setting-up-bitbucket-on-an-imac-and-creating-a-project/")
	hashtag=" #bitbuckey #git";
	;;
"https://fearby.com/article/how-to-upgrade-an-aws-free-tier-ec2-t2-micro-instance-to-an-on-demand-t2-medium-server/")
	hashtag=" #aws #ec2";
	;;
"https://fearby.com/article/how_to_develop_software_ideas/")
	hashtag=" #software #devops";
	;;
"https://fearby.com/article/setting-up-a-digital-ocean-droplet-as-a-sub-domain-on-an-aws-domain/")
	hashtag=" #digitalocean #vm";
	;;
"https://fearby.com/article/how-to-get-useful-feedback-for-your-ideas/")
	hashtag=" #feedback";
	;;
"https://fearby.com/article/securing-wordpress/")
	hashtag=" #wordpress #security";
	;;
"https://fearby.com/article/setting-vultr-vm-configuring-runcloud-io/")
	hashtag=" #runcloud";
	;;
"https://fearby.com/article/securing-an-ubuntu-vm-with-a-free-letsencrypt-ssl-certificate-in-1-minute/")
	hashtag=" #ubuntu #runcloud";
	;;
"https://fearby.com/article/using-phpservermonitor-org-check-whether-websites-servers-running/")
	hashtag=" #status #vm";
	;;
"https://fearby.com/article/what-to-look-for-when-buying-a-new-computer/")
	hashtag=" #advice #pc";
	;;
"https://fearby.com/article/share-what-you-know-and-do/")
	hashtag=" #share";
	;;
"https://fearby.com/article/costs-of-running-a-cloud-based-service/")
	hashtag=" #cloud";
	;;
"https://fearby.com/article/raspberry-pi-2b-security-webcam/")
	hashtag=" #raspberypi";
	;;
"https://fearby.com/article/forklift-3-the-ultimate-mac-file-manager-for-mac/")
	hashtag=" #forklift";
	;;
"https://fearby.com/article/nodemcu-introduction-open-source-iot-platform-based-on-the-esp8266-wi-fi-soc/")
	hashtag=" #iot #mac";
	;;
"https://fearby.com/article/developing_robust_distributed_apps_with_the_help_of_little_snitch_firewall_on_osx/")
	hashtag=" #firewall";
	;;
"https://fearby.com/article/digital-disruption-or-digital-tinkering/")
	hashtag=" #innovation";
	;;
"https://fearby.com/article/creating-and-configuring-a-centos-server-on-digital-ocean/")
	hashtag=" #centos #vm";
	;;
"https://fearby.com/article/beyond-ssl-with-content-security-policy-public-key-pinning-etc/")
	hashtag=" #security #ssl";
	;;
"https://fearby.com/article/setting-up-a-fast-distributed-mysql-environment-with-ssl/")
	hashtag=" #ssl #mysql";
	;;
"https://fearby.com/article/connecting-to-an-aws-ec2-ubuntu-instance-with-cloud-9-ide-as-user-ubuntu-and-root/")
	hashtag=" #cloud #ubuntu";
	;;
"https://fearby.com/article/application-scalability-on-a-budget-my-journey/")
	hashtag=" #scalability #cloud";
	;;
"https://fearby.com/article/4-winning-tips-for-online-startups/")
	hashtag=" #startups";
	;;
"https://fearby.com/article/essential-android-antivirus-and-antimalware-apps/")
	hashtag=" #antivitus #android";
	;;
"https://fearby.com/article/quick-guide-to-using-adobe-premiere-pro-cc-to-make-videos/")
	hashtag=" #premierepro";
	;;
"https://fearby.com/article/what-is-you-backup-plan-in-2016/")
	hashtag=" #backup";
	;;
"https://fearby.com/article/analytics-personalization-bigdata-bedtime-stories/")
	hashtag=" #bigdata";
	;;
"https://fearby.com/article/computer-hardware-clock-cycles-and-code-ramblings/")
	hashtag=" #hardware";
	;;
"https://fearby.com/article/listen-to-your-customers-and-act/")
	hashtag=" #listen";
	;;
"https://fearby.com/article/update-openssl-on-a-digital-ocean-vm/")
	hashtag=" #openssl";
	;;
"https://fearby.com/article/how-to-get-started-in-programming/")
	hashtag=" #programming";
	;;
"https://fearby.com/article/innovation-innovation-innovation/")
	hashtag=" #innovation";
	;;
"https://fearby.com/article/how-to-buy-a-new-domain-dedicated-server-from-digital-ocean-and-add-a-ssl-certificate-from-namecheap/")
	hashtag=" #server";
	;;
"https://fearby.com/article/why-choose-a-wordpress-website-over-a-static-html-site-edited-with-dreamweaver/")
	hashtag=" #wordpress";
	;;
"https://fearby.com/article/page-redirects-domain-tracking/")
	hashtag=" #domain";
	;;
"https://fearby.com/article/how-to-setup-and-use-push-notifications-to-modern-web-browsers-with-onesignal/")
	hashtag=" #push";
	;;
"https://fearby.com/article/how-to-build-your-first-cross-platform-mobile-app-with-corona/")
	hashtag=" #corona";
	;;
"https://fearby.com/article/what-is-the-difference-between-a-website-app-web-app-hybrid-app-and-software/")
	hashtag=" #app";
	;;
"https://fearby.com/article/the-quickest-way-to-setup-a-scalable-development-ide-and-web-server/")
	hashtag=" #server";
	;;
"https://fearby.com/article/adding-a-commercial-ssl-certificate-to-a-digital-ocean-vm/")
	hashtag=" #vm";
	;;
"https://fearby.com/article/adding-secure-credit-card-payments-to-your-website/")
	hashtag=" #cc";
	;;
"https://fearby.com/article/how-to-setup-pooled-mysql-connections-in-node-js-that-dont-disconnect/")
	hashtag=" #mysql";
	;;
"https://fearby.com/article/digital-marketing-and-user-engagement-101/")
	hashtag=" #engagement";
	;;
"https://fearby.com/article/developing_software_and_staying_on_track/")
	hashtag=" #software";
	;;
"https://fearby.com/article/caching-mysql-queries-in-memory-for-xx-seconds/")
	hashtag=" #mysql";
	;;
"https://fearby.com/article/creating-an-aws-ec2-ubuntu-14-04-server-with-nginx-node-and-mysql-and-phpmyadmin/")
	hashtag=" #nginx";
	;;
"https://fearby.com/article/nodejs-code-to-handle-app-logins-via-api-using-mysql-connection-pools-1000-connections-and-query-parameters/")
	hashtag=" #mysql";
	;;
"https://fearby.com/article/installing-webmin-server-management-web-gui-onto-ubuntu/")
	hashtag=" #ubuntu";
	;;
"https://fearby.com/article/how-to-transfer-an-existing-website-to-jumba-com-au-uber-com-au/")
	hashtag=" #jumba";
	;;
"https://fearby.com/article/improving-the-speed-of-wordpress/")
	hashtag=" #wordpress";
	;;
"https://fearby.com/article/how-to-boost-your-sites-seo/")
	hashtag=" #seo";
	;;
"https://fearby.com/article/self-service-status-pages/")
	hashtag=" #status";
	;;
"https://fearby.com/article/setting-up-google-analytics-on-your-website/")
	hashtag=" #analytics";
	;;
"https://fearby.com/article/how-to-be-alerted-after-system-boot-on-ubuntu-16-04-with-an-email-via-gmail/")
	hashtag=" #ubuntu";
	;;
"https://fearby.com/article/add-google-adwords-wordpress-blog/")
	hashtag=" #wordpress";
	;;
"https://fearby.com/article/installing-and-managing-wordpress-with-wp-cli-from-the-command-line-on-ubuntu/")
	hashtag=" #cli";
	;;
"https://fearby.com/article/optimize-sites-search-engine-optimization-seo-grow-customers-without-paying-ads/")
	hashtag=" #seo";
	;;
"https://fearby.com/article/installing-redis-4-x-onto-ubuntu-16-04/")
	hashtag=" #ubuntu";
	;;
"https://fearby.com/article/atlaz-io-beta-project-management-tool-for-cross-functional-teams-the-trello-and-atlassianjira-killer/")
	hashtag=" #atlaz";
	;;
"https://fearby.com/article/how-to-backup-an-ubuntu-vm-in-the-cloud-via-crontab-entries-that-trigger-bash-scripts-ssh-rsync-and-email-backup-alerts/")
	hashtag=" #cloud";
	;;
"https://fearby.com/article/how-to-send-email-via-g-suite-from-ubuntu-in-the-cloud/")
	hashtag=" #ubuntu";
	;;
"https://fearby.com/article/deploying-wordpress-to-a-vultr-vm-via-comamnd-line/")
	hashtag=" #wordpress";
	;;
"https://fearby.com/article/moving-wordpress-to-a-new-self-managed-server-away-from-cpanel/")
	hashtag=" #cpanel";
	;;
"https://fearby.com/article/strengths-and-weaknesses/")
	hashtag=" #strengths";
	;;
"https://fearby.com/article/securing-ubuntu-cloud/")
	hashtag=" #cloud";
	;;
"https://fearby.com/article/moving-a-cpanel-domain-with-email-to-a-self-managed-vps-and-gmail/")
	hashtag=" #cpanel";
	;;
"https://fearby.com/article/run-ubuntu-vm-system-audit-lynis/")
	hashtag=" #lynis";
	;;
"https://fearby.com/article/how-to-setup-and-secure-mongodb-on-ubuntu-16-04-and-verify-with-studio3t/")
	hashtag=" #studio3t";
	;;
"https://fearby.com/article/setting-vultr-vm-configuring/")
	hashtag=" #vultr";
	;;
"https://fearby.com/article/useful-linux-termianl-commands/")
	hashtag=" #linux";
	;;
"https://fearby.com/article/how-to-use-sublime-text-editor-locally-to-edit-code-files-on-a-remote-server-via-ssh/")
	hashtag=" #code #ssl";
	;;
"https://fearby.com/article/setup-ruby-rails-gem-and-a-command-line-twitter-tool-to-query-twitter-on-ubuntu-via-a-twitter-app/")
	hashtag=" #twitter #cli";
	;;
"https://fearby.com/article/how-to-setup-a-twitter-feed-api-endpoint-in-nodejs-with-nginx-ruby-t-etc/")
	hashtag=" #twitter";
	;;
*)
    #
    ;;
esac

Automation

This is how I scheduled the auto-tweet in the crontab (every 6 hours (0:00 6:00 12:00 18:00)).

crontab -e
0 */6 * * * /bin/bash /scripts/scripts/tweetrandomblogarticle.sh >> /dev/null 2>&1
crontab: installing new crontab

Pros

  • Automated
  • Does what I want

Cons

  • I have to add new URLs in order to add hashtags

Hope this helps.

Need a server?

Set up a Server on Vultr here for as low as $2.5 a month or set up a Server on Digital Ocean (and get the first 2 months free ($5/m server)). I have a guide on setting up a Vultr server here or Digital Ocean server here.  Don’t forget to add a free LetsEncrypt SSL Certificate and secure the server (read more here and here).

Donate and make this blog better




Ask a question or recommend an article
[contact-form-7 id=”30″ title=”Ask a Question”]

Revision History

v1.1 Revised (24th Sep 2017)

etc

Filed Under: Twitter, Wordpress Tagged With: crontab, hashtag, post, schedule, tweet, wordpress

How to setup a twitter feed API endpoint in NodeJS with NGINX, Ruby and T etc

September 17, 2017 by Simon

This is how I set up a twitter feed API endpoint in NodeJS with NGINX, Ruby and T etc. This can be used to integrate SEO or automate Twitter post analytics or automate posts to twitter.

This guide assumes you have an Ubuntu server, nodejs (nginx) and setup ruby, rails and t twitter command line utility setup.  Also, you will need to have an API setup and working

Ensure your API is configured in NGINX /etc/nginx/sites-available/default

server {
...
	location /api/appname/v1 {
		#rewrite ^/api(.*) /$1 break;
		proxy_set_header X-Real-IP $remote_addr;	
		# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_set_header X-Forwarded-For $remote_addr;
		proxy_http_version  1.1;
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection $connection_upgrade;
		proxy_set_header Proxy "";
		proxy_set_header Host $http_host;
		root /code/nodejs/appname;
		proxy_pass http://appnmaeapi;
	}
	...
}

I set up a placeholder GET routine in my node process that we will be used to communicate with the Twitter command line utility.

app.get('/api/appname/v1/feed/twitter/',function(req,res){
	var data = { "Feed":"" };
	data["Feed"] = "Working v0.1";
	res.json(data);
});

I started 1 instance of the API on a server with pm2 linked to https://keymetrics.io/.

sudo pm2 start /noejs/app01/app.js -i 1 --name "appname"

View API Status with PM2

sudo pm2 status
● Agent Online | Dashboard Access: https://app.keymetrics.io/#/r/######### | Server name:appname-######
┌────────────┬────┬─────────┬──────┬────────┬─────────┬────────┬─────┬───────────┬──────┬──────────┐
│ App name   │ id │ mode    │ pid  │ status │ restart │ uptime │ cpu │ mem       │ user │ watching │
├────────────┼────┼─────────┼──────┼────────┼─────────┼────────┼─────┼───────────┼──────┼──────────┤
│appname │ 0  │ cluster │ 5480 │ online │ 0       │ 87s    │ 0%  │ 35.1 MB   │ apiuser │ disabled │

You can restart the API manually with PM2 by typing

sudo pm2 restart "appname"

I like to use https://paw.cloud/ software to test API’s over say Postman, I can easily see the test placeholder API is working.Node API

The browser works for now but as soon as I add authentication the browser will fail, Paw FTW.

API Test

A simple way to authenticate the API is for the caller to pass a known token when requesting the page via an HTTP POST packet.

app.post('/api/appname/v1/feed/twitter/',function(req,res){
	var data = { "Status":"" };
	var wwxapi = req.headers['x-access-token'];
	var data = { "Feed":"" };
	var errData = "";
	if (wwxapi == undefined) {
		console.log(" 499 token required");
		errData = {"Status": "499", "Error": "valid token required"};
		res.statusCode = 499;
		res.send(errData);
		res.end();
	} else {
		var xpikeypass = false;
		// Check the API Key against known API Keys
		if (wwxapi == "appname-##############################") { xpikeypass = true;} // Debug API Key
		if (xpikeypass == true) {
			//  app request validated

			data["Feed"] = "Twitter Feed API Working v0.2";
			res.json(data);

		} else {
			console.log("499 token required");
			errData = {"Status": "499", "Error": "valid token required"};
			res.statusCode = 409;
			res.send(errData);	
			res.end();
		}
	}
});

Don’t forget to restart the API after changes

sudo pm2 restart "appname"

Now we can change the API endpoint to a POST (instead of GET) and paste the code above and test it.  If we pass an invalid “x-access-token” value the API will return error 409 as designed.

API Auth

Passing the right “x-access-token” will return data (200 OK).

API Working

Now we can link the Twitter command line utility with the NodeJS API.

app.post('/api/appname/v1/feed/twitter/',function(req,res){
	var data = { "Status":"" };
	var wwxapi = req.headers['x-access-token'];
	var data = { "Feed":"" };
	var errData = "";
	if (wwxapi == undefined) {
		console.log(" 499 token required");
		errData = {"Status": "499", "Error": "valid token required"};
		res.statusCode = 499;
		res.send(errData);
		res.end();
	} else {
		var xpikeypass = false;
		// Check the API Key against known API Keys
		if (wwxapi == "appname-##############################") { xpikeypass = true;} // Debug API Key
		if (xpikeypass == true) {
			//  app request validated

			var result = require('child_process').execSync('/theuserwithrubyinstalled/.rbenv/shims/t search all "lang:en nodejs" --csv').toString();
			data["Feed"] = result;

			res.json(data);

		} else {
			console.log("499 token required");
			errData = {"Status": "499", "Error": "valid token required"};
			res.statusCode = 409;
			res.send(errData);	
			res.end();
		}
	}
});

Now we can test the NodeJS API and have is spawn a subprocess and hit Twitter. In this case, we are finding the latest posts on Twitter with NodeJS in them.

Works a treat 🙂

Up next 

  • Schedule getting data from the Twitter command line utility in crontab and save to Redis
  • Process the CSV and save new Twitter changes to Redis
  • Query Redis and send returned data back to the API.
  • Change the API to read from Redis in NodeJ.S
  • Secure.

Donate and make this blog better




Ask a question or recommend an article
[contact-form-7 id=”30″ title=”Ask a Question”]

v1.2 Works

Filed Under: NGINX, NodeJS, Ruby, Twitter Tagged With: nginx, Node, query, ruby, T, twitter

Setup Ruby, Rails, Gem and a command line twitter tool to query Twitter on Ubuntu 16.04 via a Twitter App

September 17, 2017 by Simon

Below is how I setup Ruby, Rails, Gem and a command-line twitter tool to query Twitter on Ubuntu 16.04 via a Twitter App

Setup Twitter feed scraping on Ubuntu 16.04

At first, I had no network (I could not ping, run a system update or install packages (even though I had opened the firewall ports and disabled the firewall temporarily)? I fixed this by editing /etc/resolv.conf and added a google DNS entry.

sudo nano /etc/resolv.conf

Added the Google DNS server.

nameserver 8.8.8.8

Bingo, I can now ping and update my system.

Setup Ruby and Pre-Requisites

sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL
rbenv install 2.4.1
rbenv global 2.4.1

If ruby 2.4.1 fails o install try and install the older ruby 2.2.1

Error

rbenv install 2.4.1
Downloading ruby-2.4.1.tar.bz2...
-> https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.1.tar.bz2
Installing ruby-2.4.1...

BUILD FAILED (Ubuntu 16.04 using ruby-build 20170914-2-ge40cd1f)
...

Optional Troubleshooting: Install Ruby 2.2.1 (if 2.4.1 fails to install)

rbenv install 2.2.1
rbenv global 2.2.1

Optional Troubleshooting: Ruby 2.2.1 is no longer recommended

rbenv install 2.2.1
Downloading ruby-2.2.1.tar.bz2...
-> https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.1.tar.bz2
Installing ruby-2.2.1...

WARNING: ruby-2.2.1 is nearing its end of life.
It only receives critical security updates, no bug fixes.
...

Or

Optional Install: Ruby 2.4.0

mkdir ~/.rbenv/cache
# download manually ruby file
wget https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.0.tar.bz2
# move file
mv ruby-2.4.0.tar.bz2 ~/.rbenv/cache
# do the install
rbenv install 2.4.0

Hopefully, Ruby is now installed

ruby -v
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]

Install Bundler Gem

gem install bundler

Install Rails

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -

I skipped the Install (as I had node installed).

node -v
v6.11.3

Continue with rails install

gem install rails -v 5.1.3
rbenv rehash

Rails is installed

rails -v
Rails 5.1.3

Install the t gem (read more at the https://github.com/sferik/t GitHub repository)

gem install t

You can now authorize the t gem to use your twitter.

t authorize
Welcome! Before you can use t, you'll first need to register an
application with Twitter. Just follow the steps below:
  1. Sign in to the Twitter Application Management site and click
     "Create New App".
  2. Complete the required fields and submit the form.
     Note: Your application must have a unique name.
  3. Go to the Permissions tab of your application, and change the
     Access setting to "Read, Write and Access direct messages".
  4. Go to the Keys and Access Tokens tab to view the consumer key
     and secret which you'll need to copy and paste below when
     prompted.

But first let’s create a twitter app.

Goto https://apps.twitter.com/, login and create an app.

Twitter App

Twitter will provide app details when you create the app.

Created Twitter App

Go to Permissions and set “Read, Write and Access direct messages” and save changes.

Twitter App Permissions

Linking the Twitter app to t Gem

Now that the Twitter app is created let’s activate and link it to the t gem,

Run the following command to start the authorization process.

t authorize

The authorization process is dead simple, just follow the on-screen prompts.

Welcome! Before you can use t, you'll first need to register an
application with Twitter. Just follow the steps below:
  1. Sign in to the Twitter Application Management site and click
     "Create New App".
  2. Complete the required fields and submit the form.
     Note: Your application must have a unique name.
  3. Go to the Permissions tab of your application, and change the
     Access setting to "Read, Write and Access direct messages".
  4. Go to the Keys and Access Tokens tab to view the consumer key
     and secret which you'll need to copy and paste below when
     prompted.

Press [Enter] to open the Twitter Developer site.

Open: https://apps.twitter.com
Enter your API key: ########################
Enter your API secret: ################################################

In a moment, you will be directed to the Twitter app authorization page.
Perform the following steps to complete the authorization process:
  1. Sign in to Twitter.
  2. Press "Authorize app".
  3. Copy and paste the supplied PIN below when prompted.

Press [Enter] to open the Twitter app authorization page.

Open: https://api.twitter.com/oauth/authorize?oauth_callback=oob&oauth_consumer_key=################################################&oauth_signature=################################################&oauth_signature_method=HMAC-SHA1&oauth_timestamp=123456789&oauth_token=########################&oauth_version=1.0
Enter the supplied PIN: ######
Authorization successful.

This was easy.

fyi: Authorization (Twitter authorize app screenshot)

Authorize Twitter

fyi: Authorization (Twitter authorize app pin screenshot)

Auhorize Pin

Using T

T Help

t help
Commands:
  t accounts                          # List accounts
  t authorize                         # Allows an application to request user authorization
  t block USER [USER...]              # Block users.
  t delete SUBCOMMAND ...ARGS         # Delete Tweets, Direct Messages, etc.
  t direct_messages                   # Returns the 20 most recent Direct Messages sent to you.
  t direct_messages_sent              # Returns the 20 most recent Direct Messages you've sent.
  t dm USER MESSAGE                   # Sends that person a Direct Message.
  t does_contain [USER/]LIST USER     # Find out whether a list contains a user.
  t does_follow USER [USER]           # Find out whether one user follows another.
  t favorite TWEET_ID [TWEET_ID...]   # Marks Tweets as favorites.
  t favorites [USER]                  # Returns the 20 most recent Tweets you favorited.
  t follow USER [USER...]             # Allows you to start following users.
  t followers [USER]                  # Returns a list of the people who follow you on Twitter.
  t followings [USER]                 # Returns a list of the people you follow on Twitter.
  t followings_following USER [USER]  # Displays your friends who follow the specified user.
  t friends [USER]                    # Returns the list of people who you follow and follow you back.
  t groupies [USER]                   # Returns the list of people who follow you but you don't follow back.
  t help [COMMAND]                    # Describe available commands or one specific command
  t intersection USER [USER...]       # Displays the intersection of users followed by the specified users.
  t leaders [USER]                    # Returns the list of people who you follow but don't follow you back.
  t list SUBCOMMAND ...ARGS           # Do various things with lists.
  t lists [USER]                      # Returns the lists created by a user.
  t matrix                            # Unfortunately, no one can be told what the Matrix is. You have to see it for y...
  t mentions                          # Returns the 20 most recent Tweets mentioning you.
  t mute USER [USER...]               # Mute users.
  t muted [USER]                      # Returns a list of the people you have muted on Twitter.
  t open USER                         # Opens that user's profile in a web browser.
  t reach TWEET_ID                    # Shows the maximum number of people who may have seen the specified tweet in th...
  t reply TWEET_ID [MESSAGE]          # Post your Tweet as a reply directed at another person.
  t report_spam USER [USER...]        # Report users for spam.
  t retweet TWEET_ID [TWEET_ID...]    # Sends Tweets to your followers.
  t retweets [USER]                   # Returns the 20 most recent Retweets by a user.
  t retweets_of_me                    # Returns the 20 most recent Tweets of the authenticated user that have been ret...
  t ruler                             # Prints a 140-character ruler
  t search SUBCOMMAND ...ARGS         # Search through Tweets.
  t set SUBCOMMAND ...ARGS            # Change various account settings.
  t status TWEET_ID                   # Retrieves detailed information about a Tweet.
  t stream SUBCOMMAND ...ARGS         # Commands for streaming Tweets.
  t timeline [USER]                   # Returns the 20 most recent Tweets posted by a user.
  t trend_locations                   # Returns the locations for which Twitter has trending topic information.
  t trends [WOEID]                    # Returns the top 50 trending topics.
  t unfollow USER [USER...]           # Allows you to stop following users.
  t update [MESSAGE]                  # Post a Tweet.
  t users USER [USER...]              # Returns a list of users you specify.
  t version                           # Show version.
  t whoami                            # Retrieves profile information for the authenticated user.
  t whois USER                        # Retrieves profile information for the user.

Options:
  -C, [--color=COLOR]   # Control how color is used in output
                        # Default: auto
                        # Possible values: icon, auto, never
  -P, [--profile=FILE]  # Path to RC file
                        # Default: /root/.trc

Show linked twitter accounts with t

t accounts
yourappnamehere
  ###################### (active)

Show authorized twitter accounts

t set active yourtwitterappnamehere ########################
Active account has been updated to yourtwitterappnamehere.

Using t to query a Twitter user

t whois @fearbysoftware
ID           1468627891
Since        May 30  2013 (4 years ago)
Last update  Editing remote files locally with sublime text editor over ssh https://t.co/k5qSnHmUrP #VoteYes (7 hours ago)
Screen name  @FearbySoftware
Name         Simon Fearby
Tweets       4,797
Favorites    940
Listed       88
Following    1,933
Followers    616
Bio          Developing augmented reality mobile apps, websites, ardrino and raspberry pi code/circuits etc. Tweets are my own not my employer. Blog at https://t.co/Azo81pi8Yt
Location     Tamworth NSW, Australia
URL          http://www.fearby.com

Search Twitter for “fearby”

t search all "lang:en fearby"

Output:

t search all "lang:en fearby"

@FearbySoftware
@troyhunt Google AdWords have worked for me https://t.co/KGZAd0sWkG

@FearbySoftware
Blogged setting up my own Ubuntu server to replace Cpanel for $2.5 a month https://t.co/GZCIMesaqJ

@FearbySoftware
Blogged Securing an Ubuntu VM with a free LetsEncrypt SSL certificate in 1 Minute https://t.co/QWiyR2I9ur

@MedinaSports
JV boys ⚽️ tied Roy-Hart 1-1. AJ Seefeldt scored the lone goal w/ 20' left in regulation. Zach Fike & Cooper Fearby
made great saves in goal

@FearbySoftware
Today's SEO experiment : Not pimping blog posts results in half the user hits and impressions. https://t.co/Q9eCoUZy9n

@FearbySoftware
@0xDUDE any advice on security my MongoDB more? Need whitlist IP, use the non standard port and have usr/pwd
https://t.co/5TEDz8LCJo

@FearbySoftware
Creating and configuring a CentOS server on Digital Ocean https://t.co/aI3FYKSFQC

@FearbySoftware
Self Service Status Pages https://t.co/F6ZjN2sdfM

@FearbySoftware
Alibaba Cloud how good is it? https://t.co/YbuWgvyDz8

@breakingnewsng_
IGBONLA SIX: Four of freed students resume studies - …Say there’s nothing to fearBy Monsuru Olowoopejolagos—Two...
https://t.co/sosKnSpT3h

@AFairymary
RT @AFairymary: Congratulations to William Fearby, Author of the Month. https://t.co/jtP0Sn0QCl

@FearbySoftware
I guess I need to get an #iPhoneX to develop apps on an post updates to my free dev blog https://t.co/9x5TFARLCt
#apple #iOS11 #AppleEvent

@fearby_nick
RT @ndonnelly88_: @NJDevils How many retweets for free season tickets?

@PrincessMutanu
RT @CBooksFree: $0.99—Imagine Your Life Without Fear—by Max Lucado https://t.co/pUVi2wWM1J https://t.co/7YakQTjzZf

@corund
RT @FearbySoftware: Securing an Ubuntu VM with a free LetsEncrypt SSL certificate in 1 Minute https://t.co/QWiyR2I9ur
#free #SSL #website #wordpress #nodejs
...

Search Twitter for “fearby” (max 10) and output at CSV

t search all "lang:en fearby" --csv

See more commands here: https://github.com/sferik/t

This is great, I can interact with Twitter from the command line and apps without having to go full REST API and OAUTH development.

Calling T from NodeJS

Read the guide here on calling T from NodeJS.

Calling T from php (Under construction)

Coming soon (this PHP section is under development)

You may need to exclude “pcntl_exec” from being blocked in “php.ini” under “disable_functions”

find your php.ini by typing

find / -iname "php.ini"

Restart php

sudo service php7.0-fpm restart
php7.0-fpm stop/waiting
php7.0-fpm start/running, process #####
[email protected]:/www# service php7.0-fpm status
php7.0-fpm start/running, process #####

This section is under development,

Todo: Security.

Need a server?

Set up a Server on Vultr here for as low as $2.5 a month or set up a Server on Digital Ocean (and get the first 2 months free ($5/m server)). I have a guide on setting up a Vultr server here or Digital Ocean server here.  Don’t forget to add a free LetsEncrypt SSL Certificate and secure the server (read more here and here).

Still here, read more articles here or use the form below to ask a question or recommend an article.

Donate and make this blog better




Ask a question or recommend an article
[contact-form-7 id=”30″ title=”Ask a Question”]

Version History

v1.3.2 added Ruby 2.2.0 install info (29th Sep 2017)

v1.3.1 added Ruby 2.2.1 install info (27th Sep 2017)

v1.3 Querying T in NodeJS

Filed Under: Cloud, Firewall, Twitter, Website Tagged With: command line, gem, rails, ruy

Securing Ubuntu in the cloud

August 9, 2017 by Simon

It is easy to deploy servers to the cloud within a few minutes, you can have a cloud-based server that you (or others can use). ubuntu has a great guide on setting up basic security issues but what do you need to do.

If you do not secure your server expects it to be hacked into. Below are tips on securing your cloud server.

First, read more on scanning your server with Lynis security scan.

Always use up to date software

Always use update software, malicious users can detect what software you use with sites like shodan.io (or use port scan tools) and then look for weaknesses from well-published lists (e.g WordPress, Windows, MySQL, node, LifeRay, Oracle etc). People can even use Google to search for login pages or sites with passwords in HTML (yes that simple).  Once a system is identified by a malicious user they can send automated bots to break into your site (trying millions of passwords a day) or use tools to bypass existing defences (Security researcher Troy Hunt found out it’s child’s play).

Portscan sites like https://mxtoolbox.com/SuperTool.aspx?action=scan are good for knowing what you have exposed.

You can also use local programs like nmap to view open ports

Instal nmap

sudo apt-get install nmap

Find open ports

nmap -v -sT localhost

Starting Nmap 7.01 ( https://nmap.org ) at 2017-08-08 23:57 AEST
Initiating Connect Scan at 23:57
Scanning localhost (127.0.0.1) [1000 ports]
Discovered open port 80/tcp on 127.0.0.1
Discovered open port 3306/tcp on 127.0.0.1
Discovered open port 22/tcp on 127.0.0.1
Discovered open port 9101/tcp on 127.0.0.1
Discovered open port 9102/tcp on 127.0.0.1
Discovered open port 9103/tcp on 127.0.0.1
Completed Connect Scan at 23:57, 0.05s elapsed (1000 total ports)
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00020s latency).
Not shown: 994 closed ports
PORT     STATE SERVICE
22/tcp   open  ssh
80/tcp   open  http
3306/tcp open  mysql
9101/tcp open  jetdirect
9102/tcp open  jetdirect
9103/tcp open  jetdirect

Read data files from: /usr/bin/../share/nmap
Nmap done: 1 IP address (1 host up) scanned in 0.17 seconds
           Raw packets sent: 0 (0B) | Rcvd: 0 (0B)

Limit ssh connections

Read more here.

Use ufw to set limits on login attempts

sudo ufw limit ssh comment 'Rate limit hit for openssh server'

Only allow known IP’s access to your valuable ports

sudo ufw allow from 123.123.123.123/32 to any port 22

Delete unwanted firewall rules

sudo ufw status numbered
sudo ufw delete 8

Only allow known IP’s to certain ports

sudo ufw allow from 123.123.123.123 to any port 80/tcp

Also, set outgoing traffic to known active servers and ports

sudo ufw allow out from 123.123.123.123 to any port 22

Don’t use weak/common Diffie-Hellman key for SSL certificates, more information here.

openssl req -new -newkey rsa:4096 -nodes -keyout server.key -out server.csr
 
Generating a 4096 bit RSA private key
...

More info on generating SSL certs here and setting here and setting up Public Key Pinning here.

Intrusion Prevention Software

Do run fail2ban: Guide here https://www.linode.com/docs/security/using-fail2ban-for-security

I use iThemes Security to secure my WordPress and block repeat failed logins from certain IP addresses.

iThemes Security can even lock down your WordPress.

You can set iThemes to auto lock out users on x failed logins

Remember to use allowed whitelists though (it is so easy to lock yourself out of servers).

Passwords

Do have strong passwords and change the root password provided by the hosts. https://howsecureismypassword.net/ is a good site to see how strong your password is from brute force password attempts. https://www.grc.com/passwords.htm is a good site to obtain a strong password.  Do follow Troy Hunt’s blog and twitter account to keep up to date with security issues.

Configure a Firewall Basics

You should install a firewall on your Ubuntu and configure it and also configure a firewall with your hosts (e.g AWS, Vultr, Digital Ocean).

Configure a Firewall on AWS

My AWS server setup guide here. AWS allow you to configure the firewall here in the Amazon Console.

Type Protocol Port Range Source Comment
HTTP TCP 80 0.0.0.0/0 Opens a web server port for later
All ICMP ALL N/A 0.0.0.0/0 Allows you to ping
All traffic ALL All 0.0.0.0/0 Not advisable long term but OK for testing today.
SSH TCP 22 0.0.0.0/0 Not advisable, try and limit this to known IP’s only.
HTTPS TCP 443 0.0.0.0/0 Opens a secure web server port for later

Configure a Firewall on Digital Ocean

Configuring a firewall on Digital Ocean (create a $5/m server here).  You can configure your Digital Ocean droplet firewall by clicking Droplet, Networking then Manage Firewall after logging into Digital Ocean.

Configure a Firewall on Vultr

Configuring a firewall on Vultr (create a $2.5/m server here).

Don’t forget to set IP rules for IPV4 and IPV6, Only set the post you need to allow and ensure applications have strong passwords.

Ubuntu has a firewall built in (documentation).

sudo ufw status

Enable the firewall

sudo ufw enable

Adding common ports

sudo ufw allow ssh/tcp
sudo ufw logging on
sudo ufw allow 22
sudo ufw allow 80
sudo ufw allow 53
sudo ufw allow 443
sudo ufw allow 873
sudo ufw enable
sudo ufw status
sudo ufw allow http
sudo ufw allow https

Add a whitelist for your IP (use http://icanhazip.com/ to get your IP) to ensure you won’t get kicked out of your server.

sudo ufw allow from 123.123.123.123/24 to any port 22

More help here.  Here is a  good guide on ufw commands. Info on port numbers here.

https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers

If you don’t have a  Digital Ocean server for $5 a month click here and if a $2.5 a month Vultr server here.

Backups

rsync is a good way to copy files to another server or use Bacula

sudo apt install bacula

Basics

Initial server setup guide (Digital Ocean).

Sudo (admin user)

Read this guide on the Linux sudo command (the equivalent if run as administrator on Windows).

Users

List users on an Ubuntu OS (or compgen -u)

cut -d: -f1 /etc/passwd

Common output

cut -d: -f1 /etc/passwd
root
daemon
bin
sys
sync
games
man
lp
mail
news
uucp
proxy
www-data
backup
list
irc
gnats
nobody
systemd-timesync
systemd-network
systemd-resolve
systemd-bus-proxy
syslog
_apt
lxd
messagebus
uuidd
dnsmasq
sshd
pollinate
ntp
mysql
clamav

Add User

sudo adduser new_username

e.g

sudo adduser bob
Adding user `bob' ...
Adding new group `bob' (1000) ...
Adding new user `bob' (1000) with group `bob' ...
Creating home directory `/home/bob' ...
etc..

Add user to a group

sudo usermod -a -G MyGroup bob

Show users in a group

getent group MyGroup | awk -F: '{print $4}'

This will show users in a group

Remove a user

sudo userdel username
sudo rm -r /home/username

Rename user

usermod -l new_username old_username

Change user password

sudo passwd username

Groups

Show all groups

compgen -ug

Common output

compgen -g
root
daemon
bin
sys
adm
tty
disk
lp
mail
proxy
sudo
www-data
backup
irc
etc

You can create your own groups but first, you must be aware of group ids

cat /etc/group

Then you can see your systems groups and ids.

Create a group

groupadd -g 999 MyGroup

Permissions

Read this https://help.ubuntu.com/community/FilePermissions

How to list users on Ubuntu.

Read more on setting permissions here.

Chmod help can be found here.

Install Fail2Ban

I used this guide on installing Fail2Ban.

apt-get install fail2ban

Check Fail2Ban often and add blocks to the firewall of known bad IPs

fail2ban-client status

Best practices

Ubuntu has a guide on basic security setup here.

Startup Processes

It is a good idea to review startup processes from time to time.

sudo apt-get install rcconf
sudo rcconf

Accounts

  • Read up on the concept of least privilege access for apps and services here.
  • Read up on chmod permissions.

Updates

Do update your operating system often.

sudo apt-get update
sudo apt-get upgrade

Minimal software

Only install what software you need

Exploits and Keeping up to date

Do keep up to date with exploits and vulnerabilities

  • Follow 0xDUDE on twitter.
  • Read the GDI.Foundation page.
  • Visit the Exploit Database
  • Vulnerability & Exploit Database
  • Subscribe to the Security Now podcast.

Secure your applications

  • NodeJS: Enable logging in applications you install or develop.

Ban repeat Login attempts with FailBan

Fail2Ban config

sudo nano /etc/fail2ban/jail.conf
[sshd]

enabled  = true
port     = ssh
filter   = sshd
logpath  = /var/log/auth.log
maxretry = 3

Hosts File Hardening

sudo nano /etc/host.conf

Add

order bind,hosts
nospoof on

Add a whitelist with your ip on /etc/fail2ban/jail.conf (see this)

[DEFAULT]
# "ignoreip" can be an IP address, a CIDR mask or a DNS host. Fail2ban will not                          
# ban a host which matches an address in this list. Several addresses can be                             
# defined using space separator.
                                                                         
ignoreip = 127.0.0.1 192.168.1.0/24 8.8.8.8

Restart the service

sudo service fail2ban restart
sudo service fail2ban status

Intrusion detection (logging) systems

Tripwire will not block or prevent intrusions but it will log and give you a heads up with risks and things of concern

Install Tripwire.

sudo apt-get install tiger tripwire

Running Tripwire

sudo tiger

This will scan your system for issues of note

sudo tiger
Tiger UN*X security checking system
   Developed by Texas A&M University, 1994
   Updated by the Advanced Research Corporation, 1999-2002
   Further updated by Javier Fernandez-Sanguino, 2001-2015
   Contributions by Francisco Manuel Garcia Claramonte, 2009-2010
   Covered by the GNU General Public License (GPL)

Configuring...

Will try to check using config for 'x86_64' running Linux 4.4.0-89-generic...
--CONFIG-- [con005c] Using configuration files for Linux 4.4.0-89-generic. Using
           configuration files for generic Linux 4.
Tiger security scripts *** 3.2.3, 2008.09.10.09.30 ***
20:42> Beginning security report for simon.
20:42> Starting file systems scans in background...
20:42> Checking password files...
20:42> Checking group files...
20:42> Checking user accounts...
20:42> Checking .rhosts files...
20:42> Checking .netrc files...
20:42> Checking ttytab, securetty, and login configuration files...
20:42> Checking PATH settings...
20:42> Checking anonymous ftp setup...
20:42> Checking mail aliases...
20:42> Checking cron entries...
20:42> Checking 'services' configuration...
20:42> Checking NFS export entries...
20:42> Checking permissions and ownership of system files...
--CONFIG-- [con010c] Filesystem 'fuse.lxcfs' used by 'lxcfs' is not recognised as a valid filesystem
20:42> Checking for indications of break-in...
--CONFIG-- [con010c] Filesystem 'fuse.lxcfs' used by 'lxcfs' is not recognised as a valid filesystem
20:42> Performing rootkit checks...
20:42> Performing system specific checks...
20:46> Performing root directory checks...
20:46> Checking for secure backup devices...
20:46> Checking for the presence of log files...
20:46> Checking for the setting of user's umask...
20:46> Checking for listening processes...
20:46> Checking SSHD's configuration...
20:46> Checking the printers control file...
20:46> Checking ftpusers configuration...
20:46> Checking NTP configuration...
20:46> Waiting for filesystems scans to complete...
20:46> Filesystems scans completed...
20:46> Performing check of embedded pathnames...
20:47> Security report completed for simon.
Security report is in `/var/log/tiger/security.report.simon.170809-20:42'.

My Output.

sudo nano /var/log/tiger/security.report.username.170809-18:42

Security scripts *** 3.2.3, 2008.09.10.09.30 ***
Wed Aug  9 18:42:24 AEST 2017
20:42> Beginning security report for username (x86_64 Linux 4.4.0-89-generic).

# Performing check of passwd files...
# Checking entries from /etc/passwd.
--WARN-- [pass014w] Login (bob) is disabled, but has a valid shell.
--WARN-- [pass014w] Login (root) is disabled, but has a valid shell.
--WARN-- [pass015w] Login ID sync does not have a valid shell (/bin/sync).
--WARN-- [pass012w] Home directory /nonexistent exists multiple times (3) in
         /etc/passwd.
--WARN-- [pass012w] Home directory /run/systemd exists multiple times (2) in
         /etc/passwd.
--WARN-- [pass006w] Integrity of password files questionable (/usr/sbin/pwck
         -r).

# Performing check of group files...

# Performing check of user accounts...
# Checking accounts from /etc/passwd.
--WARN-- [acc021w] Login ID dnsmasq appears to be a dormant account.
--WARN-- [acc022w] Login ID nobody home directory (/nonexistent) is not
         accessible.

# Performing check of /etc/hosts.equiv and .rhosts files...

# Checking accounts from /etc/passwd...

# Performing check of .netrc files...

# Checking accounts from /etc/passwd...

# Performing common access checks for root (in /etc/default/login, /securetty, and /etc/ttytab...
--WARN-- [root001w] Remote root login allowed in /etc/ssh/sshd_config

# Performing check of PATH components...
--WARN-- [path009w] /etc/profile does not export an initial setting for PATH.
# Only checking user 'root'

# Performing check of anonymous FTP...

# Performing checks of mail aliases...
# Checking aliases from /etc/aliases.

# Performing check of `cron' entries...
--WARN-- [cron005w] Use of cron is not restricted

# Performing check of 'services' ...
# Checking services from /etc/services.
--WARN-- [inet003w] The port for service ssmtp is also assigned to service
         urd.
--WARN-- [inet003w] The port for service pipe-server is also assigned to
         service search.

# Performing NFS exports check...

# Performing check of system file permissions...
--ALERT-- [perm023a] /bin/su is setuid to `root'.
--ALERT-- [perm023a] /usr/bin/at is setuid to `daemon'.
--ALERT-- [perm024a] /usr/bin/at is setgid to `daemon'.
--WARN-- [perm001w] The owner of /usr/bin/at should be root (owned by daemon).
--WARN-- [perm002w] The group owner of /usr/bin/at should be root.
--ALERT-- [perm023a] /usr/bin/passwd is setuid to `root'.
--ALERT-- [perm024a] /usr/bin/wall is setgid to `tty'.

# Checking for known intrusion signs...
# Testing for promiscuous interfaces with /bin/ip
# Testing for backdoors in inetd.conf

# Performing check of files in system mail spool...

# Performing check for rookits...
# Running chkrootkit (/usr/sbin/chkrootkit) to perform further checks...
--WARN-- [rootkit004w] Chkrootkit has detected a possible rootkit installation
Possible Linux/Ebury - Operation Windigo installetd

# Performing system specific checks...
# Performing checks for Linux/4...

# Checking boot loader file permissions...
--WARN-- [boot02] The configuration file /boot/grub/menu.lst has group
         permissions. Should be 0600
--FAIL-- [boot02] The configuration file /boot/grub/menu.lst has world
         permissions. Should be 0600
--WARN-- [boot06] The Grub bootloader does not have a password configured.

# Checking for vulnerabilities in inittab configuration...

# Checking for correct umask settings for init scripts...
--WARN-- [misc021w] There are no umask entries in /etc/init.d/rcS

# Checking Logins not used on the system ...

# Checking network configuration
--FAIL-- [lin013f] The system is not protected against Syn flooding attacks
--WARN-- [lin017w] The system is not configured to log suspicious (martian)
         packets

# Verifying system specific password checks...

# Checking OS release...
--WARN-- [osv004w] Unreleased Debian GNU/Linux version `stretch/sid'

# Checking installed packages vs Debian Security Advisories...

# Checking md5sums of installed files

# Checking installed files against packages...
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.dep' does not
         belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.alias.bin' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.devname' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.softdep' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.alias' does not
         belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.symbols.bin'
         does not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.builtin.bin'
         does not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.symbols' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-87-generic/modules.dep.bin' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.dep' does not
         belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.alias.bin' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.devname' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.softdep' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.alias' does not
         belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.symbols.bin'
         does not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.builtin.bin'
         does not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.symbols' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/modules/4.4.0-89-generic/modules.dep.bin' does
         not belong to any package.
--WARN-- [lin001w] File `/lib/udev/hwdb.bin' does not belong to any package.

# Performing check of root directory...

# Checking device permissions...
--WARN-- [dev003w] The directory /dev/block resides in a device directory.
--WARN-- [dev003w] The directory /dev/char resides in a device directory.
--WARN-- [dev003w] The directory /dev/cpu resides in a device directory.
--FAIL-- [dev002f] /dev/fuse has world permissions
--WARN-- [dev003w] The directory /dev/hugepages resides in a device directory.
--FAIL-- [dev002f] /dev/kmsg has world permissions
--WARN-- [dev003w] The directory /dev/lightnvm resides in a device directory.
--WARN-- [dev003w] The directory /dev/mqueue resides in a device directory.
--FAIL-- [dev002f] /dev/rfkill has world permissions
--WARN-- [dev003w] The directory /dev/vfio resides in a device directory.

# Checking for existence of log files...
--FAIL-- [logf005f] Log file /var/log/btmp permission should be 660
--FAIL-- [logf007f] Log file /var/log/messages does not exist

# Checking for correct umask settings for user login shells...
--WARN-- [misc021w] There is no umask definition for the dash shell
--WARN-- [misc021w] There is no umask definition for the bash shell

# Checking symbolic links...

# Performing check of embedded pathnames...
20:47> Security report completed for username.

More on Tripwire here.

Hardening PHP

Hardening PHP config (and backing the PHP config it up), first create an info.php file in your website root folder with this info

<?php
phpinfo()
?>

Now look for what PHP file is loadingPHP Config

Back that your PHP config file

TIP: Delete the file with phpinfo() in it as it is a security risk to leave it there.

TIP: Read the OWASP cheat sheet on using PHP securely here and securing php.ini here.

Some common security changes

file_uploads = On
expose_php = Off
error_reporting = E_ALL
display_errors          = Off
display_startup_errors  = Off
log_errors              = On
error_log = /php_errors.log
ignore_repeated_errors  = Off

Don’t forget to review logs, more config changes here.

Antivirus

Yes, it is a good idea to run antivirus in Ubuntu, here is a good list of antivirus software

I am installing ClamAV as it can be installed on the command line and is open source.

sudo apt-get install clamav

ClamAV help here.

Scan a folder

sudo clamscan --max-filesize=3999M --max-scansize=3999M --exclude-dir=/www/* -i -r /

Setup auto-update antivirus definitions

sudo dpkg-reconfigure clamav-freshclam

I set auto updates 24 times a day (every hour) via daemon updates.

tip: Download manual antivirus update definitions. If you only have a 512MB server your update may fail and you may want to stop fresh claim/php/nginx and mysql before you update to ensure the antivirus definitions update. You can move this to a con job and set this to update at set times over daemon to ensure updates happen.

sudo /etc/init.d/clamav-freshclam stop

sudo service php7.0-fpm stop
sudo /etc/init.d/nginx stop
sudo /etc/init.d/mysql stop

sudo freshclam -v
Current working dir is /var/lib/clamav
Max retries == 5
ClamAV update process started at Tue Aug  8 22:22:02 2017
Using IPv6 aware code
Querying current.cvd.clamav.net
TTL: 1152
Software version from DNS: 0.99.2
Retrieving http://db.au.clamav.net/main.cvd
Trying to download http://db.au.clamav.net/main.cvd (IP: 193.1.193.64)
Downloading main.cvd [100%]
Loading signatures from main.cvd
Properly loaded 4566249 signatures from new main.cvd
main.cvd updated (version: 58, sigs: 4566249, f-level: 60, builder: sigmgr)
Querying main.58.82.1.0.C101C140.ping.clamav.net
Retrieving http://db.au.clamav.net/daily.cvd
Trying to download http://db.au.clamav.net/daily.cvd (IP: 193.1.193.64)
Downloading daily.cvd [100%]
Loading signatures from daily.cvd
Properly loaded 1742284 signatures from new daily.cvd
daily.cvd updated (version: 23644, sigs: 1742284, f-level: 63, builder: neo)
Querying daily.23644.82.1.0.C101C140.ping.clamav.net
Retrieving http://db.au.clamav.net/bytecode.cvd
Trying to download http://db.au.clamav.net/bytecode.cvd (IP: 193.1.193.64)
Downloading bytecode.cvd [100%]
Loading signatures from bytecode.cvd
Properly loaded 66 signatures from new bytecode.cvd
bytecode.cvd updated (version: 308, sigs: 66, f-level: 63, builder: anvilleg)
Querying bytecode.308.82.1.0.C101C140.ping.clamav.net
Database updated (6308599 signatures) from db.au.clamav.net (IP: 193.1.193.64)

sudo service php7.0-fpm restart
sudo /etc/init.d/nginx restart
sudo /etc/init.d/mysql restart 

sudo /etc/init.d/clamav-freshclam start

Manual scan with a bash script

Create a bash script

mkdir /script
sudo nano /scripts/updateandscanav.sh

# Include contents below.
# Save and quit

chmod +X /scripts/updateandscanav.sh

Bash script contents to update antivirus definitions.

sudo /etc/init.d/clamav-freshclam stop

sudo service php7.0-fpm stop
sudo /etc/init.d/nginx stop
sudo /etc/init.d/mysql stop

sudo freshclam -v

sudo service php7.0-fpm restart
sudo /etc/init.d/nginx restart
sudo /etc/init.d/mysql restart

sudo /etc/init.d/clamav-freshclam start

sudo clamscan --max-filesize=3999M --max-scansize=3999M -v -r /

Edit the crontab to run the script every hour

crontab -e
1 * * * * /bin/bash /scripts/updateandscanav.sh > /dev/null 2>&1

Uninstalling Clam AV

You may need to uninstall Clamav if you don’t have a lot of memory or find updates are too big.

sudo apt-get remove --auto-remove clamav
sudo apt-get purge --auto-remove clamav

Setup Unattended Ubuntu Security updates

sudo apt-get install unattended-upgrades
sudo unattended-upgrades -d

At login, you should receive

0 updates are security updates.

Other

  • Read this awesome guide.
  • install Fail2Ban
  • Do check your log files if you suspect suspicious activity.

Check out the extensive Hardening a Linux Server guide at thecloud.org.uk: https://thecloud.org.uk/wiki/index.php?title=Hardening_a_Linux_Server

Donate and make this blog better




Ask a question or recommend an article
[contact-form-7 id=”30″ title=”Ask a Question”]

v1.92 added hardening a linux server link

Filed Under: Ads, Advice, Analitics, Analytics, Android, API, App, Apple, Atlassian, AWS, Backup, BitBucket, Blog, Business, Cache, Cloud, Community, Computer, CoronaLabs, Cost, CPI, DB, Development, Digital Ocean, DNS, Domain, Email, Feedback, Firewall, Free, Git, GitHub, GUI, Hosting, Investor, IoT, JIRA, LetsEncrypt, Linux, Malware, Marketing, mobile app, Monatization, Monetization, MongoDB, MySQL, Networking, NGINX, NodeJS, NoSQL, OS, Planning, Project, Project Management, Psychology, push notifications, Raspberry Pi, Redis, Route53, Ruby, Scalability, Scalable, Security, SEO, Server, Share, Software, ssl, Status, Strength, Tech Advice, Terminal, Transfer, Trello, Twitter, Ubuntu, Uncategorized, Video Editing, VLOG, VM, Vultr, Weakness, Web Design, Website, Wordpress Tagged With: antivirus, brute force, Firewall

Primary Sidebar

Poll

What would you like to see more posts about?
Results

Support this Blog

Create your own server today (support me by using these links

Create your own server on UpCloud here ($25 free credit).

Create your own server on Vultr here.

Create your own server on Digital Ocean here ($10 free credit).

Remember you can install the Runcloud server management dashboard here if you need DevOps help.

Advertisement:

Tags

2FA (9) Advice (17) Analytics (9) App (9) Apple (10) AWS (9) Backup (21) Business (8) CDN (8) Cloud (49) Cloudflare (8) Code (8) Development (26) Digital Ocean (13) DNS (11) Domain (27) Firewall (12) Git (7) Hosting (18) HTTPS (6) IoT (9) LetsEncrypt (7) Linux (20) Marketing (11) MySQL (24) NGINX (11) NodeJS (11) OS (10) PHP (13) Scalability (12) Scalable (14) Security (44) SEO (7) Server (26) Software (7) SSH (7) ssl (17) Tech Advice (9) Ubuntu (39) Uncategorized (23) UpCloud (12) VM (44) Vultr (24) Website (14) Wordpress (25)

Disclaimer

Terms And Conditions Of Use All content provided on this "www.fearby.com" blog is for informational purposes only. Views are his own and not his employers. The owner of this blog makes no representations as to the accuracy or completeness of any information on this site or found by following any link on this site. Never make changes to a live site without backing it up first.

Advertisement:

Footer

Popular

  • Backing up your computer automatically with BackBlaze software (no data limit)
  • How to back up an iPhone (including photos and videos) multiple ways
  • Add two factor auth login protection to WordPress with YubiCo hardware YubiKeys and or 2FA Authenticator App
  • Setup two factor authenticator protection at login on Ubuntu or Debian
  • Using the Yubico YubiKey NEO hardware-based two-factor authentication device to improve authentication and logins to OSX and software
  • I moved my domain to UpCloud (on the other side of the world) from Vultr (Sydney) and could not be happier with the performance.
  • Monitor server performance with NixStats and receive alerts by SMS, Push, Email, Telegram etc
  • Speeding up WordPress with the ewww.io ExactDN CDN and Image Compression Plugin
  • Add Google AdWords to your WordPress blog

Security

  • Check the compatibility of your WordPress theme and plugin code with PHP Compatibility Checker
  • Add two factor auth login protection to WordPress with YubiCo hardware YubiKeys and or 2FA Authenticator App
  • Setup two factor authenticator protection at login on Ubuntu or Debian
  • Using the Yubico YubiKey NEO hardware-based two-factor authentication device to improve authentication and logins to OSX and software
  • Setting up DNSSEC on a Namecheap domain hosted on UpCloud using CloudFlare
  • Set up Feature-Policy, Referrer-Policy and Content Security Policy headers in Nginx
  • Securing Google G Suite email by setting up SPF, DKIM and DMARC with Cloudflare
  • Enabling TLS 1.3 SSL on a NGINX Website (Ubuntu 16.04 server) that is using Cloudflare
  • Using the Qualys FreeScan Scanner to test your website for online vulnerabilities
  • Beyond SSL with Content Security Policy, Public Key Pinning etc
  • Upgraded to Wordfence Premium to get real-time login defence, malware scanner and two-factor authentication for WordPress logins
  • Run an Ubuntu VM system audit with Lynis
  • Securing Ubuntu in the cloud
  • No matter what server-provider you are using I strongly recommend you have a hot spare ready on a different provider

Code

  • How to code PHP on your localhost and deploy to the cloud via SFTP with PHPStorm by Jet Brains
  • Useful Java FX Code I use in a project using IntelliJ IDEA and jdk1.8.0_161.jdk
  • No matter what server-provider you are using I strongly recommend you have a hot spare ready on a different provider
  • How to setup PHP FPM on demand child workers in PHP 7.x to increase website traffic
  • Installing Android Studio 3 and creating your first Kotlin Android App
  • PHP 7 code to send object oriented sanitised input data via bound parameters to a MYSQL database
  • How to use Sublime Text editor locally to edit code files on a remote server via SSH
  • Creating your first Java FX app and using the Gluon Scene Builder in the IntelliJ IDEA IDE
  • Deploying nodejs apps in the background and monitoring them with PM2 from keymetrics.io

Tech

  • Backing up your computer automatically with BackBlaze software (no data limit)
  • How to back up an iPhone (including photos and videos) multiple ways
  • US v Huawei: The battle for 5G
  • Check the compatibility of your WordPress theme and plugin code with PHP Compatibility Checker
  • Is OSX Mojave on a 2014 MacBook Pro slower or faster than High Sierra
  • Telstra promised Fibre to the house (FTTP) when I had FTTN and this is what happened..
  • The case of the overheating Mac Book Pro and Occam’s Razor
  • Useful Linux Terminal Commands
  • Useful OSX Terminal Commands
  • Useful Linux Terminal Commands
  • What is the difference between 2D, 3D, 360 Video, AR, AR2D, AR3D, MR, VR and HR?
  • Application scalability on a budget (my journey)
  • Monitor server performance with NixStats and receive alerts by SMS, Push, Email, Telegram etc
  • Why I will never buy a new Apple Laptop until they fix the hardware cooling issues.

Wordpress

  • Replacing Google Analytics with Piwik/Matomo for a locally hosted privacy focused open source analytics solution
  • Setting web push notifications in WordPress with OneSignal
  • Telstra promised Fibre to the house (FTTP) when I had FTTN and this is what happened..
  • Check the compatibility of your WordPress theme and plugin code with PHP Compatibility Checker
  • Add two factor auth login protection to WordPress with YubiCo hardware YubiKeys and or 2FA Authenticator App
  • Monitor server performance with NixStats and receive alerts by SMS, Push, Email, Telegram etc
  • Upgraded to Wordfence Premium to get real-time login defence, malware scanner and two-factor authentication for WordPress logins
  • Wordfence Security Plugin for WordPress
  • Speeding up WordPress with the ewww.io ExactDN CDN and Image Compression Plugin
  • Installing and managing WordPress with WP-CLI from the command line on Ubuntu
  • Moving WordPress to a new self managed server away from CPanel
  • Moving WordPress to a new self managed server away from CPanel

General

  • Backing up your computer automatically with BackBlaze software (no data limit)
  • How to back up an iPhone (including photos and videos) multiple ways
  • US v Huawei: The battle for 5G
  • Using the WinSCP Client on Windows to transfer files to and from a Linux server over SFTP
  • Connecting to a server via SSH with Putty
  • Setting web push notifications in WordPress with OneSignal
  • Infographic: So you have an idea for an app
  • Restoring lost files on a Windows FAT, FAT32, NTFS or Linux EXT, Linux XFS volume with iRecover from diydatarecovery.nl
  • Building faster web apps with google tools and exceed user expectations
  • Why I will never buy a new Apple Laptop until they fix the hardware cooling issues.
  • Telstra promised Fibre to the house (FTTP) when I had FTTN and this is what happened..

Copyright © 2023 · News Pro on Genesis Framework · WordPress · Log in

Some ads on this site use cookies. You can opt-out if of local analytics tracking by scrolling to the bottom of the front page or any article and clicking "You are not opted out. Click here to opt out.". Accept Reject Read More
GDPR, Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Non-necessary
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
SAVE & ACCEPT