<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tips &amp; Tricks &#8211; Digital Marketing Through Content &amp; Influence</title>
	<atom:link href="https://notagrouch.com/tag/tips-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>https://notagrouch.com</link>
	<description>Digital Marketing Blog and other Shennanigans from Oscar Gonzalez.</description>
	<lastBuildDate>Mon, 15 Jun 2020 17:56:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How To Sort Your Pictures and Videos Quickly</title>
		<link>https://notagrouch.com/how-to-sort-your-pictures-and-videos-quickly/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Sun, 25 Aug 2019 18:31:30 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<guid isPermaLink="false">https://notagrouch.com/?p=53447</guid>

					<description><![CDATA[<p>Did you read my post about archiving footage? If you didn't, it's over here, check it out. As a medium-term solution, I ended up picking up a hard drive docking station so I could use a ton of drives I have just sitting around without breaking my wallet. For now, that solution works. But in...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/how-to-sort-your-pictures-and-videos-quickly/">How To Sort Your Pictures and Videos Quickly</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-drop-cap">Did you read my post about archiving footage? If you didn't, <a href="https://notagrouch.com/compressing-and-archiving-video-files-is-it-worth-the-trouble-for-vloggers/">it's over here, check it out</a>. As a medium-term solution, I ended up picking up a hard drive docking station so I could use a ton of drives I have just sitting around without breaking my wallet. For now, that solution works. </p>



<p>But in the process of cleaning up older files, I decided to revisit my workflow which could use improvement. I try to keep my footage and photos organized by date. But if I do this manually, then sometimes I don't do it right away and then I have to rush to clear my SD cards so I can reuse them. This leads to random folders with titles like "review later" or "up to august 8 2019. </p>



<p>I decided to write a script to help me sort out the files automatically so I could eliminate the human element. But then I thought, someone, must have done this already. There's no way that I am the only one that needs this type of solution</p>



<p>And I was right. After scouring forums and blog posts talking about how to automatically sort files and folders, I found the winning solution.</p>



<h2 class="wp-block-heading">TL;DR</h2>



<p class="has-background has-very-light-gray-background-color">If you are a little technical, the script is below. It's short and simple. Just adjust the date format, the destination and the source directories and it should just work. But if you are not technical or familiar with running terminal commands, I explain it in detail below.</p>



<p>I found a promising <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://mikebeach.org/2011/12/10/bash-script-to-automatically-sort-photos-into-folders-based-on-exif-data-for-ubuntu-linux/" target="_blank">blog post here, by Mike Beach</a> and that in turn sent me to <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://github.com/mb243/exifsort" target="_blank">Github to get his script</a>, but at the very end of the Github page, Mike mentioned a tool named <a href="https://sno.phy.queensu.ca/~phil/exiftool/#filename" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">ExifTool by Phil Harvey</a>.</p>



<p>He was also gracious enough to add a 1 line, quick script to make ExifTool do exactly what I wanted. Here's the script, I'll break it down in a moment:</p>



<pre class="wp-block-code"><code>exiftool "-Directory&lt;DateTimeOriginal" -d "%Y/%Y-%m-%d" $DIR</code></pre>



<h2 class="wp-block-heading">Getting the script</h2>



<p>If you want to get this working on OSX, I think the easiest way to get it installed is to use <a href="https://brew.sh" target="_blank" rel="noopener">Homebrew</a>. </p>



<p>If you don't already have Homebrew, get it installed and then you'll have access to ExifTool and tons of other tools and utilities that come in handy as well, like the amazing youtube-dl script; more on that later.</p>



<p>Once you have Homebrew installed, just run this command on your Terminal to get ExifTool installed:</p>



<p><code>brew install exiftool</code></p>



<p>After a few moments, ExifTool will be installed and available in your system.</p>



<h2 class="wp-block-heading">How to use the script</h2>



<p>Now let's break down the script so you know how to use it.</p>



<pre class="wp-block-code"><code>exiftool "-Directory&lt;DateTimeOriginal" -d "%Y/%Y-%m-%d" $DIR</code></pre>



<p>The first word, <code>exiftool</code> simply calls the utility. You can just type that into your terminal, hit return and it will show you instructions on how to use it. </p>



<p>Next is the <code>"-Directory&lt;DateTimeOriginal"</code> part this tells it to create a directory using the date and time based on the EXIF data of the photo or video.</p>



<p>The next part is the flag -d. This tells the script that we want to specify the date format we want to use to create the directory. Next, we define what structure of the folders should be by defining the date format: <code>"%Y/%Y-%m-%d"</code>. If you notice, there are two instances of the year variable, separated by a slash. </p>



<p>This means that a folder with the year will be created, and inside of that, a folder with the year, month and day will be created. Then the files that match will be moved into that folder.</p>



<p>If you wanted to modify this, you just re-arrange the variables any way it suits your needs. I prefer to use this format YYYY-MM-DD so the script is already set to do that.</p>



<p>The very last part, the $DIR is just a placeholder to tell exiftool where the photos and videos you want to sort exist currently. This is my actual script:</p>



<p><code>exiftool "-Directory&lt;DateTimeOriginal" -d "/Volumes/ScreenFTB/footage/%Y/%Y-%m-%d" ./</code></p>



<p>The last part that I changed from <code>$DIR</code> to <code>./</code> means I need to be in the same folder as the files I want to sort out. It's also worth noting that I added <code>/Volumes/ScreenFTB/footage/</code> to the date formatting part, that specifies that I want the folder structure to be created on the drive called "ScreenFTB" under the folder footage.</p>



<h3 class="wp-block-heading">One caveat</h3>



<p>This one line script is amazing. The only issue I found so far is that videos taken with my Samsung Note 9 don't seem to have any EXIF data so it won't work with those files. For those instances where I use my phone to collect footage, I guess I'll have to sort them by hand or will have to find or write a script that uses the file naming structure of the files.</p>



<h2 class="wp-block-heading">In conclusion</h2>



<p>This script will save tons of time in sorting out files and making your workflow a little faster. I'm grateful for open source and Phil Harvey. It seems he's been maintaining this since 2003!</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/how-to-sort-your-pictures-and-videos-quickly/">How To Sort Your Pictures and Videos Quickly</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Compressing and Archiving Video Files. Is It Worth the Trouble for Vloggers?</title>
		<link>https://notagrouch.com/compressing-and-archiving-video-files-is-it-worth-the-trouble-for-vloggers/</link>
					<comments>https://notagrouch.com/compressing-and-archiving-video-files-is-it-worth-the-trouble-for-vloggers/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Tue, 20 Aug 2019 19:11:56 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[vlog]]></category>
		<guid isPermaLink="false">https://notagrouch.com/?p=53411</guid>

					<description><![CDATA[<p>I remember the days when buying a new laptop came with the extremely difficult decision of upgrading from the stock 8GB drive to a 20GB drive. Wow, those were the days! Today, I'll be lucky if I go out for a single event and come back home with less than 30GB of video footage for...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/compressing-and-archiving-video-files-is-it-worth-the-trouble-for-vloggers/">Compressing and Archiving Video Files. Is It Worth the Trouble for Vloggers?</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>I remember the days when buying a new laptop came with the extremely difficult decision of upgrading from the stock 8GB drive to a 20GB drive. Wow, those were the days!</p>



<p>Today, I'll be lucky if I go out for a single event and come back home with less than 30GB of video footage for my next video. </p>



<p>To give you an idea, My <a href="https://www.youtube.com/watch?v=kTc1JzA1ANw" target="_blank" rel="noopener">Taste of Huntington Beach</a> footage came out to about 50GB, if I recall correctly, the <a href="https://www.youtube.com/watch?v=A32Hi-UTZtU" target="_blank" rel="noopener">video I shot for Andrei's</a> during their July promotion was about 35GB. A lunch review, like the <a href="https://www.youtube.com/watch?v=x4TKIe_21pU" target="_blank" rel="noopener">American Grub</a> one, may take up 8-20GB.</p>



<p>It's undeniable that this is a trend that will not stop anytime soon. For the most part, when I create a new video for Youtube, I archive the raw footage and after a few months, I just delete it. </p>



<p>Unfortunately, video files are notoriously difficult to compress without loss of quality.</p>



<p>I know some people keep all the footage, indefinitely. If I did that, I'd have over 50 terabytes of data just hanging around.</p>



<p>Imagine those people that are shooting daily vlogs at 4K. WOW, they are probably in the hundreds of terabytes range per year. I don't envy them at all.</p>



<p>So I think deleting the raw stuff is fine for now. </p>



<p>However, there are cases where I think the raw video should be kept around for a while. For example this video I published recently: <a href="https://www.youtube.com/watch?v=banf1ARWXJw&t=8s" target="_blank" rel="noopener">Beth Jacob Congregation of Irvine Vandalized - City of Irvine Press Conference</a>.</p>



<p>I think it has more value than just publishing it for Youtube. A company may want to license it, or I may want to do a follow-up and re-use some of the footage. Who knows.</p>



<p>I decided to explore compressing all the files and archiving them. But unfortunately, this doesn't do much. I thought you may be in a similar situation and this will help you decide if you should even explore it. </p>



<h2 class="wp-block-heading">Good ol' gz and tar.</h2>



<p>I thought I would use a tar.gz file to get the most compression. I did a little research and came up with this command as the one that would achieve the highest level of compression:</p>



<pre class="wp-block-code"><code>$ env GZIP=-9 tar -cvzf /file-directory/</code></pre>



<p>This makes tar, compress the files using the -9 level which is the highest available. </p>



<p>I also know there are some other programs that can do slightly better compression, but they aren't reliable and require special software installations. </p>



<p>I wanted to make my method be long-lasting and somewhat universal. It just requires that your computer can run basic tar and gz commands.</p>



<h2 class="wp-block-heading">Universal and long term access.</h2>



<p>OSX can do this easily, you can also use Windows for this by setting it up with <a href="https://www.cygwin.com" target="_blank" rel="noopener">Cygwin</a> or <a href="https://www.google.com/search?q=how+to+run+tar+and+gz+on+windows&oq=how+to+run+tar+and+gz+on+windows&aqs=chrome..69i57.4272j0j7&sourceid=chrome&ie=UTF-8" target="_blank" rel="noopener">some of the newer methods</a>, and of course, Linux does this natively.</p>



<p>But in the end results were disappointing.</p>



<p>Here's what happened. I had a directory with 12.78 GB of data in it. At the end of the compression, the result was 12.33 GB hardly any space savings.</p>



<figure class="wp-block-image"><a href="https://notagrouch.com/wp-content/uploads/comparison-before-and-after-compression.jpg"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/comparison-before-and-after-compression-870x489.jpg" alt="Image with 2 screenshots. One shows the original folder size, the second one shows the new file size. Two large arrows point at these figures." class="wp-image-53412"/></a><figcaption>Going from 12.78GB to 12.33GB is hardly worth the time and effort, but...</figcaption></figure>



<p>The only benefit I see to doing this now is to maintain a clean archive of the files I have used to make vlogs. I might do it just for that reason, the 3-5% space savings is almost irrelevant.</p>



<p>Storage is cheap so maybe that's the real way to keep files around for a while.</p>



<h2 class="wp-block-heading">In Conclusion and TL;DR</h2>



<p>The takeaway I think is that unless a new, universal, and long-lasting method to compress video comes around, the only real benefit to doing this is to wrap up everything into one single file and then archive it; there are no real space savings with this method.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/compressing-and-archiving-video-files-is-it-worth-the-trouble-for-vloggers/">Compressing and Archiving Video Files. Is It Worth the Trouble for Vloggers?</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://notagrouch.com/compressing-and-archiving-video-files-is-it-worth-the-trouble-for-vloggers/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Bite-Sized WordPress Maintenance Tips: Delete Old Themes.</title>
		<link>https://notagrouch.com/bite-sized-wordpress-maintenance-tips-delete-old-themes/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Tue, 21 May 2019 12:15:50 +0000</pubDate>
				<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<guid isPermaLink="false">https://notagrouch.com/?p=53053</guid>

					<description><![CDATA[<p>This is a new series of posts I am starting. Sometimes tutorials can be really long and tedious. This is meant to make tutorials a little easier to digest and to help you integrate good behaviors into your workflow, business or in this case into your WordPress website. This time we're talking about maintenance for...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/bite-sized-wordpress-maintenance-tips-delete-old-themes/">Bite-Sized WordPress Maintenance Tips: Delete Old Themes.</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This is a new series of posts I am starting. Sometimes tutorials can be really long and tedious. This is meant to make tutorials a little easier to digest and to help you integrate good behaviors into your workflow, business or in this case into your WordPress website.</p>



<p>This time we're talking about maintenance for your WordPress website. If you've had your site for a little while, you may have old themes installed. I know most sites I work on have at least a couple of unused themes installed.</p>



<p>Often these are leftover from past experiments or from the last time your website got a makeover.</p>



<div class="affbox"><em>This post contains affiliate links. If you use these links, you'll be supporting my work. By visiting these links and buying the recommended products, I may get a commission. You will never pay more, and in some cases you'll actually get a discount by using my links or discount codes. In advance, thank you for following this guide and using the links I provided here. <a href="https://notagrouch.com/sponsor-affiliate-disclosure/">click here for more info about my affiliate disclosure</a>.</em></div>



<p>Deleting themes that aren't being used is good for your site, it reduces the space your site uses and it removes old (maybe insecure) pieces of software. </p>



<p>You just don't need these lingering around on your site. If you're on Twitter, please hit that share button on the tweet below:</p>



<div class="wp-block-social-warfare-click-to-tweet social-warfare-admin-block"><div class="sw-tweet-clear"></div><a class="swp_CTT style3" href="https://twitter.com/share?text=Deleting+themes+that+aren%27t+being+used+is+good+for+your+site%2C+it+reduces+the+space+your+site+uses+and+it+removes+old+%28maybe+insecure%29+pieces+of+software.&via=notagrouch&url=https://notagrouch.com/bite-sized-wordpress-maintenance-tips-delete-old-themes/?utm_source=twitter&utm_medium=social&utm_campaign=socialshares" data-link="https://twitter.com/share?text=Deleting+themes+that+aren%27t+being+used+is+good+for+your+site%2C+it+reduces+the+space+your+site+uses+and+it+removes+old+%28maybe+insecure%29+pieces+of+software.&via=notagrouch&url=https://notagrouch.com/bite-sized-wordpress-maintenance-tips-delete-old-themes/?utm_source=twitter&utm_medium=social&utm_campaign=socialshares" rel="nofollow noreferrer noopener" target="_blank"><span class="sw-click-to-tweet"><span class="sw-ctt-text">Click here to tweet this: Deleting themes that aren&#039;t being used is good for your site, it reduces the space your site uses and it removes old (maybe insecure) pieces of software.</span><span class="sw-ctt-btn">Click To Tweet<i class="sw swp_twitter_icon"></i></span></span></a></div>



<h2 class="wp-block-heading">Go To Your Themes Dashboard</h2>



<p>Go to your <em>Appearance</em> section on your main dashboard, then click on <em>Themes</em>. This will show your Themes control panel.</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/Appearance-themes.jpg" alt="" class="wp-image-53055"/></figure>



<p>How many themes do you see there? </p>



<p>If you only have one, then <strong>Congratulations!</strong> you're done and don't have to do anything else.</p>



<p>If you only have two, you may be able to delete one theme.</p>



<h2 class="wp-block-heading">But First, Let's Identify Your Current Theme</h2>



<p>If you have three or more themes, then you can follow the rest of this tutorial.</p>



<p>Your current and active theme is the top left corner one, or you can see that it indicates it is the active theme. This is what my dashboard looks like:</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/Installed-themes-on-wordpress-870x723.jpg" alt="" class="wp-image-53057"/></figure>



<p>Notice that I highlighted the active theme. It also says: "Active: News Pro." My theme name is "News Pro." </p>



<p>As a side note, I love News Pro from StudioPress. It's versatile and powerful. If you want to take a look at News Pro, you can see a demo of it on this link: <a href="http://oglink.it/newspro" target="_blank" rel="noopener">News Pro Demo</a>.</p>



<p>Since my theme is News Pro, I can delete all the other themes right? <strong>Nope</strong>.</p>



<p>No, sometimes a theme may have dependencies on another theme, if that's the case for you, you need to keep both themes. Only one will be active, but the other one needs to stay in place.</p>



<h3 class="wp-block-heading">But do you check if you can delete a theme?</h3>



<p>It is safe to delete a theme if  </p>



<ul class="wp-block-list"><li>You're not using it and, </li></ul>



<ul class="wp-block-list"><li>It's not necessary for another theme to function, we call this theme a "parent theme." You can read more <a href="https://developer.wordpress.org/themes/advanced-topics/child-themes/" target="_blank" rel="noopener">about that here</a> if you want the gory details.</li></ul>



<p>To check to see if you have a parent and child theme situation going on, you need to click on the <em>Theme Details</em> button for your active theme. This button appears when you hover your cursor over your theme as shown in this screenshot.</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/theme-details-button.jpg" alt="" class="wp-image-53061"/></figure>



<p>If your theme depends on another theme, it will say this in the details. </p>



<p>Along with the name of the theme, the version and some additional details you'll see a notice like the one shown below where it indicates if there is a parent theme. </p>



<p>In my case, News Pro is a child theme of Genesis.</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/theme-details-indicate-child-theme-870x391.jpg" alt="" class="wp-image-53062"/></figure>



<p>This means I can't delete News Pro OR Genesis. If I delete Genesis, my site will break even though I'm not using Genesis directly. </p>



<h3 class="wp-block-heading">You Can Delete All Other Themes</h3>



<p>Once you check to make sure there are no dependent themes, you can delete all but your active theme.</p>



<h2 class="wp-block-heading">The benefits of this maintenance tip</h2>



<p>Themes usually don't take a lot of space, usually between 3 to 50 mb. That's not a lot in today's "unlimited" <a class="thirstylink" rel="nofollow" target="_blank" title="Inmotion Hosting 47% off" href="https://notagrouch.com/goto/inmotion-hosting-47-off/" data-shortcode="true">hosting plans</a>. But every little bit ads up. If you have eight, 10, 20 extra themes installed from past versions of your site, it makes a difference.</p>



<p>This also slows down your back-up procedure and could open up your site for security issues.</p>



<p><strong>Just get rid of them.</strong></p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/bite-sized-wordpress-maintenance-tips-delete-old-themes/">Bite-Sized WordPress Maintenance Tips: Delete Old Themes.</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Get Rid of Dead Weight from Your Email List</title>
		<link>https://notagrouch.com/get-rid-of-dead-weight-from-your-email-list/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Thu, 04 Apr 2019 13:22:11 +0000</pubDate>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[Aweber]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=47421</guid>

					<description><![CDATA[<p>I noticed in my Aweber account, people that have unsubscribed over the time still remain in my account. Every email list service I have used behaves this way. If someone unsubscribes, they are just marked as unsubscribed or inactive, but they remain in the account. These "dead" subscribers can affect your cost. Aweber charges you...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/get-rid-of-dead-weight-from-your-email-list/">Get Rid of Dead Weight from Your Email List</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>I noticed in my Aweber account, people that have unsubscribed over the time still remain in my account.</p>



<p>Every email list service I have used behaves this way. If someone unsubscribes, they are just marked as unsubscribed or inactive, but they remain in the account.</p>



<p class="has-medium-font-size">These "dead" subscribers can affect your cost. </p>



<p>Aweber charges you per subscriber, not per active subscriber so if I have a few people over the threshold, I may be paying for people even though they would never get my emails.</p>



<p class="has-drop-cap">It makes sense for Aweber to keep them around. First, because it benefits them to increase your total subscriber count, but also because if the person decides to re-subscribe, you may have a special rule or autoresponder sequence that applies to that person.</p>



<p class="affbox">By the way, I use and recommend Aweber for your email marketing needs. Give it a try for free today, <a href="http://oglink.it/aweber" target="_blank" rel="noopener">get started here</a>.</p>



<p>For most people, it doesn't make sense to pay for someone just in case they decide to re-subscribe. So the best thing is to remove those subscribers. </p>



<p>Aweber doesn't do any clean-up for you automatically, so you have to take a couple of steps to clean up your list periodically and remove unsubscribed accounts. </p>



<h2 class="wp-block-heading">How often should you delete subscribers from your email list? </h2>



<p>It depends on your list size and how frequently you email all of your subscribers. Most people unsubscribe after they receive an email they didn't like. </p>



<p>If you send emails daily, then you might want to do this email cleanup procedure every month, but if you only send a few emails each month, you may only need to do this every two or three months.</p>



<p>Also, keep in mind, this is not the same as scrubbing your email list. We'll cover that in a different blog post.</p>



<h2 class="wp-block-heading">Don't sweat it. People unsubscribe all the time.</h2>



<p>As I mentioned in a previous post, <a href="https://notagrouch.com/get-traffic-blog-part-2/">How to get traffic to your blog part 2</a>, email is important, but people unsubscribe. It's part of life, there are taxes, death, and unsubscribers. All are unavoidable.</p>



<p>It's easy to take unsubscribes personally or to feel like you did something wrong. But don't. It happens and it's just a part of business, don't even think about it twice. As long as you're getting more subscribers than unsubscribes then you're doing fine. </p>



<p>But you don't have to keep those accounts around in your email list. Remove them, because they count against you. Here's a quick and simple tutorial showing you how you delete them so they don't count against your account limits.</p>



<p>If you want to send them one last personal email, you could download the list to your computer before you delete them then send them a personal message. But, I would say, let it go. In <g class="gr_ gr_34 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-ins replaceWithoutSep" id="34" data-gr-id="34">fact</g> I have a video about <a href="https://www.youtube.com/watch?v=o9W-JbEqfQM" target="_blank" rel="noopener">emailing your subscribers after they have unsubscribed here</a> if you want to take a look.</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/mr-wonderful-your-dead-to-me-870x490.jpg" alt="" class="wp-image-52886"/></figure>



<p>To delete users or subscribers from your account follow the instructions below. And if you don't mind, share this on Twitter with the button below so others can see it as well, thank you in advance!</p>



<div class="wp-block-social-warfare-click-to-tweet social-warfare-admin-block"><div class="sw-tweet-clear"></div><a class="swp_CTT style3" href="https://twitter.com/share?text=Have+you+cleaned+up+your+Aweber+list+lately%3F+It+can+cost+you+if+you+don%27t.+--+But+don%27t+worry%2C+it%27s+easy.+This+is+how+you+do+it.&via=notagrouch&url=https://notagrouch.com/get-rid-of-dead-weight-from-your-email-list/?utm_source=twitter&utm_medium=social&utm_campaign=socialshares" data-link="https://twitter.com/share?text=Have+you+cleaned+up+your+Aweber+list+lately%3F+It+can+cost+you+if+you+don%27t.+--+But+don%27t+worry%2C+it%27s+easy.+This+is+how+you+do+it.&via=notagrouch&url=https://notagrouch.com/get-rid-of-dead-weight-from-your-email-list/?utm_source=twitter&utm_medium=social&utm_campaign=socialshares" rel="nofollow noreferrer noopener" target="_blank"><span class="sw-click-to-tweet"><span class="sw-ctt-text"></span><span class="sw-ctt-btn">Click To Tweet<i class="sw swp_twitter_icon"></i></span></span></a></div>



<h2 class="wp-block-heading">How To Delete Inactive Subscribers</h2>



<p><strong>1. Login to your Aweber account and select the correct list.</strong></p>



<p><strong>2. Click on the Subscribers tab</strong></p>



<div class="wp-block-ta-image wp-block-image size-large wp-image-47422"><figure class="aligncenter"><ta><img decoding="async" src="http://notagrouch.com/wp-content/uploads/subscribers-tab-870x253.jpg" alt="screenshot showing aweber user interface" class="wp-image-47422"/></ta><figcaption>Go to "current list" then to "subscribers"</figcaption></figure></div>



<p><strong>3. Click on the filter called "unsubscribed." </strong></p>



<p>This will give you a list of the people that are still part of your list but have opted-out.  Now it's time to get rid of them. Like Mr. Wonderful would say, they're dead to you.</p>



<div class="wp-block-ta-image wp-block-image size-large wp-image-47423"><figure class="aligncenter"><ta><img decoding="async" src="http://notagrouch.com/wp-content/uploads/unsubscribed-870x587.jpg" alt="screenshot showing the Aweber filter for unsubscribes" class="wp-image-47423"/></ta><figcaption>Once you click Unsubscribed, these people will show up on the right hand side.</figcaption></figure></div>



<p><strong>4. Select the accounts that have unsubscribed and delete them, as shown next:</strong></p>



<div class="wp-block-ta-image wp-block-image size-large wp-image-47424"><figure class="aligncenter"><ta><img decoding="async" src="http://notagrouch.com/wp-content/uploads/Search_Subscribers-870x410.jpg" alt="screenshot showing how to select all unsubscribed status account" class="wp-image-47424"/></ta><figcaption>First, select them all, then you delete them.</figcaption></figure></div>



<h2 class="wp-block-heading">That's it!</h2>



<p>And this is how you delete the accounts that have unsubscribed. There's no need to carry those accounts around and in some cases, they could cost you extra money so keep it clean and remove those.</p>



<p>Most other email services out there have a similar procedure, the whole goal here is to remove those people that have unsubscribed. It's just dead weight, get rid of it.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/get-rid-of-dead-weight-from-your-email-list/">Get Rid of Dead Weight from Your Email List</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>11 Best Practices to Get More Views on Youtube Videos</title>
		<link>https://notagrouch.com/11-best-practices-to-get-more-views-on-youtube-videos/</link>
					<comments>https://notagrouch.com/11-best-practices-to-get-more-views-on-youtube-videos/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Sun, 10 Feb 2019 04:17:04 +0000</pubDate>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Youtube and Videos]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<guid isPermaLink="false">https://notagrouch.com/?p=52636</guid>

					<description><![CDATA[<p>Youtube is a huge site, with millions of videos uploaded daily, it ranks as one of the top 5 websites in the world, and it's widely referred to as the 2nd largest search engine. Yes, really. Look here, and here. And what is the number 1 search engine? Google, of course. Google owns Youtube so you...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/11-best-practices-to-get-more-views-on-youtube-videos/">11 Best Practices to Get More Views on Youtube Videos</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Youtube is a huge site, with millions of videos uploaded daily, it ranks as one of the top 5 websites in the world, and it's widely referred to as the 2nd largest search engine.</p>
<p>Yes, really. Look <a href="https://www.searchenginejournal.com/seo-101/meet-search-engines/#close" target="_blank" rel="noopener">here</a>, and <a href="https://www.forbes.com/sites/forbesagencycouncil/2017/05/15/are-you-maximizing-the-use-of-video-in-your-content-marketing-strategy/#30bf53b03584" target="_blank" rel="noopener">here</a>.</p>
<p>And what is the number 1 search engine? Google, of course.</p>
<p>Google owns Youtube so you can say that Google really owns the #1 and #2 spots where people are searching.</p>
<p>One could argue that YouTube is not a search engine at all because it doesn't serve any documents outside of its own site, technically making the search function exclusively internal.</p>
<p>But going by the sheer number of searches going on in YouTube, and for this blog post, I'll consider Youtube a search engine.</p>
<p>This is why it makes sense for you to be on Youtube. Your business should be on Youtube and if you have a brand or a product, or even if you are your own brand, Youtube is something you should make part of your strategy.</p>
<h3>There's Talent and There's Hustle.</h3>
<p>Sometimes it seems that our efforts to create new engaging videos don't really pay off.</p>
<p>We find that despite all the effort planning, shooting, and editing a video, they turn out very low views and even lower engagement.</p>
<p>Well, here's what I have found. There are two things when it comes to any type of work, including being a content creator. One is talent, and the other is <em>hustle</em>.</p>
<p>This whole list is about hustle. It's about all the stuff you can do to beat the competition even if they are more talented than you.</p>
<p>When I've done all the heavy lifting part of a video, and I think I'm done. Just before my video is about to be published, I go through this list of stuff.</p>
<p>The work you put into this list can seem overwhelming, but take one step at a time and just check off each item as you go. After a few times, the process will become second nature.</p>
<p>This list is not comprehensive, but it's a collection of 11 best practices to follow just before and immediately after you publish a video.</p>
<p>Without further ado, here is the list I follow:</p>
<p><a href="https://notagrouch.com/wp-content/uploads/11-tips-to-help-you-with-youtube-small.jpg"><img fetchpriority="high" decoding="async" class="aligncenter size-large wp-image-52660" src="https://notagrouch.com/wp-content/uploads/11-tips-to-help-you-with-youtube-small-870x489.jpg" alt="" width="870" height="489" /></a></p>
<h2>1 Add to a Playlist</h2>
<p>Increase watch time by adding your video to a playlist of yours. Adding videos to related playlists gives you a chance of getting more views when people find one of your videos through a playlist.</p>
<p>Playlists show up in search results and sometimes videos in the playlist come up as results so when people play such a video, they're likely to see other videos in that playlist.</p>
<p>Bonus - make sure it's added to a "series playlist." Series playlists are special playlists, you can <a href="https://support.google.com/youtube/answer/6084043?hl=en" target="_blank" rel="noopener">read more about them here</a>.</p>
<p>Bonus 2 - make sure you create a good description for the playlist so that it helps with search results. You can even add short descriptions for each video which will help with search results as well.</p>
<h2>2 Add an End Screen</h2>
<p>When your video is over, help direct the viewer where you want to by linking to other videos or adding a subscribe button. You can add up to 4 items on your end screen, including any video, a recommended video for the viewer, a playlist, and the lastest upload.</p>
<p>End screens can be up to 20 seconds long. You can see how I do my end-screens on <a href="/youtube">any of my videos</a>.</p>
<p>Some YouTubers add a small video segment at the end of their video to talk about the end screens and actively direct the user to click on them, others like me, just ad a static slide for 10 - 20 seconds.</p>
<p>You can decide how to do it, or you can start with a static slide like me, and then later on make end video segments, up to you. But just use the end screens, they help.</p>
<p>This is an <a href="https://support.google.com/youtube/answer/6388789?hl=en" target="_blank" rel="noopener">explanation of end screens</a>, straight from the horse's mouth. And below is a good video by Youtube expert Darrel Eves, I recommend you check those two things out.</p>
<p>Darrel talks a little bit about annotations, the precursor to end screens. Then quickly gets into a tutorial on how to add end screens. Worth a few minutes of your time.</p>
<p>https://www.youtube.com/watch?v=Q4dYiyCg6q8</p>
<h2>3 Add Tags to Your Title</h2>
<p>It's generally important to have at least 1 or 2 of your tags appear in your title to help with search optimization on those terms.</p>
<p>This sounds confusing, but it basically means that you should have 2 tags from your tag collection (found under your description) match with part of the title of your video.</p>
<p>I have a feeling that tags will eventually go away as artificial intelligence engines get better at recognizing visual and spoken content, but for the time being, tags help you organize and categorize your video so that more people can find it.</p>
<p>Tags can be added in their own section, use at least 2 of these tags as part of your title to reinforce the topics and type of searches your video will appear in.</p>
<h2>4 Add More Tags</h2>
<p>YouTube allows up to 500 characters when adding tags. Use as many as possible and keep tags relevant to your video.</p>
<p>#3 above and this can go in any order, but when it comes to tags, you can add up to 500 characters worth of tags. Use them wisely and if possible, use up all your characters to maximize the chance of your video being discovered.</p>
<p>TubeBuddy helps you keep track of how many characters you've used and also helps you pick the right tags to use in your video. Learn more <a href="https://tubebuddy.com/youtubehelp" target="_blank" rel="noopener">about TubeBuddy here</a>.</p>
<h2>5 Add Info Cards</h2>
<p>Add Info Cards in order to provide relevant external information to your video - a related video of yours or your website, etc.</p>
<p>Info cards are those little pop-up icons that come up during some Youtube videos, they create a clickable call to action for your viewers to get more information about a video.</p>
<p>Info cards can link out to other videos, playlists, or even your website. You can add up to 5 cards to any video, and they are time-stamped so they can come up at the exact time you pick.</p>
<p>Sunny Lenarduzzi has a great video tutorial geared towards influencers and entrepreneurs, I highly recommend you take a look, it's only 3 minutes.</p>
<div class="entry-content-asset videofit"><iframe title="YouTube Cards Tutorial" width="720" height="405" src="https://www.youtube.com/embed/itZuoQWv2hI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
<h2>6 Add Captions</h2>
<p>Adding captions will not only help visually impaired users consume your content, but it can also boost your search rank!</p>
<p>There is some evidence to suggest that videos with accurate captions tend to do better in search results and may attract more engagement compared to their counterparts without captions.</p>
<p>I recently made a video about this where I explain that I've seen around 5-15% increase in average on videos with close captions versus those that don't have it or have the automatic Youtube generated close captions.</p>
<p>I recommend you add your own and don't rely just on the ones that Youtube creates.</p>
<p>Here's that video if you want to see <strong>how to create subtitles from scratch with Youtube</strong>.</p>
<div class="entry-content-asset videofit"><iframe title="Tutorial: How To Create Subtitles (Closed Captions) on Youtube" width="720" height="405" src="https://www.youtube.com/embed/3NXCq5dWspU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
<h2>7 Upload High-Resolution Thumbnail</h2>
<p>Ensure that your thumbnail shows up crisp and clear on all devices by publishing a high-resolution version. It's important to make sure your thumbnail is eye-catching but also make sure it's high-resolution.</p>
<p>Sometimes you can make a thumbnail on a mobile device and it looks great in that screen, but when you make it larger it turns out it's blurry or looks like it's low quality.</p>
<p>Thumbnails are the first impression when people see your video in search results or in your page so put some effort into it and make sure it's of high quality.</p>
<p>You can use Canva, Photoshop, or other apps to help you create crisp and eye-catching thumbnails. <a href="https://tubebuddy.com/youtubehelp" target="_blank" rel="noopener">TubeBuddy</a> even has a built-in thumbnail generator you can use on the fly.</p>
<p>One thing to note is that you must have a verified Youtube account to be able to upload custom thumbnails. Here are more details <a href="https://support.google.com/youtube/answer/72431?hl=en" target="_blank" rel="noopener">about video thumbnails</a>.</p>
<h2>8 Turn on Monetization</h2>
<p>This video doesn't have monetization turned on which means you're not earning any ad revenue from it.</p>
<p>If you are a Youtube partner, you should turn monetization on for your video before you publishit. This will help you generate revenue from your video and it should encourage Youtube to show your video more frequently since they will also make money from it.</p>
<p>In order to have monetization available for your channel, you must meet certain requirements. You can learn more about <a href="https://support.google.com/youtube/answer/72857?hl=en" target="_blank" rel="noopener">those requirements here</a>.</p>
<h2>9 Make Your Title Between 20 and 70 Characters</h2>
<p>You generally want your video title to be long enough to be descriptive but not too long to where it becomes hard to read.</p>
<p>Just like tags, you have a limit on the number of characters you can use in your title, but the ideal size for a title is between 20 to 70 characters. This is long enough to be descriptive and eye-catching but not so long that it becomes a burden to read the title.</p>
<p>Technically, you can go longer than 70 characters, but this is the cutoff mark for the title when it shows up on search results so in most cases, the viewer doesn't see anything beyond the 70 characters until they click on the video to watch it.</p>
<h2>10 Get a like on Facebook</h2>
<p>YouTube isn't the only place you should be sharing your video - make sure you tell your connections on Facebook about it.</p>
<p>This one is easy, and it also serves as a reminder to share your video on Facebook.</p>
<p>Whether you share it on your Facebook business page, fan page or your personal profile, share it so that other people can see it and hopefully at least a few people will like the post on Facebook.</p>
<p>You can also share your video in a group, but the likes from groups may or may not be tracked. Always share the video to your personal profile AND a business page if you have one.</p>
<p>This helps with your visibility, SEO and social signals.</p>
<h2>11 Pin a Comment</h2>
<p>Take control of your comment section by "pinning" a comment that you choose to the top of the list (usually your own comment).</p>
<p>This is a recent trend and while I can't say exactly how important it is, it is very clear that you should do this for all your videos as a way to start up the conversation and encourage others to leave their own comments.</p>
<p>It used to be that you would put a lot of information in the description, but in most cases, people will not click on the "see more" link to reveal your entire description.</p>
<p>A comment, on the other hand, is visible right away and if it's the pinned comment, it will show at the top so you can add more information about the video, ask a question or provide additional links.</p>
<p>Many people will feel inclined to reply to a comment by the creator instead of leaving their own comment.</p>
<h2>In conclusion</h2>
<p>So this is a good list for you to follow, keep it on a spreadsheet, print it and stick it next to your desk. Whatever you need to do to keep this list handy, do it. If you follow these, you should see an increase in views and hopefully engagement as well.</p>
<p>You still have to strive to create informational, educational and entertaining content, but when you've done your best in that regard, follow this list and I think you'll see results.</p>
<p>The Tubebuddy extension I mentioned helps you accomplish and track all of these items for you, like item #3, with TubeBuddy, is a breeze.</p>
<p>If you want to look at that, it's free and available for all major browsers. Learn more about it here: <a href="https://tubebuddy.com/youtubehelp" target="_blank" rel="noopener">https://tubebuddy.com/youtubehelp</a>. And yes, if you were curious, I'm an affiliate for them. But I also use them for every single video I publish and I'm slowly working my way back through all my previous videos.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/11-best-practices-to-get-more-views-on-youtube-videos/">11 Best Practices to Get More Views on Youtube Videos</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://notagrouch.com/11-best-practices-to-get-more-views-on-youtube-videos/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>Twitter Growth Case Study Gutenberg and Random Eyebrows.</title>
		<link>https://notagrouch.com/twitter-growth-case-study-gutenberg-and-random-eyebrows/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Tue, 11 Sep 2018 23:13:31 +0000</pubDate>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[social media marketing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Twitter]]></category>
		<guid isPermaLink="false">https://notagrouch.com/?p=51993</guid>

					<description><![CDATA[<p>A quick update &#038; warning about Gutenberg and WordPress 5.0 as well as an update regarding the Twitter growth case study.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/twitter-growth-case-study-gutenberg-and-random-eyebrows/">Twitter Growth Case Study Gutenberg and Random Eyebrows.</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>So that Twitter growth case study I'm doing is moving along. It seems that the application for the Twitter developer access is taking time.</p>



<p>I'm guessing because there really is no indication of the status, but I haven't received an email or anything, and if I go back to the developers' area, I can't create a new app.</p>



<p>I say "new" because I still have my old one in there,  I had already set up the app settings before I started writing these blog posts, so I can see my API keys and secret keys, but I don't have a way to create a new one.</p>



<p>It is only recently that Twitter locked down their developer program and asked some or all developers to re-apply.</p>



<p>I'm not sure exactly what happened, but anywhere I had a Twitter "app" I had to re-apply for that account. For my main account, there was no problem, but for this one, it's taking time so currently, I don't have my automated content machine going for this. However, it is still growing.</p>



<h2 class="wp-block-heading">Other Updates</h2>



<p>Quick updates on a few other things. I have a few irons in several fires and I've talked about some of them to you in my <a href="#">VIP Email list</a> or in social media so I thought I'd give you a quick update.</p>



<div class="affbox"><em>This post contains affiliate links. If you use these links, you'll be supporting my work. By visiting these links and buying the recommended products, I may get a commission. You will never pay more, and in some cases you'll actually get a discount by using my links or discount codes. In advance, thank you for following this guide and using the links I provided here. <a href="https://notagrouch.com/sponsor-affiliate-disclosure/">click here for more info about my affiliate disclosure</a>.</em></div>



<h3 class="wp-block-heading">WordPress 5.0 Update, Gutenberg</h3>



<p>I've been thinking about the Gutenberg update coming to WordPress users. As soon as WordPress 5.0 is released, the Gutenberg update will come with WordPress by default. If you do not want to use this new editor, you'll need to install the "classic editor" and use that until you're ready to move to Gutenberg.</p>



<p class="has-regular-font-size">If you have a WordPress blog, I would start testing right away. Make a copy of your website or blog and test out how Gutenberg is going to affect you and be prepared. Unless you don't care if something breaks, don't install it on your main public site right away.</p>



<p>If you need help with this, <a href="/contact/">get in touch with me</a> and let me know.</p>



<h3 class="wp-block-heading">Eye see you random thought</h3>



<p>This is a totally random thought, but in helping a friend, I recently started learning about eyebrows.</p>



<p>Yeah, I know, such a random topic but my wife got her eyebrows "done" a while ago and that could mean something different to different people. But what I'm learning about, I thought was interesting enough to share on here.</p>



<div class="wp-block-image"><figure class="aligncenter"><a href="https://notagrouch.com/wp-content/uploads/microblading.jpg"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/microblading.jpg" alt="Picture of the results of microblading" class="wp-image-51969"/></a><figcaption> It's hard to tell that there are "fake eyebrows" there. Photo courtesy of Natalie Rose microblading salon.</figcaption></figure></div>



<p>My wife had her eyebrows done with microshading, which pratically looks as if she had applied make up. But there is more to this.</p>



<p>As I kept reading about it, I learned that you can have your eyebrows done in a few different ways, one is tattooed, another is microbladed, or another way is microshaded.</p>



<p>Tattoos are permanent, while microblading and microshading are semi-permanent. They're considered a semi-permanent tatoo.</p>



<p>So I thought it is a fascinating topic and there's a good <a href="http://natalierosecosmetics.com/faq" target="_blank" rel="noopener">FAQ about microblading here</a>. I'm going to be helping her improve that so any feedback about the content itself is welcome as well.</p>



<p>During a microblading procedure, they literally take a tiny blade and cut eyebrow-hair-shape cuts into their eyebrow area then fill it up with pigment (ink basically) and after it has entered the tiny cuts, the pigment is removed the customer is left with new "eyebrows."</p>



<p>Of course, my head goes off into the online monetization for this business, so I may be talking about this again soon, not sure. Remember, the most monetizable niches are self-care, self-image, self-development, making money, finding love…</p>



<p>But there's a lot of money being made in this business. The things girls do to look good never ceases to amaze me!</p>



<p>And while most people that "get their eyebrows done" do it for convenience or seemingly vanity reasons, sometimes this helps people with scars, or people going through cancer treatment or other reconstructive process.</p>



<p>Sometimes they look so realistic that they are also known as 3d Microblading eyebrows. Look here for <a href="http://www.natalierosecosmetics.com/before-after/" target="_blank" rel="noopener">pictures of before and after</a>.</p>



<h2 class="wp-block-heading">About the Twitter growth case update</h2>



<h3 class="wp-block-heading">Let's do a quick recap.</h3>



<p>I'm trying to grow an account to help drive traffic to a niche website. It is also a passion project and I haven't talked about it much publicly but I think in another blog post I'll share a link to it.</p>



<p>The case study includes the methods, and tools used to achieve the goal. Check out the <a href="https://notagrouch.com/twitter-growth-strategy-case-study/">first post about this</a>, then <a href="https://notagrouch.com/the-tweet-wheel-of-fortune-twitter-growth-case-study-update/">part two here</a> and this one you're reading is technically part 3.</p>



<ul class="wp-block-list"><li>Goal is 1000 (about 1/2 there)</li></ul>



<p>Currently</p>



<ul class="wp-block-list"><li>Following: 905</li><li>Followers: 483</li><li>Tweets: 325</li></ul>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/follower-following-count.jpg" alt="" class="wp-image-51996"/></figure>



<p>So if you don't know, the following/followers ratio is important. You don't want to have more following than followers. </p>



<p>It looks weak and needy, It is always advisable to have a slightly positive ratio in favor of the number of followers. In simple terms, have more people follow you than you follow.</p>



<h3 class="wp-block-heading">More followers than following</h3>



<p>As you start, this is tricky. You have <strong>no credibility</strong>, and you <span style="text-decoration: underline;">don't want to buy followers</span> either through shady companies or directly from Twitter with advertisements.</p>



<p>My main problem right now is that I can't follow a lot of people too quickly because if they don't follow me back, that followers/following ratio will get worse and fewer people will want to follow me back.</p>



<p>This part is always a little slow, it feels like when the wheels of the train are spinning and grabbing a little bit as the train leaves the station.</p>



<p>But we keep on keeping on and try to keep up with these 3 strategies.</p>



<ol class="wp-block-list"><li>Provide quality content.</li><li>Provide engaging activity.</li><li>Changing that ratio to a positive number.</li></ol>



<h3 class="wp-block-heading">Let's talk about the ratio part first</h3>



<p>As you can see, I'm following a little more than 2x the number of people following me. To fix this, <a class="thirstylink" rel="nofollow" target="_blank" title="Rewst" href="https://notagrouch.com/goto/rewst/" data-shortcode="true">Rewst has a feature to help you unfollow people that didn't follow you back</a> after a period of time (customizable) or that are no longer following you.</p>



<p>A good ratio is anything higher than 1.1. The higher the number the better but it's also relative so don't get too hung up about it when you develop your long-term marketing approach. For our immediate purposes to grow this one channel, this metric is important because of appearances.</p>



<p>It's important for the <a href="https://notagrouch.com/twitter-growth-strategy-case-study/">follow/unfollow method I said I would use</a>. The way we're going to get the attention of a potential new follower is by following them first. And so it becomes a little strategy game.</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/followers_following_engagement_ratios.jpg" alt="" class="wp-image-51998"/><figcaption>You can see the current ratio at the time of this screenshot was .53, but like I said, it will likely drop a lot and frequently for the next month or so as we go for 1000 followers.</figcaption></figure>



<h3 class="wp-block-heading">There's a method to this madness.</h3>



<p>A new potential follower is more likely to follow you if they see that more people follow you than you follow back. </p>



<p>There's a slight dash of intrigue there when they see your account and they wonder "<em>why did this account follow me?</em>" "<em>I must have said something interesting or shared a good article</em>" and they'll be more inclined to follow you back.</p>



<p></p>



<p>Love it or hate it, this is how people work. Especially in social media. Everybody's looking for that next little fix. </p>



<p>A little bit of chat, a little bit of praise, maybe even a little friction over a slight disagreement, but the follow/unfollow method works because it reaches out to people while helping you maintain that perception to the outsiders looking in.&nbsp;</p>



<h3 class="wp-block-heading">What's the right follow ratio then?</h3>



<p>So you see, this is why it's important to bring that ratio to a greater than 1.0 ratio. Currently, for this account I'm working on, the twitter follow ratio is 0.43, just divide the number of followers by the number of following to find your own.</p>



<p>The bigger the number the better --generally, <strong>but at least 1.1 is necessary for this case study to work</strong>. My main account has a ratio of 3, while a celebrity or personality, like Elon Musk has a ratio of about 360,000!</p>



<p>I would recommend that a business maintains their ratio between 2 and 10.</p>



<p><strong>It's hard to determine that more accurately since so many factors are contextual.</strong></p>



<p>Rewst has a time period set to let those accounts mature before it marks them as "non-followers" and lets you unfollow them.</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/unfollow-non-followers-time-limit.jpg" alt="" class="wp-image-51997"/><figcaption>You can set that to 3 days for more active growth, or push that to 7 or 10 for a normal steady growth strategy.</figcaption></figure>



<p>While that period of time is going on, I think I have it set to 3 days, I spent a few minutes each day looking at my feed and liking, retweeting and commenting on stuff I see from the people I want to follow me back.</p>



<p>This is also something I do to interact with them and really get into them. If you follow just for the sake of following, then there's no point.</p>



<p>Consider the follow and follow back process as an introduction at a networking event. You now know each other exist, now talk, get to know each other, etc. <strong>Without this part, this technique will fail!</strong></p>



<p>One other tool I didn't mention before is <a href="http://twittercounter.com/" target="_blank" rel="noopener">Twittercounter</a>. This is good just to keep an eye on the historical growth of your account. </p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/twitter-counter-updated.jpg" alt="" class="wp-image-51999"/><figcaption>Gaining rank fast. That's good. You'll also see the graph will eventually flip and we'll have more followers than following.</figcaption></figure>



<p>You should go to TwitterCounter as soon as you can and ask for your stats. This will put you into their database and they'll update regularly so you can see how your efforts are working out over months and years.&nbsp;</p>



<div class="wp-block-image"><figure class="aligncenter"><a href="https://notagrouch.com/wp-content/uploads/twitter-counter.jpg"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/twitter-counter.jpg" alt="Screenshot of a Twittercounter report showing followers, following and global rank" class="wp-image-51972"/></a><figcaption>This was 2 days later. Twitter Counter helps you keep track of your following and followers on Twitter over time.</figcaption></figure></div>



<h3 class="wp-block-heading">To provide engaging activity</h3>



<p>This is where the people that just like to be haters miss out. They don't ever get to this part of the whole process, where I advocate that <strong>this method only works</strong> with good quality content and engaging activity.</p>



<p>I have a list of tweets I'm putting together, they'll be 100 of them. These are icebreakers and questions and greetings. These go into my Textexpander app which then allows me to reply to everybody that follows me with a quick quote, greeting, question, or something else. It's kinda like when people @ you and say "thanks for the follow" but my method works way better because I'm actually making the response to <g class="gr_ gr_6 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del" id="6" data-gr-id="6">them</g> unique and interesting.</p>



<p>Takes me about 2 minutes to do this for 15 - 30 people. This helps me lock down those people as followers for a long time and also increases my engagement numbers which will hopefully start adding me to recommended lists and get more retweets and likes which should increase traffic to the site <em>eventually</em>.</p>



<p>I also proactively unfollow junk accounts. The follow/unfollow method I'm working with has that as a side effect. Sometimes I'll just follow a ton of accounts and by the sheer number, some are bound to be bad accounts, bots, junk sellers, spammers, or in a language I don't want, so I'll unfollow at least a few accounts just by looking at my timeline.</p>



<p>The major unfollow process happens with <a href="http://oglink.it/rewst" target="_blank" rel="noopener">Rewst every week</a> or so and that handles a few hundred unfollows in just a minute or less.</p>



<figure class="wp-block-image"><img decoding="async" src="https://notagrouch.com/wp-content/uploads/Rewst_-_Twitter_Growth_Tool_?.jpg" alt="" class="wp-image-52000"/><figcaption>Rewst is designed to help you grow your Twitter following. So naturally, I'm using it. (<a href="http://oglink.it/rewst" target="_blank" rel="noopener">link</a>)</figcaption></figure>



<p style="font-size:17px">It should be worth noting that Rewst is beautiful because it lets you manage those actions quickly, but it actually spreads them out over time when it executes them so that Twitter doesn't get overloaded and your account doesn't get flagged for using too many resources. Everybody wins.</p>



<h3 class="wp-block-heading">Changing the Twitter ratio</h3>



<p>As I continue with this, the ratio is going to get worse before it gets better. I'm probably going to get to a poor ratio for a while maybe around 0.375 which will be negative for growth. </p>



<p>But when I get to that point, the first big batch of people I followed should have matured in <a class="thirstylink" rel="nofollow" target="_blank" title="Rewst" href="https://notagrouch.com/goto/rewst/" data-shortcode="true">Rewst</a> and I can unfollow them and close that gap a little to make things better. Right now I think I'm around 0.53</p>



<p>On the next update about this, I'll try to do an update about <a class="thirstylink" rel="nofollow" target="_blank" title="Tweet Wheel Pro" href="https://notagrouch.com/goto/tweet-wheel-pro/" data-shortcode="true">Tweet Wheel</a> and getting that Twitter developer license. Hopefully<g class="gr_ gr_12 gr-alert sel gr_gramm gr_replaced gr_inline_cards gr_disable_anim_appear Punctuation only-ins replaceWithoutSep" id="12" data-gr-id="12">,</g> I'll have it by then.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/twitter-growth-case-study-gutenberg-and-random-eyebrows/">Twitter Growth Case Study Gutenberg and Random Eyebrows.</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Spot Fake Profiles and Scammers on Facebook</title>
		<link>https://notagrouch.com/spot-fake-profiles-scammers-facebook/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Mon, 10 Jul 2017 17:02:26 +0000</pubDate>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[avoid scams]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=50366</guid>

					<description><![CDATA[<p>Spotting a fake profile on Facebook can be tricky. I made a video to walk you through some steps you can take to prevent being scammed. Also included some tips.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/spot-fake-profiles-scammers-facebook/">How to Spot Fake Profiles and Scammers on Facebook</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We've all gotten those random friendship requests on Facebook. They seem to be harmless, you look at the profile and wonder if this might be the beginning of something good, a new friendship, a new partnership, maybe a little bit of both.</p>
<p>But how do you know the person behind that profile is real? If you don't have any connections with mutual friends, or if you don't recognize the person from a previous place of employment, education or even a recent event, chances are the profile trying to befriend you is a scammer.</p>
<p>If you're not very active on Facebook or social media then this may not be obvious, but let me tell you that there are tons of people out there looking to scam you. Maybe they want your money, or your connections or they are simply using you as a pawn to a larger more nefarious goal. Stay alert, and be cautious when new people approach you and don't seem to have a clear purpose or intention.</p>
<p>Don't get me wrong, everybody is looking for something. Most people just like to add you as a friend to truly connect with you. But some of them want to use you, some want to abuse you. I'm here to help you spot the ones that want to abuse you, to take advantage of your good nature.</p>
<h2>Video: How to spot a fake profile scammer on facebook</h2>
<div class="entry-content-asset videofit"><iframe title="How to Spot a Fake Profile Scammer on Facebook" width="720" height="405" src="https://www.youtube.com/embed/22XQJ_gwN8I?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
<blockquote>
<p>
				NEVER click on a link you didn't ask for or were not expecting until you are absolutely certain that the link is harmless. Better yet, just don't click on it. 			</p>
<footer>
																<a href="https://twitter.com/intent/tweet?text=NEVER+click+on+a+link+you+didn%27t+ask+for+or+were+not+expecting+until+you+are+absolutely+certain+that+the+link+is+harmless.+Better+yet%2C+just+don%27t+click+on+it.+&url=https%3A%2F%2Fnotagrouch.com%2Fwp-admin%2Fadmin-ajax.php&via=notagrouch" target="_blank" rel="noopener noreferrer"><br />
																																													Click to Tweet<br />
													</a><br />
									</footer>
</blockquote>
<h2>Some Telltale Signs They Are A Fake Account</h2>
<ul>
<li>The user tries to make chit-chat conversation, often repeats it all over every time they make contact. There is no purpose to the conversation.</li>
<li>The user has only a small amount of personal pictures or none at all. They may have a profile photo, but since they aren't real, they don't have other photos with friends, family, etc.</li>
<li>They have very few posts. They just put a few things up to appear legitimate.</li>
<li>They claim to work for high-visibility trustworthy school or work at a very prominent company or institution, i.e. Harvard, Yale, Oxford, or they work at a governmental institution. It's almost impossible to verify this unless you run an employment background check.</li>
</ul>
<p>This is a video I made to show you how to spot a scammer on Facebook. It works about 75% to 80% of the time based on my personal experience.</p>
<h2>In conclusion</h2>
<p>Spotting fake profiles on Facebook can be pretty easy and with time, you'll be able to guess which ones are real and which ones are fake even without doing the steps I outlined in the video. It just takes practice. The method I describe just confirms your suspicions, and it takes just a couple minutes to complete and it's totally free, just use the <a href="https://www.google.com/imghp" target="_blank" rel="noopener">Google image search</a>.</p>
<p>A tip I didn't mention in the video if the image you search for doesn't turn up any results, you may also want to "reverse" it. You can do this with almost any photo editing software, just flip the image horizontally. Sometimes scammers will do this to throw off the image search in Google.</p>
<p>You should also know that it's perfectly possible for a scammer to have a legitimate profile. These type of scammers are a totally different kind and this video will probably not help you with that. When I said that this works 75 to 80 percent of the time, that's because sometimes scammers don't use photos from other people so the image search will not work in those cases.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/spot-fake-profiles-scammers-facebook/">How to Spot Fake Profiles and Scammers on Facebook</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
