<?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>Pingree On Security</title>
	<atom:link href="http://www.lawrencepingree.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lawrencepingree.com</link>
	<description>Advanced Persistent Security</description>
	<lastBuildDate>Mon, 20 Feb 2012 18:24:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Optimized Squid 3.1 Proxy Configuration Settings</title>
		<link>http://www.lawrencepingree.com/2012/02/20/optimized-squid-3-1-proxy-configuration-settings/</link>
		<comments>http://www.lawrencepingree.com/2012/02/20/optimized-squid-3-1-proxy-configuration-settings/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 18:05:52 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[end]]></category>
		<category><![CDATA[internal]]></category>
		<category><![CDATA[just]]></category>
		<category><![CDATA[run]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[src]]></category>
		<category><![CDATA[use]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=895</guid>
		<description><![CDATA[I&#8217;ve spent 3 months perfecting the cache capabilities of my squid cache proxy and come up with the following&#8230;although I occasionally still have some problems with http11 support this configuration has performed optimally for me. I have a 75 gig hard drive and a 2.66 celeron processor operating on opensuse 12.2. # # Recommended minimum [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent 3 months perfecting the cache capabilities of my squid cache proxy and come up with the following&#8230;although I occasionally still have some problems with http11 support this configuration has performed optimally for me. I have a 75 gig hard drive and a 2.66 celeron processor operating on opensuse 12.2.</p>
<p>#<br />
# Recommended minimum configuration:<br />
#<br />
acl manager proto cache_object<br />
acl localhost src 127.0.0.1/32 ::1<br />
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1</p>
<p># Example rule allowing access from your local networks.<br />
# Adapt to list your (internal) IP networks from where browsing<br />
# should be allowed<br />
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network<br />
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network<br />
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network<br />
acl localnet src fc00::/7 # RFC 4193 local private network range<br />
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines</p>
<p>acl SSL_ports port 443<br />
acl Safe_ports port 80 # http<br />
acl Safe_ports port 21 # ftp<br />
acl Safe_ports port 443 # https<br />
acl Safe_ports port 70 # gopher<br />
acl Safe_ports port 210 # wais<br />
acl Safe_ports port 1-65535 # unregistered ports<br />
acl Safe_ports port 280 # http-mgmt<br />
acl Safe_ports port 488 # gss-http<br />
acl Safe_ports port 591 # filemaker<br />
acl Safe_ports port 777 # multiling http<br />
acl CONNECT method GET POST HEAD CONNECT PUT DELETE</p>
<p>#<br />
# Recommended minimum Access Permission configuration:<br />
#<br />
# Only allow cachemgr access from localhost<br />
http_access allow manager localhost<br />
http_access allow manager</p>
<p># Deny requests to certain unsafe ports<br />
http_access allow !Safe_ports</p>
<p># Deny CONNECT to other than secure SSL ports<br />
http_access allow CONNECT !SSL_ports</p>
<p># We strongly recommend the following be uncommented to protect innocent<br />
# web applications running on the proxy server who think the only<br />
# one who can access services on &#8220;localhost&#8221; is a local user<br />
#http_access deny to_localhost</p>
<p>#<br />
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS<br />
#</p>
<p># Example rule allowing access from your local networks.<br />
# Adapt localnet in the ACL section to list your (internal) IP networks<br />
# from where browsing should be allowed<br />
http_access allow localnet<br />
http_access allow localhost</p>
<p># allow localhost always proxy functionality<br />
http_access allow localhost</p>
<p># And finally deny all other access to this proxy<br />
http_access allow all</p>
<p># Squid normally listens to port 3128<br />
http_port 8080 transparent</p>
<p># We recommend you to use at least the following line.<br />
hierarchy_stoplist cgi-bin ?</p>
<p># Uncomment and adjust the following to add a disk cache directory.<br />
cache_dir ufs /var/cache/squid 12288 36 256</p>
<p># Leave coredumps in the first cache dir<br />
coredump_dir /var/cache/squid</p>
<p># Add any of your own refresh_pattern entries above these.<br />
refresh_pattern ^ftp: 1440 20% 10080<br />
refresh_pattern ^gopher: 1440 0% 1440<br />
refresh_pattern -i \.(deb|rpm|exe|zip|tar|tgz|ram|rar|bin|ppt|doc|docx|tiff|pdf|uxx|gz|xls|swf|psd|js|js?|crl)$ 3440 90% 5760<br />
refresh_pattern -i \.(gif|png|jpg|jpeg|ico|bmp|tiff|png?|gif?|jpg?)$ 2440 90% 5760<br />
refresh_pattern -i \.(html|htm|html?|htm?)$ 1440 90% 5760<br />
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0<br />
refresh_pattern . 0 20% 4320<br />
ignore_expect_100 on<br />
log_icp_queries off<br />
check_hostnames off<br />
#minimum_object_size 1 KB<br />
buffered_logs on<br />
pipeline_prefetch on<br />
cache_effective_user squid<br />
cache_effective_group squid<br />
dns_v4_fallback on<br />
read_ahead_gap 512 KB<br />
cache_replacement_policy heap GDSF<br />
memory_replacement_policy heap GDSF<br />
header_replace User-Agent Mozilla/5.0 (X11; U;) Gecko/20080221 Firefox/2.0.0.9<br />
maximum_object_size 256 MB<br />
visible_hostname shadow<br />
unique_hostname shadow<br />
client_db off</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=895" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/application/" title="application" rel="tag">application</a>, <a href="http://www.lawrencepingree.com/tag/applications/" title="applications" rel="tag">applications</a>, <a href="http://www.lawrencepingree.com/tag/com/" title="com" rel="tag">com</a>, <a href="http://www.lawrencepingree.com/tag/end/" title="end" rel="tag">end</a>, <a href="http://www.lawrencepingree.com/tag/internal/" title="internal" rel="tag">internal</a>, <a href="http://www.lawrencepingree.com/tag/just/" title="just" rel="tag">just</a>, <a href="http://www.lawrencepingree.com/tag/run/" title="run" rel="tag">run</a>, <a href="http://www.lawrencepingree.com/tag/service/" title="service" rel="tag">service</a>, <a href="http://www.lawrencepingree.com/tag/src/" title="src" rel="tag">src</a>, <a href="http://www.lawrencepingree.com/tag/use/" title="use" rel="tag">use</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2012/02/20/optimized-squid-3-1-proxy-configuration-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t miss the Gartner Security and Risk Management Summit 2012!</title>
		<link>http://www.lawrencepingree.com/2012/02/14/dont-miss-the-gartner-security-and-risk-management-summit-2012/</link>
		<comments>http://www.lawrencepingree.com/2012/02/14/dont-miss-the-gartner-security-and-risk-management-summit-2012/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 19:00:37 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[compliance]]></category>
		<category><![CDATA[end]]></category>
		<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[infrastructure protection]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[National]]></category>
		<category><![CDATA[Protection]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[risk]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=891</guid>
		<description><![CDATA[A Must-Attend for 2012 11 &#8211; 14 June 2012 &#124; National Harbor, MD (Washington, D.C. area) The Gartner Security &#38; Risk Management Summit is the most comprehensive and definitive information download for CISOs as well as security, risk management and business continuity professionals. It brings together all the issues related to infrastructure protection, governance, risk [...]]]></description>
			<content:encoded><![CDATA[<h3>A Must-Attend for 2012</h3>
<p>11 &#8211; 14 June 2012 | National Harbor, MD (Washington, D.C. area)</p>
<p>The Gartner Security &amp; Risk Management Summit is the most comprehensive and definitive information download for CISOs as well as security, risk management and business continuity professionals.</p>
<p>It brings together all the issues related to infrastructure protection, governance, risk management, compliance, business continuity, disaster preparedness, and response and recovery.</p>
<p><a href="http://www.gartner.com/technology/summits/na/security/about.jsp" >Why You Should Attend</a> &#8211;&gt;</p>
<p>&nbsp;</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=891" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/business/" title="business" rel="tag">business</a>, <a href="http://www.lawrencepingree.com/tag/com/" title="com" rel="tag">com</a>, <a href="http://www.lawrencepingree.com/tag/compliance/" title="compliance" rel="tag">compliance</a>, <a href="http://www.lawrencepingree.com/tag/end/" title="end" rel="tag">end</a>, <a href="http://www.lawrencepingree.com/tag/infrastructure/" title="infrastructure" rel="tag">infrastructure</a>, <a href="http://www.lawrencepingree.com/tag/infrastructure-protection/" title="infrastructure protection" rel="tag">infrastructure protection</a>, <a href="http://www.lawrencepingree.com/tag/management/" title="management" rel="tag">management</a>, <a href="http://www.lawrencepingree.com/tag/national/" title="National" rel="tag">National</a>, <a href="http://www.lawrencepingree.com/tag/protection/" title="Protection" rel="tag">Protection</a>, <a href="http://www.lawrencepingree.com/tag/response/" title="response" rel="tag">response</a>, <a href="http://www.lawrencepingree.com/tag/risk/" title="risk" rel="tag">risk</a>, <a href="http://www.lawrencepingree.com/tag/security/" title="Security" rel="tag">Security</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2012/02/14/dont-miss-the-gartner-security-and-risk-management-summit-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save the Environment</title>
		<link>http://www.lawrencepingree.com/2012/02/12/save-the-environment/</link>
		<comments>http://www.lawrencepingree.com/2012/02/12/save-the-environment/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 20:39:17 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[management]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=888</guid>
		<description><![CDATA[For those interested in saving the environment, they can buy my emanagement skills ebook on Kindle, Apple or Android eBook Stores. Tags: management]]></description>
			<content:encoded><![CDATA[<p>For those interested in saving the environment, they can buy my emanagement skills ebook on <a rel="nofollow" href="http://www.amazon.com/Managers-Guide-Becoming-Great-ebook/dp/B005LH355O" >Kindle</a>, <a href="http://www.lawrencepingree.com/2011/12/11/bestselling-management-book-now-on-apple-ibooks/" >Apple </a>or <a href="https://market.android.com/details?id=book-YnXNdYooChIC&amp;hl=en" >Android</a> eBook Stores.</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=888" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/management/" title="management" rel="tag">management</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2012/02/12/save-the-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My latest Gartner Research:How to Control File Synchronization Services and Prevent Corporate Data Leakage</title>
		<link>http://www.lawrencepingree.com/2012/02/01/my-latest-gartner-researchhow-to-control-file-synchronization-services-and-prevent-corporate-data-leakage/</link>
		<comments>http://www.lawrencepingree.com/2012/02/01/my-latest-gartner-researchhow-to-control-file-synchronization-services-and-prevent-corporate-data-leakage/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 18:34:41 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[end]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[risk]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=875</guid>
		<description><![CDATA[A growing number of enterprise decision makers are concerned that ubiquitous file sharing onto personal devices via the cloud needs to be controlled. We discuss the risks, offer recommendations, and look at the growing set of technical solutions offering mitigation, while maintaining productivity. Gartner customers can read this research by clicking here. ·         How to [...]]]></description>
			<content:encoded><![CDATA[<p><span><span><span>A growing number of enterprise decision makers are concerned that ubiquitous file sharing onto personal devices via the cloud needs to be controlled. We discuss the risks, offer recommendations, and look at the growing set of technical solutions offering mitigation, while maintaining productivity. Gartner customers can read this research by <a href="http://my.gartner.com/portal/server.pt?open=512&amp;objID=256&amp;mode=2&amp;PageID=2350940&amp;resId=1910015&amp;ref=QuickSearch&amp;sthkw=cloud+file+sharing" >clicking here</a>.<br />
</span></span></span></p>
<p><!--[if gte mso 9]><xml><br />
 <w:worddocument><br />
  <w:view>Normal</w:view><br />
  <w:zoom>0</w:zoom><br />
  <w:trackmoves /><br />
  <w:trackformatting /><br />
  <w:punctuationkerning /><br />
  <w:validateagainstschemas /><br />
  <w:saveifxmlinvalid>false</w:saveifxmlinvalid><br />
  <w:ignoremixedcontent>false</w:ignoremixedcontent><br />
  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext><br />
  <w:donotpromoteqf /><br />
  <w:lidthemeother>EN-US</w:lidthemeother><br />
  <w:lidthemeasian>X-NONE</w:lidthemeasian><br />
  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript><br />
  <w:compatibility><br />
   <w:breakwrappedtables /><br />
   <w:snaptogridincell /><br />
   <w:wraptextwithpunct /><br />
   <w:useasianbreakrules /><br />
   <w:dontgrowautofit /><br />
   <w:splitpgbreakandparamark /><br />
   <w:dontvertaligncellwithsp /><br />
   <w:dontbreakconstrainedforcedtables /><br />
   <w:dontvertalignintxbx /><br />
   <w:word11kerningpairs /><br />
   <w:cachedcolbalance /><br />
  </w:compatibility><br />
  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel><br />
  <m:mathpr><br />
   <m:mathfont m:val="Cambria Math"/><br />
   <m:brkbin m:val="before"/><br />
   <m:brkbinsub m:val="&#45;-"/><br />
   <m:smallfrac m:val="off"/><br />
   <m:dispdef /><br />
   <m:lmargin m:val="0"/><br />
   <m:rmargin m:val="0"/><br />
   <m:defjc m:val="centerGroup"/><br />
   <m:wrapindent m:val="1440"/><br />
   <m:intlim m:val="subSup"/><br />
   <m:narylim m:val="undOvr"/><br />
  </m:mathpr></w:worddocument><br />
</xml>< ![endif]--><!--[if gte mso 9]><xml><br />
 <w:latentstyles DefLockedState="false" DefUnhideWhenUsed="true"<br />
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"<br />
  LatentStyleCount="267"><br />
  <w:lsdexception Locked="false" Priority="0" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/><br />
  <w:lsdexception Locked="false" Priority="9" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 2"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 3"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 4"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 5"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 6"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 7"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 8"/><br />
  <w:lsdexception Locked="false" Priority="9" QFormat="true" Name="heading 9"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 1"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 2"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 3"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 4"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 5"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 6"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 7"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 8"/><br />
  <w:lsdexception Locked="false" Priority="39" Name="toc 9"/><br />
  <w:lsdexception Locked="false" Priority="35" QFormat="true" Name="caption"/><br />
  <w:lsdexception Locked="false" Priority="10" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Title"/><br />
  <w:lsdexception Locked="false" Priority="1" Name="Default Paragraph Font"/><br />
  <w:lsdexception Locked="false" Priority="11" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/><br />
  <w:lsdexception Locked="false" Priority="22" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/><br />
  <w:lsdexception Locked="false" Priority="20" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/><br />
  <w:lsdexception Locked="false" Priority="59" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Table Grid"/><br />
  <w:lsdexception Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/><br />
  <w:lsdexception Locked="false" Priority="1" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/><br />
  <w:lsdexception Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading"/><br />
  <w:lsdexception Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List"/><br />
  <w:lsdexception Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid"/><br />
  <w:lsdexception Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1"/><br />
  <w:lsdexception Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2"/><br />
  <w:lsdexception Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1"/><br />
  <w:lsdexception Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2"/><br />
  <w:lsdexception Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1"/><br />
  <w:lsdexception Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2"/><br />
  <w:lsdexception Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3"/><br />
  <w:lsdexception Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List"/><br />
  <w:lsdexception Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading"/><br />
  <w:lsdexception Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List"/><br />
  <w:lsdexception Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid"/><br />
  <w:lsdexception Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/><br />
  <w:lsdexception Locked="false" UnhideWhenUsed="false" Name="Revision"/><br />
  <w:lsdexception Locked="false" Priority="34" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/><br />
  <w:lsdexception Locked="false" Priority="29" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/><br />
  <w:lsdexception Locked="false" Priority="30" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/><br />
  <w:lsdexception Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/><br />
  <w:lsdexception Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/><br />
  <w:lsdexception Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/><br />
  <w:lsdexception Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/><br />
  <w:lsdexception Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/><br />
  <w:lsdexception Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/><br />
  <w:lsdexception Locked="false" Priority="19" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/><br />
  <w:lsdexception Locked="false" Priority="21" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/><br />
  <w:lsdexception Locked="false" Priority="31" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/><br />
  <w:lsdexception Locked="false" Priority="32" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/><br />
  <w:lsdexception Locked="false" Priority="33" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/><br />
  <w:lsdexception Locked="false" Priority="37" Name="Bibliography"/><br />
  <w:lsdexception Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/><br />
 </w:latentstyles><br />
</xml>< ![endif]--><!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman","serif";}
</style>
<p>< ![endif]--></p>
<p class="MsoNormal" style="margin-left: 0in; text-indent: -0.25in;"><span style="font-size: 10pt; font-family: Symbol; color: black;"><span>·<span style="font: 7pt 'Times New Roman';">         </span></span></span><span style="font-size: 8.5pt; font-family: 'Verdana','sans-serif'; color: black;"><a href="http://my.gartner.com/portal/server.pt?gr=dd&amp;ref=g_emalert&amp;resId=1910015&amp;refVal=2876489" ><strong><span style="font-family: 'Verdana','sans-serif'; color: #0066cc; text-decoration: none;">How to Control File Synchronization Services and Prevent Corporate Data Leakage</span></strong></a></span></p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=875" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/cloud/" title="cloud" rel="tag">cloud</a>, <a href="http://www.lawrencepingree.com/tag/com/" title="com" rel="tag">com</a>, <a href="http://www.lawrencepingree.com/tag/data/" title="data" rel="tag">data</a>, <a href="http://www.lawrencepingree.com/tag/device/" title="device" rel="tag">device</a>, <a href="http://www.lawrencepingree.com/tag/end/" title="end" rel="tag">end</a>, <a href="http://www.lawrencepingree.com/tag/product/" title="product" rel="tag">product</a>, <a href="http://www.lawrencepingree.com/tag/risk/" title="risk" rel="tag">risk</a>, <a href="http://www.lawrencepingree.com/tag/service/" title="service" rel="tag">service</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2012/02/01/my-latest-gartner-researchhow-to-control-file-synchronization-services-and-prevent-corporate-data-leakage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Latest Gartner Research:Best Practices for Mitigating Advanced Persistent Threats</title>
		<link>http://www.lawrencepingree.com/2012/01/19/my-latest-gartner-researchbest-practices-for-mitigating-advanced-persistent-threats/</link>
		<comments>http://www.lawrencepingree.com/2012/01/19/my-latest-gartner-researchbest-practices-for-mitigating-advanced-persistent-threats/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 20:39:13 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[threats]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=870</guid>
		<description><![CDATA[This note provides information security practitioners with tactical and strategic best practices to mitigate the latest threats by leveraging existing and emerging security technologies. Gartner customers can access this research by clicking here. Tags: practice, Security, threats]]></description>
			<content:encoded><![CDATA[<p>This note provides information security practitioners with tactical and strategic best practices to mitigate the latest threats by leveraging existing and emerging security technologies. Gartner customers can access this research by <a href="http://my.gartner.com/portal/server.pt?open=512&amp;objID=256&amp;mode=2&amp;PageID=2350940&amp;ref=wf_kilp_recAct_8786&amp;resId=1898616" >clicking here</a>.</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=870" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/practice/" title="practice" rel="tag">practice</a>, <a href="http://www.lawrencepingree.com/tag/security/" title="Security" rel="tag">Security</a>, <a href="http://www.lawrencepingree.com/tag/threats/" title="threats" rel="tag">threats</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2012/01/19/my-latest-gartner-researchbest-practices-for-mitigating-advanced-persistent-threats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gartner Webinar:Can Chip-Level Security Lower the Risks of Cloud Computing?</title>
		<link>http://www.lawrencepingree.com/2012/01/16/gartner-webinarcan-chip-level-security-lower-the-risks-of-cloud-computing/</link>
		<comments>http://www.lawrencepingree.com/2012/01/16/gartner-webinarcan-chip-level-security-lower-the-risks-of-cloud-computing/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 23:57:14 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[direction]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[risk]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[threats]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=862</guid>
		<description><![CDATA[Mobility and cloud computing are introducing exciting new directions for consumer and business technology and services. While this can significantly increases the utility and appeal of technology, it also dramatically raises the security risk as sensitive and personal data is shared across a network. Purpose built hardware can help deal with increasing network speeds and [...]]]></description>
			<content:encoded><![CDATA[<p>Mobility and cloud computing are introducing exciting new directions for consumer and business technology and services. While this can significantly increases the utility and appeal of technology, it also dramatically raises the security risk as sensitive and personal data is shared across a network. Purpose built hardware can help deal with increasing network speeds and more complex threats. This is where semiconductor technology plays a fundamental role. Chip providers are developing business cases for implementing secure features on their products, and these are paving the way for new services for consumers and businesses. Gartner customers can view this latest webcast by <a href="http://my.gartner.com/portal/server.pt?open=512&amp;objID=256&amp;mode=2&amp;PageID=2350940&amp;resId=1871517&amp;ref=Webinar-Calendar" >registering here</a>.</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=862" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/business/" title="business" rel="tag">business</a>, <a href="http://www.lawrencepingree.com/tag/cloud/" title="cloud" rel="tag">cloud</a>, <a href="http://www.lawrencepingree.com/tag/com/" title="com" rel="tag">com</a>, <a href="http://www.lawrencepingree.com/tag/computing/" title="computing" rel="tag">computing</a>, <a href="http://www.lawrencepingree.com/tag/data/" title="data" rel="tag">data</a>, <a href="http://www.lawrencepingree.com/tag/direction/" title="direction" rel="tag">direction</a>, <a href="http://www.lawrencepingree.com/tag/product/" title="product" rel="tag">product</a>, <a href="http://www.lawrencepingree.com/tag/risk/" title="risk" rel="tag">risk</a>, <a href="http://www.lawrencepingree.com/tag/security/" title="Security" rel="tag">Security</a>, <a href="http://www.lawrencepingree.com/tag/service/" title="service" rel="tag">service</a>, <a href="http://www.lawrencepingree.com/tag/technology/" title="technology" rel="tag">technology</a>, <a href="http://www.lawrencepingree.com/tag/threats/" title="threats" rel="tag">threats</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2012/01/16/gartner-webinarcan-chip-level-security-lower-the-risks-of-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest Gartner Research:Marketing Essentials: Three Key Buying Centers for Print Security Solutions That Will Help Your Business Grow</title>
		<link>http://www.lawrencepingree.com/2012/01/16/latest-gartner-researchmarketing-essentials-three-key-buying-centers-for-print-security-solutions-that-will-help-your-business-grow/</link>
		<comments>http://www.lawrencepingree.com/2012/01/16/latest-gartner-researchmarketing-essentials-three-key-buying-centers-for-print-security-solutions-that-will-help-your-business-grow/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 23:54:03 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[market]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=865</guid>
		<description><![CDATA[Gartner customers can access my latest research on how to market and sell printers using security as a driver by clicking here. Tags: business, market, Security]]></description>
			<content:encoded><![CDATA[<p>Gartner customers can access my latest research on how to market and sell printers using security as a driver by <a href="http://my.gartner.com/portal/server.pt?open=512&amp;objID=256&amp;&amp;PageID=2350940&amp;mode=2&amp;in_hi_userid=2053521&amp;cached=true&amp;resId=1855015&amp;ref=AnalystProfile" >clicking here</a>.</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=865" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/business/" title="business" rel="tag">business</a>, <a href="http://www.lawrencepingree.com/tag/market/" title="market" rel="tag">market</a>, <a href="http://www.lawrencepingree.com/tag/security/" title="Security" rel="tag">Security</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2012/01/16/latest-gartner-researchmarketing-essentials-three-key-buying-centers-for-print-security-solutions-that-will-help-your-business-grow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Politically Correct Way to Say Merry Christmas</title>
		<link>http://www.lawrencepingree.com/2011/12/16/politically-correct-way-to-say-merry-christmas-3/</link>
		<comments>http://www.lawrencepingree.com/2011/12/16/politically-correct-way-to-say-merry-christmas-3/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:10:49 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[able]]></category>
		<category><![CDATA[america]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[celebration]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[Correct Way]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[end]]></category>
		<category><![CDATA[faith]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[Merry Christmas]]></category>
		<category><![CDATA[obligation]]></category>
		<category><![CDATA[persuasion]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[preference]]></category>
		<category><![CDATA[race]]></category>
		<category><![CDATA[recognition]]></category>
		<category><![CDATA[religious]]></category>
		<category><![CDATA[respect]]></category>
		<category><![CDATA[secular]]></category>
		<category><![CDATA[traditions]]></category>
		<category><![CDATA[wish]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=860</guid>
		<description><![CDATA[Please accept with no obligation, implied or implicit, my best wishes for an environmentally conscious, socially responsible, low-stress, non-addictive, gender-neutral celebration of the winter solstice holiday, practiced within the most enjoyable traditions of the religious persuasion of your choice, or secular practices of your choice, w ith respect for the religious/secular persuasion and/or traditions of [...]]]></description>
			<content:encoded><![CDATA[<p>Please accept with no obligation, implied or implicit, my best wishes for an environmentally conscious, socially responsible, low-stress, non-addictive, gender-neutral celebration of the winter solstice holiday, practiced within the most enjoyable <a title="Posts tagged with traditions" href="../tag/traditions/" rel="tag">traditions</a> of the <a title="Posts tagged with religious" href="../tag/religious/" rel="tag">religious</a> persuasion of your <a title="Posts tagged with choice" href="../tag/choice/" rel="tag">choice</a>, or <a title="Posts tagged with secular" href="../tag/secular/" rel="tag">secular</a> practices of your choice, w ith <a title="Posts tagged with respect" href="../tag/respect/" rel="tag">respect</a> for the religious/<a title="Posts tagged with secular" href="../tag/secular/" rel="tag">secular</a> persuasion and/or traditions of others, or their choice not to practice religious or <a title="Posts tagged with secular" href="../tag/secular/" rel="tag">secular</a> traditions at all. I also wish you a fiscally successful, personally fulfilling and medically uncomplicated <a title="Posts tagged with recognition" href="../tag/recognition/" rel="tag">recognition</a> of the onset of the generally accepted <a title="Posts tagged with calendar" href="../tag/calendar/" rel="tag">calendar</a> year 2012, but not without due respect for the calendars of choice of other cultures whose contributions to society have helped make America great. Not to imply that America is necessarily greater than any other country nor the only America in the Western Hemisphere. Also, this wish is made without regard to the race, creed, color, age, physical ability, religious <a title="Posts tagged with faith" href="../tag/faith/" rel="tag">faith</a> or sexual <a title="Posts tagged with preference" href="../tag/preference/" rel="tag">preference</a> of the wishee.</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=860" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/able/" title="able" rel="tag">able</a>, <a href="http://www.lawrencepingree.com/tag/america/" title="america" rel="tag">america</a>, <a href="http://www.lawrencepingree.com/tag/calendar/" title="calendar" rel="tag">calendar</a>, <a href="http://www.lawrencepingree.com/tag/celebration/" title="celebration" rel="tag">celebration</a>, <a href="http://www.lawrencepingree.com/tag/choice/" title="choice" rel="tag">choice</a>, <a href="http://www.lawrencepingree.com/tag/com/" title="com" rel="tag">com</a>, <a href="http://www.lawrencepingree.com/tag/correct-way/" title="Correct Way" rel="tag">Correct Way</a>, <a href="http://www.lawrencepingree.com/tag/day/" title="day" rel="tag">day</a>, <a href="http://www.lawrencepingree.com/tag/end/" title="end" rel="tag">end</a>, <a href="http://www.lawrencepingree.com/tag/faith/" title="faith" rel="tag">faith</a>, <a href="http://www.lawrencepingree.com/tag/holiday/" title="holiday" rel="tag">holiday</a>, <a href="http://www.lawrencepingree.com/tag/merry-christmas/" title="Merry Christmas" rel="tag">Merry Christmas</a>, <a href="http://www.lawrencepingree.com/tag/obligation/" title="obligation" rel="tag">obligation</a>, <a href="http://www.lawrencepingree.com/tag/persuasion/" title="persuasion" rel="tag">persuasion</a>, <a href="http://www.lawrencepingree.com/tag/practice/" title="practice" rel="tag">practice</a>, <a href="http://www.lawrencepingree.com/tag/preference/" title="preference" rel="tag">preference</a>, <a href="http://www.lawrencepingree.com/tag/race/" title="race" rel="tag">race</a>, <a href="http://www.lawrencepingree.com/tag/recognition/" title="recognition" rel="tag">recognition</a>, <a href="http://www.lawrencepingree.com/tag/religious/" title="religious" rel="tag">religious</a>, <a href="http://www.lawrencepingree.com/tag/respect/" title="respect" rel="tag">respect</a>, <a href="http://www.lawrencepingree.com/tag/secular/" title="secular" rel="tag">secular</a>, <a href="http://www.lawrencepingree.com/tag/traditions/" title="traditions" rel="tag">traditions</a>, <a href="http://www.lawrencepingree.com/tag/wish/" title="wish" rel="tag">wish</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2011/12/16/politically-correct-way-to-say-merry-christmas-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bestselling Management Book: Now on Apple iBooks!</title>
		<link>http://www.lawrencepingree.com/2011/12/11/bestselling-management-book-now-on-apple-ibooks/</link>
		<comments>http://www.lawrencepingree.com/2011/12/11/bestselling-management-book-now-on-apple-ibooks/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 02:38:47 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[just]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=850</guid>
		<description><![CDATA[If you are looking for management books, my book just released on iBooks, download a copy today by searching for &#8220;The Manager&#8217;s Guide to Becoming Great&#8221; or by searching &#8220;Lawrence Pingree&#8221; in your iBooks application on an apple device or in iTunes. Tags: application, com, day, device, just, Law, management, today]]></description>
			<content:encoded><![CDATA[<p>If you are looking for management books, my book just released on iBooks, download a copy today by searching for &#8220;The Manager&#8217;s Guide to Becoming Great&#8221; or by searching &#8220;Lawrence Pingree&#8221; in your iBooks application on an apple device or in iTunes.</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=850" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/application/" title="application" rel="tag">application</a>, <a href="http://www.lawrencepingree.com/tag/com/" title="com" rel="tag">com</a>, <a href="http://www.lawrencepingree.com/tag/day/" title="day" rel="tag">day</a>, <a href="http://www.lawrencepingree.com/tag/device/" title="device" rel="tag">device</a>, <a href="http://www.lawrencepingree.com/tag/just/" title="just" rel="tag">just</a>, <a href="http://www.lawrencepingree.com/tag/law/" title="Law" rel="tag">Law</a>, <a href="http://www.lawrencepingree.com/tag/management/" title="management" rel="tag">management</a>, <a href="http://www.lawrencepingree.com/tag/today/" title="today" rel="tag">today</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2011/12/11/bestselling-management-book-now-on-apple-ibooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest Gartner Research:News Reports Can Help Inform Your Printer Security Strategy</title>
		<link>http://www.lawrencepingree.com/2011/12/06/latest-gartner-researchnews-reports-can-help-inform-your-printer-security-strategy/</link>
		<comments>http://www.lawrencepingree.com/2011/12/06/latest-gartner-researchnews-reports-can-help-inform-your-printer-security-strategy/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 04:54:48 +0000</pubDate>
		<dc:creator>Lawrence Pingree</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[risk]]></category>

		<guid isPermaLink="false">http://www.lawrencepingree.com/?p=844</guid>
		<description><![CDATA[If you&#8217;ve seen recent headlines about printer security risks and you&#8217;re a Gartner customer you can access our latest research by clicking here. Tags: risk, Security]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve seen recent headlines about printer security risks and you&#8217;re a Gartner customer you can access our latest research by <a href="http://my.gartner.com/portal/server.pt?open=512&amp;objID=256&amp;mode=2&amp;PageID=2350940&amp;resId=1867919&amp;ref=QuickSearch&amp;sthkw=pingree" >clicking here</a>.</p>
 <img src="http://www.lawrencepingree.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=844" width="1" height="1" style="display: none;" />
	Tags: <a href="http://www.lawrencepingree.com/tag/risk/" title="risk" rel="tag">risk</a>, <a href="http://www.lawrencepingree.com/tag/security/" title="Security" rel="tag">Security</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.lawrencepingree.com/2011/12/06/latest-gartner-researchnews-reports-can-help-inform-your-printer-security-strategy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.610 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-20 11:22:09 -->
<!-- Compression = gzip -->
