<?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>resources &#8211; Digital Marketing Through Content &amp; Influence</title>
	<atom:link href="https://notagrouch.com/tag/resources/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, 19 Jul 2021 14:32:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Server Performance Improvements for WordPress &#8211; Turning off Services</title>
		<link>https://notagrouch.com/server-performance-improvements-wordpress-turning-off-services/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Mon, 03 Jul 2017 15:15:33 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=50255</guid>

					<description><![CDATA[<p>My site is proudly hosted with Inmotion Hosting, I use their VPS3000 plan which means I have almost full control over my server. It's a virtual server, but I have full root access, and technically I can do anything I want on it. This also means that I could easily break something. As I've been...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/server-performance-improvements-wordpress-turning-off-services/">Server Performance Improvements for WordPress &#8211; Turning off Services</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>My site is proudly hosted with <a href="http://oglink.it/inmotion" target="_blank" rel="noopener">Inmotion Hosting</a>, I use their VPS3000 plan which means I have almost full control over my server. It's a virtual server, but I have full root access, and technically I can do anything I want on it. This also means that I could easily break something.</p>
<p>As I've been working on optimizing WordPress, I decided to take a look at the server side of things. If you're looking to improve the performance of your website, this may be useful for you. Please keep in mind the things in here are exclusive for VPS or Dedicated type of servers, they will not work with shared hosting or managed hosting, but may work for other hosts besides Inmotion Hosting.</p>
<p>If you haven't done so yet, you may need to configure SSH first so you can access your server from the command line and do the stuff I talk about here. Check if your host allows you to do that, and how to set it up. If you have a VPS with InmotionHosting, you can <a href="http://inmotion-hosting.evyy.net/c/393218/260033/4222?u=http%3A%2F%2Fwww.inmotionhosting.com%2Fsupport%2Fwebsite%2Fssh%2Fhow-to-login-ssh" target="_blank" rel="noopener">setup SSH as explained here</a>.</p>
<p>Most web hosts allow you to ssh into your VPS.</p>
<p>As a quick disclaimer, I run all the commands listed here as root. This can be risky so be careful when you're running this on your server; you should always run commands with your own username and use <a href="https://www.sudo.ws/intro.html" target="_blank" rel="noopener">sudo</a> to run commands as root when needed. But I'm awesome, and I live dangerously, so I run as root, deal with it.</p>
<h2>Turning off unnecessary services.</h2>
<p>The first thing you should do with any server if you're going to optimize it for performance is to turn off unnecessary services. There are usually a half dozen or more services that run on every server but aren't needed, they're there for your convenience and just in case.</p>
<p>Conversely, you should know and remember that if you turn these services off and you need them later, you'll need to turn them back on.</p>
<h3>How to find out what services are running.</h3>
<p>Depending on the operating system your server is running, you'll need to run some commands to see what services are running. In my case, my server is running CentOS which is a spinoff from RedHat. To find out what's running on a RedHat server, you can  run these commands:</p>
<pre class="lang:sh decode:true">service --status-all</pre>
<p>To narrow down to a much smaller and useful list of stuff you can run this command:</p>
<pre class="lang:sh decode:true">chkconfig</pre>
<p>And to eliminate even more noise, we can filter the output of the chkconfig command to just the stuff that is running right now at our <a href="https://wiki.debian.org/RunLevel" target="_blank" rel="noopener">runlevel</a>, like this:</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig |grep 3\:on

</pre>
<p>That command shows only what's running right now under runlevel 3. Let's take a look:</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig |grep 3\:on
apf            	0:off	1:off	2:off	3:on	4:on	5:on	6:off
atd            	0:off	1:off	2:off	3:on	4:on	5:on	6:off
cpanel         	0:off	1:off	2:off	3:on	4:on	5:on	6:off
crond          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
exim           	0:off	1:off	2:on	3:on	4:on	5:on	6:off
fastmail       	0:off	1:off	2:off	3:on	4:on	5:on	6:off
filelimits     	0:off	1:off	2:on	3:on	4:on	5:on	6:off
httpd          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
ip6tables      	0:off	1:off	2:on	3:on	4:on	5:on	6:off
ipaliases      	0:off	1:off	2:on	3:on	4:on	5:on	6:off
iptables       	0:off	1:off	2:on	3:on	4:on	5:on	6:off
mailman        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
messagebus     	0:off	1:off	2:on	3:on	4:on	5:on	6:off
modules_dep    	0:off	1:off	2:on	3:on	4:on	5:on	6:off
mysql          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
named          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
netfs          	0:off	1:off	2:off	3:on	4:on	5:on	6:off
network        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
nscd           	0:off	1:off	2:on	3:on	4:on	5:on	6:off
psacct         	0:off	1:off	2:on	3:on	4:on	5:on	6:off
pure-ftpd      	0:off	1:off	2:on	3:on	4:on	5:on	6:off
ror            	0:off	1:off	2:on	3:on	4:on	5:on	6:off
rpcbind        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
rsyslog        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
saslauthd      	0:off	1:off	2:off	3:on	4:off	5:off	6:off
sshd           	0:off	1:off	2:on	3:on	4:on	5:on	6:off
sysstat        	0:off	1:on	2:on	3:on	4:on	5:on	6:off
udev-post      	0:off	1:on	2:on	3:on	4:on	5:on	6:off
vzquota        	0:on	1:on	2:on	3:on	4:on	5:on	6:on</pre>
<p>From the services listed (notice the <em>3:0n</em> column) that are running, most of them are necessary for the proper operation of the server. The ones I am questioning are exim, fastmail, mailman and ror.</p>
<p>My server doesn't work as an email server and I don't want it to be a relay, the first 3 services I listed are related to mailserver stuff. If I know my stuff, then I'm willing to bet that those services aren't needed for my WordPress site to operate properly.</p>
<p>But what about email sending from WordPress? WordPress sends email out sometimes, like when there are updates, or sometimes certain plugins send updates and alerts. I believe that the sendmail script is all that's needed for that, but I decided to test this theory.</p>
<p>Then the 4th service I found suspect is ror which is the Ruby on Rails service. I don't have any ROR apps running so I don't know why that would even be active.</p>
<h3>Turning services on and off</h3>
<p>You can turn a service off and on with a simple command:</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig servicename off</pre>
<p>That turns off a service named <em>servicename</em>. Changing "off" to "on" turns it back on. Note that this command is temporary until the server restarts, so if you make a mistake or shut down a service that you shouldn't have turned off, you may need to reboot the server and the service will restart automatically.</p>
<p>This is how I test to see if I need a service. I first turn it off and then check the site, then if all works fine, I make the service permanently turned off, so it stays that way even after the server restarts. You can see more information on how to use the <a href="https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/s2-services-chkconfig.html" target="_blank" rel="noopener">chkconfig utility here</a>.</p>
<p>To make a service stay turned off permanently, I use this command:</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig --level 3 servicename off

</pre>
<h3>Testing services before making permanent changes</h3>
<p>To verify that the services I want to disable will not affect my WordPress site and prevent it from sending email, I'll turn off each one at a time and then test my site's ability to send an email. In this case, I'm using a basic contact form from <a href="http://oglink.it/wpforms" target="_blank" rel="noopener">WP Forms</a> to make sure sending email still works.</p>
<p>So I run this command to turn off exim:</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig exim off</pre>
<p>I then use the test contact form to confirm the site can still send email, I also check the inbox to make sure I received the message. If you're going to follow my steps, I also recommend you test all this before you make any changes to the services running to make sure it's all working fine to begin with.</p>
<p>After I turned off exim, I could send messages just fine. Next up fastmail.</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig fastmail off</pre>
<p>This also resulted in being able to send emails fine. Next is mailman.</p>
<pre class="lang:sh decode:true">root@servername [~]# mailman mailman off</pre>
<p>I turned off all four services, fastmail, mailman, exim, and ror without any adverse side effects. So the next step is to permanently turn off each of those services, like this:</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig --level 3 fastmail off
root@servername [~]# chkconfig --level 3 exim off
root@servername [~]# chkconfig --level 3 mailman off
root@servername [~]# chkconfig --level 3 ror off</pre>
<p>To confirm that all the changes are permanent, I rebooted my VPS using the restart server button from my Inmotion account dashboard. I don't use the built in reboot or shutdown command from the command line because the server never seems to come back up if I do that. There must be a routine that happens when the server is rebooted from the dashboard instead of the command line so keep that in mind if you feel like restarting your server from the command line.</p>
<p><a href="http://notagrouch.com/wp-content/uploads/inmotion-hosting-restart-vps.jpg"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-50269" src="http://notagrouch.com/wp-content/uploads/inmotion-hosting-restart-vps.jpg" alt="" width="826" height="463" /></a></p>
<p>I confirm one more time with the chkconfig command to list what is running on runlevel 3:</p>
<pre class="lang:sh decode:true">root@servername [~]# chkconfig |grep 3\:on
apf            	0:off	1:off	2:off	3:on	4:on	5:on	6:off
atd            	0:off	1:off	2:off	3:on	4:on	5:on	6:off
cpanel         	0:off	1:off	2:off	3:on	4:on	5:on	6:off
crond          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
filelimits     	0:off	1:off	2:on	3:on	4:on	5:on	6:off
httpd          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
ip6tables      	0:off	1:off	2:on	3:on	4:on	5:on	6:off
ipaliases      	0:off	1:off	2:on	3:on	4:on	5:on	6:off
iptables       	0:off	1:off	2:on	3:on	4:on	5:on	6:off
messagebus     	0:off	1:off	2:on	3:on	4:on	5:on	6:off
modules_dep    	0:off	1:off	2:on	3:on	4:on	5:on	6:off
mysql          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
named          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
netfs          	0:off	1:off	2:off	3:on	4:on	5:on	6:off
network        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
nscd           	0:off	1:off	2:on	3:on	4:on	5:on	6:off
psacct         	0:off	1:off	2:on	3:on	4:on	5:on	6:off
pure-ftpd      	0:off	1:off	2:on	3:on	4:on	5:on	6:off
rpcbind        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
rsyslog        	0:off	1:off	2:on	3:on	4:on	5:on	6:off
saslauthd      	0:off	1:off	2:off	3:on	4:off	5:off	6:off
sshd           	0:off	1:off	2:on	3:on	4:on	5:on	6:off
sysstat        	0:off	1:on	2:on	3:on	4:on	5:on	6:off
udev-post      	0:off	1:on	2:on	3:on	4:on	5:on	6:off
vzquota        	0:on	1:on	2:on	3:on	4:on	5:on	6:on</pre>
<p>Notice the services are not listed as being "on" for runlevel 3, success! There are a few other services that other sysadmins would question, like named. In my case, I'm pretty sure that I need everything else listed here for now.</p>
<p>While the active resources that these services may not be very significant, I don't need any mail services running. I also noticed in my mail logs that spammers have been trying to use my server as an email relay, turning off all mail related services should help minimize this activity. To be sure that gets shut down as well, I should turn off all ports that aren't needed. I will tackle that in another post soon.</p>
<h2>Conclusion</h2>
<p>If you want to start squeezing every bit of performance out of your VPS server, this is an example of some of the things you can do. In this case, I showed you how I turned off 4 services that were running but not being utilized. They may not impact your server significantly, but every bit counts and this is easy to do so why not start with this. You may have other unused services running, but this should be a good guide to show you how to find said services, test them and then turn it off if they're not needed.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/server-performance-improvements-wordpress-turning-off-services/">Server Performance Improvements for WordPress &#8211; Turning off Services</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>5 Tips to Help you Kill Writer&#8217;s Block</title>
		<link>https://notagrouch.com/5-tips-help-kill-writers-block/</link>
					<comments>https://notagrouch.com/5-tips-help-kill-writers-block/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Sat, 10 Jun 2017 12:15:24 +0000</pubDate>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[vlog]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=50209</guid>

					<description><![CDATA[<p>I've been helping people start blogs for years now. Starting a blog is one thing, and it is perhaps the most important thing towards becoming a successful blogger. I mentioned that in the fifth video from the 100-day challenge. But once the blog is started and you have a couple articles posted you will certainly face...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/5-tips-help-kill-writers-block/">5 Tips to Help you Kill Writer&#8217;s Block</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've been helping people start blogs for years now. Starting a blog is one thing, and it is perhaps the most important thing towards becoming a successful blogger. I mentioned that in the <a href="https://www.youtube.com/watch?v=Tp7l0ClPcmk" target="_blank" rel="noopener">fifth video</a> from the <a href="http://notagrouch.com/100-day-challenge/">100-day challenge</a>.</p>
<p>But once the blog is started and you have a couple articles posted you will certainly face the dreaded writer's block. Maybe it will happen on your fourth blog post, or maybe on your 12th blog post. But every blogger faces writer's block sometimes.</p>
<p>Maybe because we're lacking creativity at that moment, maybe because we are distracted, or maybe we're just not in the mood to write. But maybe you're out of ideas.</p>
<p>This is where I have some help for you today. Having ideas to write about is important, so how do you get new ideas flowing? I have a few tips and five sources for new ideas that should help you get unstuck from that annoying writer's block.</p>
<div class="entry-content-asset videofit"><iframe title="5+ Sources to Help you Kill Writer&#039;s Block - 100 Day Challenge (video 9)" width="720" height="405" src="https://www.youtube.com/embed/5W-WL80vBdo?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>Conclusion</h2>
<p>Getting new ideas for blog posts isn't too difficult, you just have to think of the stuff you already know and try to use some of the sources I suggest. Try not to overcomplicate your posts and keep them focused on one topic at a time.</p>
<p>Once you come up with an idea for a blog post using the tips I gave you in the video, you may get a few more ideas right away so make sure you write those down for future blog posts.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/5-tips-help-kill-writers-block/">5 Tips to Help you Kill Writer&#8217;s Block</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/5-tips-help-kill-writers-block/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Are You in Control of Your Time and Productivity?</title>
		<link>https://notagrouch.com/control-time-productivity/</link>
					<comments>https://notagrouch.com/control-time-productivity/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Sun, 07 May 2017 12:15:41 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[resources]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=49854</guid>

					<description><![CDATA[<p>Gary Vaynerchuck talks a lot about "knowing who you are." And It's true, that's something we should do. "Know Thyself" would say Plato. So... do you know what you're good at? What about what you're not so good at? For me, it's time management and time commitments. I say yes to a lot of projects,...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/control-time-productivity/">Are You in Control of Your Time and Productivity?</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Gary Vaynerchuck talks a lot about "knowing who you are." And It's true, that's something we should do.</p>
<p>"Know Thyself" would say Plato.</p>
<p>So... do you know what you're good at? What about what you're not so good at?</p>
<p>For me, it's time management and time commitments. I say yes to a lot of projects, then I end up having way too many things on my plate. This leads me to have a lot of stuff that clutters my mind and keeps me bouncing from one thing to another until I burn out.</p>
<p>Then I fire off a quick Youtube video to take a break, next thing you know, several hours have passed. It's easy to go down the rabbit hole of distractions online, then you look, and it's bed time! And a lot of stuff is still pending.</p>
<p>Where did all the time go? Can't you relate?</p>
<p>You still haven't started your online business, or you didn't start that campaign you wanted, or you didn't call your mother, and you still have laundry to do, and the oil change is overdue.</p>
<p>The list goes on.</p>
<p>Time is our most precious commodity. Not only is it gone once it passes, but we as humans don't know how much we have left.</p>
<div class="affbox">By the way, this post has affiliate links which may compensate me if you purchase the product or service being featured. You will never pay more by using my links, but doing so helps me keep this blog running. Learn more about this <a href="http://notagrouch.com/sponsor-affiliate-disclosure/">here</a>.</div>
<h2>No judgment here!</h2>
<p>I'm not going to judge you if you like to binge-watch the latest in Netflix. I watched Stranger Things in one night. A dirty little secret is that I watched the entire remake of Battlestar Galactica in about 2 weeks a couple of years back.</p>
<p>So believe me I'm nobody to judge you on how you procrastinate!</p>
<p>But I do have something that will change everything for you. Something that can fix your productivity and time management woes.</p>
<p>As long as you use this tool, you will see an improvement in how you allocate your time. This is the app of the week and part of the spotlight feature series.</p>
<p>The app is called <a href="http://oglink.it/timedoctor" target="_blank" rel="noopener">Time Doctor</a>. I first started using it several years ago when my buddy <a href="http://syedbalkhi.com/" target="_blank" rel="noopener">Syed Balkhi</a> recommended it as a way to manage productivity better.</p>
<p><img decoding="async" class="size-full wp-image-49856" src="http://notagrouch.com/wp-content/uploads/Smart_Employee_Time_Tracking_Software_with_Screenshots___Time_Doctor.jpg" alt="" width="765" height="613" /></p>
<h2>Time Doctor tracks, it measures and holds you accountable</h2>
<p>It's an app, you install it, and it tracks what you're working on. It keeps track of time, and it helps you stay focused on what you're supposed to be working. Its strength is on the desktop but it also works on your mobile device.</p>
<p>It holds you accountable, and it helps you measure your time. It's a godsend for freelancers, bloggers, social media geeks and anybody that needs to keep track of time spent on projects.</p>
<p>It is especially useful for companies that want to or need to give their employees a strong time-tracking tool. I'd venture to say that it is the strongest tool I've tried in its category. Better than Harvest, better than Freshbooks, and I looove <a href="http://oglink.it/freshbooks" target="_blank" rel="noopener">Freshbooks</a>.</p>
<p>But Time Doctor is also great if you just want to improve your time allocation and prioritization, or learn more about yourself. Here's a quick overview of the strongest features:</p>
<figure id="attachment_49858" aria-describedby="caption-attachment-49858" style="width: 884px" class="wp-caption alignleft"><a href="http://oglink.it/timedoctor-screenshotfeatures" target="_blank" rel="noopener"><img decoding="async" class="size-full wp-image-49858" src="http://notagrouch.com/wp-content/uploads/timedoctor-features.jpg" alt="" width="884" height="699" /></a><figcaption id="caption-attachment-49858" class="wp-caption-text">The main features of Time Doctor highlighted</figcaption></figure>
<p>It gives you beautiful reports and graphs and points out where you've mismanaged your time. If you say you're working on a report, but click over to Facebook or Youtube, it will pop up a gentle question:</p>
<p>"Are you still working on that report?"</p>
<p>Just to remind you that you said you'd be working on it...</p>
<p>Time Doctor is awesome. It works for you, and it works for teams if you have one, <a href="http://oglink.it/timedoctor" target="_blank" rel="noopener">check it out here</a> and start using it, plans start at $5.00 and they have a limited version for free too. You can thank me later (or now by leaving a comment below).</p>
<p>Oh yeah, almost forgot to mention that Time Doctor integrates with your favorite project management and accounting tools.</p>
<p>It integrates with the tools you already use, like Basecamp, Slack, Quickbooks, Zendesk, Asana and many more.</p>
<figure id="attachment_49859" aria-describedby="caption-attachment-49859" style="width: 1125px" class="wp-caption alignleft"><a href="http://oglink.it/timedoctor-screenshotapps" target="_blank" rel="noopener"><img loading="lazy" decoding="async" class="size-full wp-image-49859" src="http://notagrouch.com/wp-content/uploads/time_doctor_software_integration.jpg" alt="" width="1125" height="205" /></a><figcaption id="caption-attachment-49859" class="wp-caption-text">The software is simple but sophisticated in its integration with other apps</figcaption></figure>
<p>Visit <a href="http://oglink.it/timedoctor-learnmore" target="_blank" rel="noopener">Time Doctor</a> to learn more or try it out for yourself.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/control-time-productivity/">Are You in Control of Your Time and Productivity?</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/control-time-productivity/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How Do I Get Visitors and Traction to my New Forum?</title>
		<link>https://notagrouch.com/how-do-i-get-visitors-and-traction-to-my-new-forum/</link>
					<comments>https://notagrouch.com/how-do-i-get-visitors-and-traction-to-my-new-forum/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Tue, 15 Dec 2015 18:26:00 +0000</pubDate>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[Neil Patel]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=45979</guid>

					<description><![CDATA[<p>Everybody wants more traffic. Everybody wants to get more people on their website or forum.</p>
<p>But how do you actually achieve this. Your amazing writing is just not enough.</p>
<p>Let me show you what I have learned about this.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/how-do-i-get-visitors-and-traction-to-my-new-forum/">How Do I Get Visitors and Traction to my New Forum?</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 question I get all the time. And the answer is the same most of the time. In fact, you can replace with almost any other web property.</p>
<h2>The answer is the same for all.</h2>
<p>You have to provide valuable content for the readers and you have to promote the forum to the people that will benefit from that content.</p>
<p>Just because you build it, doesn't mean they will come.</p>
<p>If you have loads of cash, you can do what Neil Patel did with his forum when he launched it. Send $5000 cash to each of your friends and ask them to join and participate.</p>
<figure id="attachment_45980" aria-describedby="caption-attachment-45980" style="width: 870px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/traffic-needs-reason.jpg" rel="attachment wp-att-45980"><img loading="lazy" decoding="async" class="size-large wp-image-45980" src="http://notagrouch.com/wp-content/uploads/traffic-needs-reason-870x489.jpg" alt="Traffic needs a reason to come to your site. Do it right and traffic will come." width="870" height="489" /></a><figcaption id="caption-attachment-45980" class="wp-caption-text">Traffic needs a reason to come to your site. Do it right and traffic will come.</figcaption></figure>
<h2>But chances are that paying would not work.</h2>
<p>Neil has built some heavy duty social capital by providing huge value. He's built trust and a brand so when it came time to promote his new endeavor it was easy.</p>
<p>That's why he was able to pay for this. He basically paid for his friend's time to help him launch and multiply the trust and recognition on the forum.</p>
<p>But you don't have $50,000 or $100,000 to spend</p>
<p>So you have to go to the basics. The basics will always help you. Provide value. After you think you have provided good valuable content, then do it some more.</p>
<p>Then again. You do this by answering questions and letting the people that asked the questions know you've answered them.</p>
<h2>Pay attention!</h2>
<p>This isn't rocket science nor is my prescription something that involves a lot of research. It's almost common sense. Look at how people are doing it, do some googling. Ask questions and then follow a guide or tutorial or the steps of someone that has done what you want to do.</p>
<p>Another friend, <a href="http://www.matthewwoodward.co.uk/" target="_blank" rel="noopener">Matthew Woodward</a> built his reputation this way and now he's got one of the most popular internet marketing blogs and forums.</p>
<p>Matthew simply looked for the people that would be his audience. He found what questions they had by understanding what problems they were facing. Then he would go to his website and answer the question in excruciating detail.</p>
<p>&nbsp;</p>
<p>Of course, there are technical steps to doing things correctly, but these are technical, they're methodical and almost trivial. You can just follow best practices, but you have to have value. You have to provide content, solutions, entertainment.</p>
<p>Matthew's answers have been some of the best and people recognize this so they always go back for more. Matthew reportedly spends over 20 hours writing one of his legendary blogposts, sometimes twice that.</p>
<p>He once told me that he simply needs to outwork everyone else and the rest just happens, in other words...</p>
<h2>Get off your ass and start working</h2>
<p>It doesn't take rocket science, but it takes a lot of effort and consistency to achieve the trust you need to make a website property stand out. You have to do the legwork, you have to put in the time.</p>
<p>If you don't, you simply become like one more website or forum from the billions out there.</p>
<p>Get great content online and then show it to the people that need to see it. Do this and you will be ahead of the curve.</p>
<p>Installing a forum is trivial, <a href="http://howtoblogtutorials.com/" target="_blank" rel="noopener">starting a blog</a> takes 5 minutes, running updates and changing settings can be done without any real thought.</p>
<p>Creating valuable content is the art and science that will help your forum succeed. As the saying goes <strong>content is king.</strong></p>
<p>Oh yeah, and don't forget to promote what you write. Share it in social media, use your email list, tell people about it. You do have an email list right?</p>
<p>[last-modified]</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/how-do-i-get-visitors-and-traction-to-my-new-forum/">How Do I Get Visitors and Traction to my New Forum?</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/how-do-i-get-visitors-and-traction-to-my-new-forum/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to do Guerilla Marketing by Daymond John</title>
		<link>https://notagrouch.com/guerilla-marketing-daymond-john/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Sun, 26 Jan 2014 06:04:21 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[videos]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=39301</guid>

					<description><![CDATA[<p>This is a great video teaching you how to do Guerilla Marketing for your business. It's short and sweet. It has a subtle pitch for shopify, but the content is solid and valuable for today's entrepreneurs. Especially for startups and companies that are still honing in their strengths and finding the best channels to market...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/guerilla-marketing-daymond-john/">How to do Guerilla Marketing by Daymond John</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 great video teaching you how to do Guerilla Marketing for your business. It's short and sweet. It has a subtle pitch for shopify, but the content is solid and valuable for today's entrepreneurs. Especially for startups and companies that are still honing in their strengths and finding the best channels to market & advertise.</p>
<p>You don't have to break your budget with marketing and advertising. You can use so many inexpensive and out-of-the-box strategies to get your brand out there and discover what works.</p>
<p>https://www.youtube.com/watch?v=g-SzOBmy338</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/guerilla-marketing-daymond-john/">How to do Guerilla Marketing by Daymond John</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Access your files anywhere with Dropbox</title>
		<link>https://notagrouch.com/access-files-anywhere-dropbox/</link>
					<comments>https://notagrouch.com/access-files-anywhere-dropbox/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Sat, 28 Sep 2013 06:13:28 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=37084</guid>

					<description><![CDATA[<p>Dropbox is your hard drive online. This is the second article in a series of posts to help you get more out of the internet. The previous article was about Evernote. Just like Evernote, Dropbox is easy to use and jam-packed with functionality and utility. Dropbox is an app that stores your files in the...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/access-files-anywhere-dropbox/">Access your files anywhere with Dropbox</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Dropbox is your hard drive online.</h2>
<p><a href="dropbox"><img loading="lazy" decoding="async" class="alignleft  wp-image-37101" alt="Dropbox-Logo-box" src="http://notagrouch.com/wp-content/uploads/2013/09/Dropbox-Logo-box.jpg" width="384" height="256" /></a><br />
This is the second article in a series of posts to help you get more out of the internet. The <a href="http://notagrouch.com/remember-things-forever-evernote/">previous article was about Evernote</a>.</p>
<p>Just like Evernote, Dropbox is easy to use and jam-packed with functionality and utility. Dropbox is an app that stores your files in the cloud and synchronizes it across all your devices. It is safe and secure from prying eyes because the files are stored with a high level of encryption. Due to its nature Dropbox works best with a high-speed internet connection.</p>
<h3>But it's not just storage.</h3>
<p>In addition to saving your files and making them available on your iPhone or iPad and your computers, Dropbox lets you share any file or folder in your account with anyone. You can share a file privately via email, or publicly by using a public link. When you send someone access to your file or a folder via email, only you and them can see and access the files or folders and you can revoke the permissions at any time. Sharing a file publicly lets you post it to Twitter, or Facebook or even your blog.</p>
<p>I use the sharing feature all the time to share picture folders with friends and family and I also collaborate with clients in various projects using shared folders. Instead of having to email each other new files or edited files, we just put the files into a shared folders. If more people become involved with the project then we simply give them permissions to access the folder. It's quick and easy.</p>
<h2>Ok, this sounds great but how much is it?</h2>
<p>Drobpox just like many of today's apps and services operates on a freemium model. The app offers a free version that works for most people. You get 2 gigabytes (GB) for free just for signing up.</p>
<p>After you sign up, you can earn more storage by sharing the app with your friends or family and by completing basic tasks like connecting your mobile device, uploading pictures to your account. From time to time Dropbox will offer special promotions to increase your storage even more. I currently have about 64GB of storage for free.</p>
<p>If the free version isn't enough for you, the Pro version offers three plans, 100 GB, 200 GB and 500 GB at a cost about $1 per GB/year. Dropbox also offers a solution for teams or companies where you can buy 1TB of storage for up to 5 people. In the business plan, additional users are $125/year and if you use all the initial terabyte of space, they'll increase it at no charge, making the business plan a virtually unlimited storage plan.</p>
<p>I can only assume and predict that prices will drop overtime as storage becomes cheaper and cheaper in the next year or two. But at $500/year for 500GB it is still a bit pricey if you compare it to your run of the mill local hard drive. So the convenience of having your files accessible from your phone, or laptop and desktop is what make Dropbox so attractive.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-37085" alt="dropbox plans offer flexibility" src="http://notagrouch.com/wp-content/uploads/2013/09/dropbox-plans.jpg" width="800" height="323" /></p>
<h2>Why do you need it?</h2>
<p>If you ever find yourself emailing files to yourself just so you can get them from your laptop or a friend's computer then you may need Dropbox. I use it daily and it is extremely useful. I move a lot between my desktop and my laptop because I work from home and various locations. I need flexibility, but I also need my files. So I have a folder in Dropbox where I keep all my current work; that way my files are available on my laptop when I go somewhere. I also have the app installed on my iPad and on my Galaxy S4 so if I need to read a document quickly I can do it without having to get to my desktop or open up my laptop.</p>
<p>You need Dropbox if you want to be more efficient and if you want to leverage the technology that is currently available. You can get pretty creative on how you use Dropbox, I use it daily for many different cases. There is even a way to have a website built with Dropbox, but I'll leave that for another post. But I can think of three ways I use Dropbox on a regular basis.</p>
<h2>Here are a few use cases</h2>
<h3><b>As a Blogger</b></h3>
<p><img loading="lazy" decoding="async" class="alignright  wp-image-37088" alt="dropbox" src="http://notagrouch.com/wp-content/uploads/2013/09/dropbox-480x343.jpg" width="336" height="240" />I can use Drop box to gather photos, and save notes or reading material to have handy at any time. Dropbox has a photo uploader feature that lets you automatically save your photos from your phone to your account. That way you can attend an event, or location that you want to blog about, take pictures and by the time you sit down to write about your experience your photos will be available for you to edit, upload and post on your blog. No messing with cables or memory cards and memory card readers, etcetera.</p>
<h3><strong>Sales </strong></h3>
<p>If you are in sales, you can keep your brochures and sales documents in a folder that is easy to access from wherever you are. You can have videos, photos, audio or PDF files there easy to show a potential client at a moment's notice.</p>
<h3>Real estate professionals</h3>
<p>Dropbox is ideal for realtors and real estate teams. While somebody is out in the field taking pictures and saving them to a shared Dropbox folder, somebody else in the office can get to work on the marketing materials for the property. Or if the agent is out with the client and somehow forgets a document, an assistant or team partner can put the document into the Dropbox folder and it would be available for the agent in the field in just a couple minutes, easier and more reliable than sending email.</p>
<h3>Photographers</h3>
<p>If you are a photographer and like to share your photos in Instagram, or Twitter, Dropbox is for you. You can take your photos with your nice camera, then save them to your Dropbox account. They'll be available to share via Instagram or Twitter or 500px. This lets you share your photos in <strong>social media networks</strong> without having to compromise the quality of your photos. As an extra bonus, Drobpox has a nice system to view photos online so you can browse through your photos, create galleries and generally manage your photos through the Dropbox system.</p>
<figure id="attachment_37095" aria-describedby="caption-attachment-37095" style="width: 689px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-37095" alt="You can create albums for your photos and share them." src="http://notagrouch.com/wp-content/uploads/2013/09/dropbox-photo-management.jpg" width="689" height="483" /><figcaption id="caption-attachment-37095" class="wp-caption-text">You can create albums for your photos and share them.</figcaption></figure>
<h3>Webmasters, programmers and other techies</h3>
<p>The geeky side of me also uses Dropbox to save configuration files for several applications I use. This is how that works. I use a program that connects to people's websites via FTP (I'll spare you the geeky details), all the website information is saved in the program and I have dozens of them. Instead of having to re save all the information on my laptop and having to update it any time it changes between my desktop and laptop, I have moved the configuration file for this app to a Dropbox folder so that any changes I make are automatically available on my desktop and my laptop.</p>
<p><strong>It plays nice with other apps</strong>. Dropbox has a really nice developer program so that other people developing apps can enhance its functionality. One of my favorite third party services that interacts with Dropbox is If This Then That (IFTTT). I can have IFTTT automatically save any photo that someone tagged me in facebook to my Dropbox for example. I could also have photos I post to instagram automatically be saved to Dropbox for backup purposes.</p>
<h2>In conclusion</h2>
<p>Using Dropbox requires no special skill. In order for you to use Dropbpox, simply install it and then start saving stuff to your new folder, just like any other folder. This automatically makes the folder and files available online via a web browser, or on any other computer that you install Dropbox. Install the mobile app for iOS, or Android and you'll have your files available there as well. Windows phones used to have a Drobpox app but it is no longer updated or published.</p>
<p>Dropbox is one of my favorite apps and I consider it a must have for anyone trying to wrangle the interwebs. It will save you time, headaches and make your life generally easier. All you have to do is use it and take advantage of it. <a href="dropbox" target="_blank">You can download it here.</a></p>
<p>If you are already using Dropbox, how do you use it?</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/access-files-anywhere-dropbox/">Access your files anywhere with Dropbox</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/access-files-anywhere-dropbox/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Autodrip and Autorespond with Mailchimp&#8217;s new Features.</title>
		<link>https://notagrouch.com/autodrip-and-autorespond-with-mailchimps-new-features/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Tue, 30 Oct 2012 20:11:36 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[resources]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=33483</guid>

					<description><![CDATA[<p>If you want a free solution, Aweber offers a free account as well. Try them out here, using my affiliate link. Some of the really fancy email systems out there like Infusionsoft, Marketo, Aweber, and others let you do what is known as a targeted drip campaign. This really just means that you can send...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/autodrip-and-autorespond-with-mailchimps-new-features/">Autodrip and Autorespond with Mailchimp&#8217;s new Features.</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-background" style="background-color:#fffbaf">Update (2021-07-19) After numerous negative experiences with Mailchimp, I no longer recommend it. Yes, they're still one of the leading email marketing service providers, but the headaches and heartaches that come with it just completely removed it from the options I think you should consider. </p>



<p>If you want a free solution, Aweber offers a free account as well. <a href="http://aweber" data-type="URL" data-id="aweber">Try them out here</a>, using my affiliate link.</p>



<div class="wp-block-image is-style-default"><figure class="alignleft is-resized"><img loading="lazy" decoding="async" src="https://notagrouch.com/wp-content/uploads/2012/10/email-drip-campaign-mailchimp.jpg" alt="" class="wp-image-33484" width="270" height="270" title="email-drip-campaign-mailchimp"/></figure></div>



<p>Some of the really fancy email systems out there like Infusionsoft, Marketo, Aweber, and others let you do what is known as a targeted drip campaign. This really just means that you can send specific messages to a sub-group of your list based on what they do or don't with your emails.</p>



<p>For example, if your reader clicks on a link that is in your email, you could send a follow-up email based on that click.</p>



<p>You could send an email announcing two specials on your website for example. Standard email as you've done in the past. Let's say that the email includes <em>Link A</em>, and <em>Link B</em>.</p>



<p>Let's also talk about two readers, hypothetically <em>Jane</em> and <em>Joe</em>. If Joe clicks on <em>link A</em>, he can be put into a queue to receive certain emails after that click. These emails could be specially crafted for people that click on link A.</p>



<p>At the same time, Jane clicks on <em>link B</em>. This action puts her into a <strong>different queue</strong> with different emails.</p>



<p>This is a marketer's dream because you can easily send different emails based on the actions of your reader. The same can be done for people that don't click on any links. This is a really nice addition to Mailchimp. You can read about this and other changes in their blog (they removed this blog post so the link has been removed).</p>



<p>They've updated the way auto-responders work, the features available, and other stuff worth taking a look.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/autodrip-and-autorespond-with-mailchimps-new-features/">Autodrip and Autorespond with Mailchimp&#8217;s new Features.</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Two easy ways to check your website&#8217;s loading time</title>
		<link>https://notagrouch.com/two-easy-ways-to-check-your-websites-loading-time/</link>
					<comments>https://notagrouch.com/two-easy-ways-to-check-your-websites-loading-time/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate></pubDate>
				<category><![CDATA[Systems Administration Blog]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[webdesign]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=33118</guid>

					<description><![CDATA[<p>Optimizing your website is important; Google gives preference to faster websites, here are two simple ways to check on and improve upon the speed of your website for ultimate performance and decreased loading times.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/two-easy-ways-to-check-your-websites-loading-time/">Two easy ways to check your website&#8217;s loading time</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If your website is loading slow, you have long or slow loading times. It's good to check your website for this problem every month at least to make sure your blog doesn't become sluggish due to a bad plugin, unoptimized image, or some broken tag. If your blog is hosted with the big boys, this shouldn't be a big issue for you. </p>
<p>A WordPress website tends to slow down overtime when the author or admin continues to add plugin after plugin just to have a new shiny feature. Each plugin takes resources and when you multiply those new resources being used, by the number of visitors accessing your site, you can have real problems with your hosting provider keeping your website up. Especially when you have a spike in traffic, as my friend Megan found out when her name hit entertainment news outlets a few weeks ago.</p>
<p>Checking your load times and reducing them as much as possible is important if you want Google to increase its love for your website. It sounds simple enough, make your website load faster and Google will give it some brownie points. But how do you actually find the things that are slowing down your website and how do you make it go faster? It's a lot like tuning a car. And the same principles apply, if you like tinkering with cars and getting every ounce of performance by tweaking the air intake and the fuel ratio and all that stuff you'll be spending time in the garage working on that stuff. If you like the results that come from tweaking your car but you don't particularly like doing the work, you can always pay someone to do it. The same is true for websites and blogs. You can follow tips and advice and even tutorials you'll find online. Each time you adjust something you'll see results and over time you should be able to adjust your entire website and see how your traffic and visitors react. Or you can pay someone to help you optimize your sites.</p>
<p><a href="http://notagrouch.com/wp-content/uploads/2012/08/pingdom-tools-oscarstech-load-times.jpg"><img loading="lazy" decoding="async" src="http://notagrouch.com/wp-content/uploads/2012/08/pingdom-tools-oscarstech-load-times-640x421.jpg" alt="Testing your website for speed and load times" title="pingdom-tools-oscarstech-load-times" width="640" height="421" class="aligncenter size-large wp-image-33119" /></a></p>
<p>[pq]Fine tuning loading times can take time and precise adjustments accompanied and directed by research and analytics.[/pq] But to get started, there are two places and things you can do. The first I'll mention applies to any website it's by Pingdom and their <a href="http://tools.pingdom.com/fpt/" target="_blank" rel="noopener">page tester tool</a> is free. It's a time load testing website into which you'll enter your own blog URL and see how it performs. The screenshot above shows you the summary view of my consulting website's results. After the summary you'll find all kinds of goodies, like each script that loads and how much time each takes. This is particularly useful to help you trim the fat in all those extra plugins, widgets, badges and other stuff that ends up accumulating in your blog without having real purpose.</p>
<p>The other option and should be used in combination with the first one, only applies to WordPress websites. Using the P3 Profiler plugin, you can actually run a detailed load test from your WordPress dashboard. </p>
<p>The <a href="http://wordpress.org/extend/plugins/p3-profiler/" rel="nofollow noopener" target="_blank">P3 Profiler plugin</a> is free and it works great. It will tell you which plugins and what parts of your website are taking the most resources and longest time. With that information you can identify the plugins, scripts, widgets, badges or images that need to be optimized or removed altogether. </p>
<p>Google also has a performance testing tool but that is a topic for another day. If you're starting your blog out, you probably don't need to do this. But if you like keeping an eye on these numbers you could take a baseline of how fast your blog loads before you do anything with it, and repeat the test each month or so and see how your blog changes overtime.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/two-easy-ways-to-check-your-websites-loading-time/">Two easy ways to check your website&#8217;s loading time</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/two-easy-ways-to-check-your-websites-loading-time/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Wappalyzer Helps Webmasters Identify Software</title>
		<link>https://notagrouch.com/wappalyzer-helps-webmasters-identify-software/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Tue, 07 Feb 2012 19:31:14 +0000</pubDate>
				<category><![CDATA[Systems Administration Blog]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[webdesign]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=29733</guid>

					<description><![CDATA[<p>This handy firefox addon will make your life easier whether you are a webmaster, systems administrator or website owner trying to know more about your website.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/wappalyzer-helps-webmasters-identify-software/">Wappalyzer Helps Webmasters Identify Software</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="alignleft size-full wp-image-29743" title="identify-what-software-running-website" src="http://notagrouch.com/wp-content/uploads/2012/02/identify-what-software-running-website.jpg" alt="" width="350" />A good webmaster in the proper sense of the word, is adept not just with hosting, but with all aspects of hosting a website. It is critical to understand webservers and supporting applications. From Apache, Nginx, Lighttpd, to IIS (yuck) and even Tomcat, to PHP, javascript and Linux. The whole webstack, yes, a good systems administrator can work most of it.</p>
<p>You know how to deploy jars and wars on tomcact, you can hack .htaccess for apache and even speed up performance with nginx or lighttpd, but guess who doesn't know or care about any of this? Your customer. They care about their bottom line and whether you can do the work or not.</p>
<p>Customers just want you to fix their stuff, they need you to get in and fix or update or change things around. To them these kind of changes are always "quick" and "should be really easy for you". But before you commit to any hard numbers on your quote or proposal, be sure you understand exactly what technologies you're working with.</p>
<p>This is where wappalyzer comes in. <a href="http://wappalyzer.com/" target="_blank" rel="noopener">Wappalyzer identifies software running on websites</a>. It runs as a Firefox addon, and it does one thing and it does it well. Wappalyzer tells you all the different technologies running on a website. This is crucial for webmasters, webdesigners and even systems administrators that run their own businesses because it allows them to identify the type of work and skills that will be required to complete the job.</p>
<p>A really skilled systems administrator or webservice company might be able to obscure some of these technologies (and you should for security), but most people don't, and even if they knew how, they won't. So you can run this addon on against a website and find out what's going on before you commit to the work or come up with your estimate.</p>
<p>In addition to the webserver, it also finds the type of traffic analytics software being used, supporting javascript technologies, additional sharing functionality and much more. It identifies: CMS, Widgets, Database managers, frameworks, caching tools, even the operating system!<br />
<a href="http://notagrouch.com/wp-content/uploads/2012/02/wappalyzer-systems-identified.jpg"><img loading="lazy" decoding="async" class="aligncenter size-medium wp-image-29734" title="wappalyzer-systems-identified" src="http://notagrouch.com/wp-content/uploads/2012/02/wappalyzer-systems-identified-280x152.jpg" alt="" width="280" height="152" /></a></p>
<p>It's easy to install, just find Wappalyzer on the Firefox addon directory and install it, reboot and then <em>Wappalyzer just works</em>.</p>
<p>Take a look at these examples of websites and what technologies they're using. The red dots indicate the system being used.</p>
<p><figure id="attachment_29736" aria-describedby="caption-attachment-29736" style="width: 280px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/2012/02/casadana.com_.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-29736 " title="Casadana.com" src="http://notagrouch.com/wp-content/uploads/2012/02/casadana.com_-280x193.jpg" alt="technologies used on casadana.com" width="280" height="193" /></a><figcaption id="caption-attachment-29736" class="wp-caption-text">Casadana.com Cufon, Google Analytics, jQuery, WordPress, Apache, CentOS & PHP</figcaption></figure></p>
<p><figure id="attachment_29737" aria-describedby="caption-attachment-29737" style="width: 280px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/2012/02/gizmodo.com_.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-29737 " title="gizmodo.com" src="http://notagrouch.com/wp-content/uploads/2012/02/gizmodo.com_-280x180.jpg" alt="technologies used by gizmodo.com" width="280" height="180" /></a><figcaption id="caption-attachment-29737" class="wp-caption-text">Gizmodo.com Google Analytics, jQuery, Quantcast, Typekit, comScore, Parse.ly & Apache</figcaption></figure></p>
<p><figure id="attachment_29738" aria-describedby="caption-attachment-29738" style="width: 280px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/2012/02/johnchow.com_.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-29738 " title="johnchow.com" src="http://notagrouch.com/wp-content/uploads/2012/02/johnchow.com_-280x254.jpg" alt="technologies johnchow.com uses" width="280" height="254" /></a><figcaption id="caption-attachment-29738" class="wp-caption-text">johnchow.com Google Analytics, Google Fonts, Gravatar, jQuery, Quantcast, Site Meter, Flash, WordPress, Apache on Unix</figcaption></figure></p>
<p><figure id="attachment_29739" aria-describedby="caption-attachment-29739" style="width: 280px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/2012/02/michaelqtodd.com-technologies.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-29739" title="michaelqtodd.com-technologies" src="http://notagrouch.com/wp-content/uploads/2012/02/michaelqtodd.com-technologies-280x195.jpg" alt="Technologies used by Michaelqtodd.com" width="280" height="195" /></a><figcaption id="caption-attachment-29739" class="wp-caption-text">michaelqtodd.com Disqus, jQuery, Flash, Youtube, ShareThis, GA, Apache</figcaption></figure></p>
<p><figure id="attachment_29740" aria-describedby="caption-attachment-29740" style="width: 280px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/2012/02/oscarstech.com_.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-29740" title="oscarstech.com" src="http://notagrouch.com/wp-content/uploads/2012/02/oscarstech.com_-280x212.jpg" alt="Technologies I use on oscarstech.com" width="280" height="212" /></a><figcaption id="caption-attachment-29740" class="wp-caption-text">oscarstech.com Disqus, GA, Google Fonts, jQuery UI, jQuery, ShareThis, WordPress on Apache</figcaption></figure></p>
<p><figure id="attachment_29741" aria-describedby="caption-attachment-29741" style="width: 280px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/2012/02/thecrissvossshow.com_.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-29741" title="thecrissvossshow.com" src="http://notagrouch.com/wp-content/uploads/2012/02/thecrissvossshow.com_-280x190.jpg" alt="Some of the technologies used by theChrissvossshow.com" width="280" height="190" /></a><figcaption id="caption-attachment-29741" class="wp-caption-text">TheChrisVossShow.com Disqus, GA, jQuery, WordPress, Clicky and Apache</figcaption></figure></p>
<p>The one thing that it doesn't do is find the hosting company. But there's another tool for that, that will be another topic soon.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/wappalyzer-helps-webmasters-identify-software/">Wappalyzer Helps Webmasters Identify Software</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Screen Capture Elite by Grizzly Ape, addon for Firefox</title>
		<link>https://notagrouch.com/screen-capture-elite-by-grizzly-ape-addon-for-firefox/</link>
					<comments>https://notagrouch.com/screen-capture-elite-by-grizzly-ape-addon-for-firefox/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate></pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[webdesign]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=28696</guid>

					<description><![CDATA[<p>Screenshot like a professional with Screen Capture Elite. Excellent addon for Firefox that gives you screen shots of any website you want. JPG or PNG available.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/screen-capture-elite-by-grizzly-ape-addon-for-firefox/">Screen Capture Elite by Grizzly Ape, addon for Firefox</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Found another great screenshot utility to help you with your website screenshots. This one is called Screen Capture Elite and its by Grizzly Ape. You can find the addon at the Firefox collection of addons; installation is straight forward.</p>
<p>Similar to the last screenshot utility we talked about, Screengrab, this one displays its activation button also on the bottom right corner of your browser.  The activation of the screen capture function is a little bit different and you should probably take a look at the preferences options to set it just the way you want it to work. If you click on it, you'll activate it as the default settings are configured, but if you right click on it, you can choose alternate settings just for the next shot.</p>
<p>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/right-lick-screen-capture-elite.jpg">Screen Capture Elite options</a>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/screen-capture-elite.jpg">After installation Screen Capture Elite</a>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/4799761.png">Grizzly Ape Logo</a>
</p>
<p><a href="https://addons.mozilla.org/en-us/firefox/addon/screen-capture-elite/" target="_blank" rel="noopener">Screen Capture Elite</a> by default is set to take a screen shot of a selection, but like I mentioned, you can change the settings by going into the Firefox Addon preferences. As you can see from the screenshot above, this addon has more options than the previous one I reviewed. Some of them are just preferences that let you configure things like setting the location of the button to take a screen capture. Other settings are a little more functional, like setting a default save location for your screen shots. This is great if you want to team this utility up with Dropbox. </p>
<p>You can <a href="https://addons.mozilla.org/en-us/firefox/addon/screen-capture-elite/" target="_blank" rel="noopener">download Screen Capture Elite</a> for Firefox at the Firefox Addons library.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/screen-capture-elite-by-grizzly-ape-addon-for-firefox/">Screen Capture Elite by Grizzly Ape, addon for Firefox</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/screen-capture-elite-by-grizzly-ape-addon-for-firefox/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Screengrab by Andy M, an addon for Firefox</title>
		<link>https://notagrouch.com/screengrab-by-andy-m-an-addon-for-firefox/</link>
					<comments>https://notagrouch.com/screengrab-by-andy-m-an-addon-for-firefox/#comments</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 18:12:47 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[webdesign]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=28679</guid>

					<description><![CDATA[<p>Excellent screenshot addon for firefox. Allows you to take a full, partial or just visible area screen grab of the current website. Screenshot can be saved to JPG or PNG.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/screengrab-by-andy-m-an-addon-for-firefox/">Screengrab by Andy M, an addon for Firefox</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Great utility to take a screenshot of your current window, the entire page or just a section.  This is available for Firefox and it works great. Created by <a href="https://addons.mozilla.org/en-us/firefox/user/5266/" target="_blank" rel="noopener">Andy M</a>.</p>
<p>Install as usual, then after installation you'll have a new icon on the bottom right hand corner of your Firefox browser. From there, you can choose to do a screen cap of just a section, or the entire site, or just certain viewable space on the web page.</p>
<p>In the settings of the addon you can pick other preferences like taking screenshots in jpg instead of png and whether you want the timestamp as part of the file name.</p>
<p>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/partial-screenshot-example.png">Partial screenshot of a sample website, ideal to do a website review.</a>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/pop-surrealism-full-screenshot.jpg">pop-surrealism-full-screenshot</a>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/screengrab-after-installation.jpg">screengrab-after-installation</a>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/screengrab-menu-save.jpg">screengrab-menu-save</a>
<a href="https://notagrouch.com/wp-content/uploads/2011/04/Screengrab-Settings.jpg">Screengrab-Settings</a>
</p>
<p>Simple, useful and very straight forward. I often use this instead of Skitch because it allows me to save a full website into an image with JPG or PNG option. This is very handy when I have to show the full view of a webpage to a client. I often use this also for initial consultations with a client in order to annotate changes that need to be made to their website. In the case that we're doing a critique or consultation, I take a full screenshot with screengrab, then I open the image with Skitch to annotate.</p>
<p>Go and <a href="https://addons.mozilla.org/en-us/firefox/addon/screengrab/" target="_blank" rel="noopener">get Screengrab for Firefox</a> right here.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/screengrab-by-andy-m-an-addon-for-firefox/">Screengrab by Andy M, an addon for Firefox</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/screengrab-by-andy-m-an-addon-for-firefox/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Synchronize Skitch with Dropbox and keep your screenshots everywhere</title>
		<link>https://notagrouch.com/synchronize-skitch-with-dropbox/</link>
					<comments>https://notagrouch.com/synchronize-skitch-with-dropbox/#respond</comments>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate></pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=28318</guid>

					<description><![CDATA[<p>If you use both of these apps, you might want to synchronize your Skitch screen captures with your Dropbox files. It is rather simple to do this but you need to do this from the command line. Full <a href="http://wiki.dropbox.com/TipsAndTricks/SyncSkitch">instructions are available</a> at the Tips and Tricks wiki from the Dropbox guys.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/synchronize-skitch-with-dropbox/">Synchronize Skitch with Dropbox and keep your screenshots everywhere</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Two of my favorite tools are Dropbox and Skitch. Dropbox synchronizes files across computers, it is really a polished application. Skitch in the other hand is a screenshot or screen grab application that is also top of the line and like Dropbox, a basic version is free.</p>
<p><figure id="attachment_28319" aria-describedby="caption-attachment-28319" style="width: 400px" class="wp-caption aligncenter"><a href="http://notagrouch.com/wp-content/uploads/2011/04/synchronize-dropbox-skitch.jpg"><img loading="lazy" decoding="async" src="http://notagrouch.com/wp-content/uploads/2011/04/synchronize-dropbox-skitch.jpg" alt="Skitch and Dropbox Synchronization Image" title="Skitch and Dropbox Synchronization" width="400" height="172" class="size-full wp-image-28319" /></a><figcaption id="caption-attachment-28319" class="wp-caption-text">You can synchronize Skitch with Dropbox</figcaption></figure></p>
<p>If you use both of these apps, you might want to synchronize your Skitch screen captures with your Dropbox files. It is rather simple to do this but you need to do this from the command line. Full instructions are available at the Tips and Tricks wiki from the Dropbox guys.</p>
<p>The trick is to create a Skitch folder in your Dropbox directory, then you move all the necessary files and folders from their original location to this newly created folder. After you do this, you then create symlinks (shortcuts) from the original location of the files and folders to the new location in Dropbox. </p>
<p>On your second computer, you just need to copy your <em>.skitch</em> files into the new Dropbox location, delete the other locations (because they are in Dropbox), and then symlink the original locations to the Dropbox counterparts.</p>
<p>After you do this, each time you save a Skitch to your history, it will automatically be available in your other computer.</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/synchronize-skitch-with-dropbox/">Synchronize Skitch with Dropbox and keep your screenshots everywhere</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/synchronize-skitch-with-dropbox/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bernice Namalich &#8211; My new Virtual Problem Solver</title>
		<link>https://notagrouch.com/bernice-namalich-my-new-virtual-problem-solver/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Wed, 13 Apr 2011 19:26:17 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[resources]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=28240</guid>

					<description><![CDATA[<p>Bernice Namalich does not exist. She's not real, she doesn't like you and she won't follow you. But she will test the hell out of your site and post your stuff on her networks till the cows come home. She's a virtually non existent, yet she'll soon be everywhere and do a lot of my...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/bernice-namalich-my-new-virtual-problem-solver/">Bernice Namalich &#8211; My new Virtual Problem Solver</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Bernice Namalich does not exist. She's not real, she doesn't like you and she won't follow you. But she will test the hell out of your site and post your stuff on her networks till the cows come home. </p>
<p>She's a virtually non existent, yet she'll soon be everywhere and do a lot of my work for me and my clients. Get to know her if you want, or not. But when you wonder who this hot chick that just friended you came from... now you know.</p>
<p>She's a repeater, a poster, a tester and a friend or follower. Say hi to her if you want on Facebook or Twitter or even on email. Just don't spam her, she doesn't like it. Send her your questions, concerns, trepidations, dilemas, tribulations and fears. She'll have an answer for you with any difficulty you encounter or any help you need. </p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/bernice-namalich-my-new-virtual-problem-solver/">Bernice Namalich &#8211; My new Virtual Problem Solver</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Another Alter Ego</title>
		<link>https://notagrouch.com/alter-ego/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Tue, 01 Feb 2011 17:15:55 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=16012</guid>

					<description><![CDATA[<p>The Webgineer, a new persona where I post all techie stuff. Check it out. </p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/alter-ego/">Another Alter Ego</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As if I don't have enough online accounts... I have created yet another one. This one, I hope will be a bit more focused on technology. I'm also trying something else new and trying to tap into the community surrounding the account so they can participate. I'm going to take it slowly but hopefully it will work out as intended. There are two places you can look at the account.</p>
<p>Tumblr - <a href="http://webgineer.tumblr.com" target="_blank" rel="noopener">http://webgineer.tumblr.com</a> (Subscribe)<br />
Twitter - <a href="http://twitter.com/webgineer" target="_blank" rel="noopener">http://twitter.com/webgineer</a> (Follow)</p>
<p>Please Follow <em>me</em> and subscribe. It's all going to be really geeky stuff. Mainly information for technology professionals and information workers. The main topics you can expect over there are Linux Related Tips and Tricks, Apps and Webapps, stuff related to running your own website, and stuff like that. </p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/alter-ego/">Another Alter Ego</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Probability and Statistics resources for Statistics Students</title>
		<link>https://notagrouch.com/probability-statistics-resources-statistics-students/</link>
		
		<dc:creator><![CDATA[Oscar Gonzalez]]></dc:creator>
		<pubDate>Fri, 14 Aug 2009 07:10:10 +0000</pubDate>
				<category><![CDATA[Opinion and Editorial]]></category>
		<category><![CDATA[resources]]></category>
		<guid isPermaLink="false">http://notagrouch.com/?p=820</guid>

					<description><![CDATA[<p>My friend is taking some statistics classes. Here are some links to help her out and hopefully it helps you out too. Included are forums to ask for help or to give help if you're a math wiz. Besides the forums, I found a couple of good cheatsheets to help you study formulas and stuff,...</p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/probability-statistics-resources-statistics-students/">Probability and Statistics resources for Statistics Students</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>My friend is taking some statistics classes. Here are some links to help her out and hopefully it helps you out too. Included are forums to ask for help or to give help if you're a math wiz. Besides the forums, I found a couple of good cheatsheets to help you study formulas and stuff, calculators and other information. </p>
<p> they have both advanced and basic probability and statistics.</p>
<p><a href="http://www.mymathforum.com/" target="_blank" rel="noopener">http://www.mymathforum.com/</a> This one is also pretty active and has a statistics section as well.</p>
<p>6 "cheatsheets" to help you out. </p>
<p>Another good looking cheatsheet in PDF <a href="http://personal.maths.surrey.ac.uk/st/K.Young/form_sheet.pdf" target="_blank" rel="noopener">http://personal.maths.surrey.ac.uk/st/K.Young/form_sheet.pdf</a></p>
<p>How to use Google Calculator. I'm not sure how much this will help, it can do trig, log base 10, log base e, square roots but not sure if it will help you <a href="http://www.google.com/help/calculator.html" target="_blank" rel="noopener">http://www.google.com/help/calculator.html</a></p>
<p>Do you know of any other Probability and Statistics resources that are worthy of sharing? Let me know in the comments and I'll add them on here.</p>
<p><!--wsa:hot-topic--></p>
<p>The post <a rel="nofollow" href="https://notagrouch.com/probability-statistics-resources-statistics-students/">Probability and Statistics resources for Statistics Students</a> appeared first on <a rel="nofollow" href="https://notagrouch.com">Digital Marketing Through Content &amp; Influence</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
