<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Brielle's Ramblings</title>
    <link>/</link>
    <description>Thoughts and rants in no particular order</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.0.2 - http://www.s9y.org/</generator>
    
    <image>
    <url>/templates/bulletproof/img/s9y_banner_small.png</url>
    <title>RSS: Brielle's Ramblings - Thoughts and rants in no particular order</title>
    <link>/</link>
    <width>100</width>
    <height>21</height>
</image>

<item>
    <title>NTP Not Working On Linux?  Check your iptables/netfilter rules.</title>
    <link>/archives/543-NTP-Not-Working-On-Linux-Check-your-iptablesnetfilter-rules..html</link>
            <category>Linux</category>
    
    <comments>/archives/543-NTP-Not-Working-On-Linux-Check-your-iptablesnetfilter-rules..html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=543</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=543</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Time to time, it&#039;s easy to get a little overly aggressive with firewall rules and lock down a service that your system depends on to function.&amp;#160; NTP is one of those services which can be a pain to get working right through an aggressive firewall.&lt;/p&gt;

&lt;p&gt;There are a few options when it comes to allowing NTP traffic, depending on the type of setup you are running, and if you are using a stateful firewall (aka connection tracking).&lt;/p&gt;

&lt;p&gt;&lt;em&gt;If you are running the standard ntpd daemon or ntpdate and no connection tracking/stateful firewalling...&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;
iptables -A INPUT -p udp --sport 123 --dport 123 &amp;lt;optional:  -s IP_Addr_Of_NTP_Server&amp;gt; -j ACCEPT
iptables -A OUTPUT -p udp --sport 123 --dport 123 &amp;lt;optional: -d IP_Addr_Of_NTP_Server&amp;gt; -j ACCEPT
&lt;/pre&gt;

&lt;p&gt;(note that the above, without the -s flag on INPUT, will allow anyone to query your NTP server unless you specifically refused them in ntpd.conf)&lt;/p&gt;

&lt;p&gt;&lt;em&gt;If you are running the standard ntpd daemon or ntpdate with connection tracking/stateful firewalling...&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;
iptables -A OUTPUT -p udp --dport 123 -m conntrack --ctstate NEW,ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -p udp --sport 123 -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT&lt;/pre&gt;

&lt;p&gt;As you can see, when using conntrack, it is much easier to control access, as the firewall can keep track of packets in and out, and will allow the return packets as appropriate.&amp;#160; If you want to allow incoming NTP connections from people, then add NEW to the ctstate.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 25 Jan 2015 12:47:05 -0700</pubDate>
    <guid isPermaLink="false">/archives/543-guid.html</guid>
    
</item>
<item>
    <title>Fixing Wifi Isses On Some Macs - 10.8.x (including 10.8.4)</title>
    <link>/archives/542-Fixing-Wifi-Isses-On-Some-Macs-10.8.x-including-10.8.4.html</link>
            <category>Mac</category>
    
    <comments>/archives/542-Fixing-Wifi-Isses-On-Some-Macs-10.8.x-including-10.8.4.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=542</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=542</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Ever since 10.8.x came out, some people (including myself) have had major issues with Wifi on our Macs.&amp;#160; The problem has existed since 10.8.0 and still exists in 10.8.4. Over time (sometimes within 10 mins), the Wifi transmission speed will gradually drop down to 2-4, and transfer speeds will drop accordingly, and not recover without a reboot.&lt;br /&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;The following conditions seem to cause this bug:&lt;/p&gt; &lt;br /&gt;
&lt;ul&gt; &lt;br /&gt;
&lt;li&gt;&lt;strong&gt;802.11n&lt;/strong&gt; (either 2.4ghz or 5ghz) wifi connection (does not seem to affect 802.11a/b/g)&lt;br /&gt;&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;Large transfers such as Time Machine backups, AFP/SMB file sharing&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;Confirmed some models of MBP 2007 15&amp;quot; (MacBookPro3,1), and some late models of MBP Unibody 2011 15&amp;quot;&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;Happens on Apple Airport Extreme (any generation) or 3rd party APs&lt;br /&gt;&lt;/li&gt; &lt;br /&gt;
&lt;/ul&gt; &lt;br /&gt;
&lt;p&gt;Rebooting fixes the problem for a while, until the large file transfer happens again.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;From 10.8.0 till 10.8.3, the fix was to take 10.6.8 or 10.7.3 &lt;strong&gt;IO80211Family.kext&lt;/strong&gt; files and swap it in.&amp;#160; The connection issue would go away and performance would be snappy and quick like it was in 10.6 and 10.7.&lt;br /&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;In 10.8.4, Apple made some changes for various reasons, which ended up breaking Wifi pretty badly if you tried the kext swap.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;I needed to fix the problem since I couldn&#039;t back out to 10.8.3.&amp;#160; I spent a few hours rummaging around through OS X&#039;s guts, swapping out files, changing settings, messing with permissions.&amp;#160; I discovered that the problem was related to changes with /usr/libexec/airportd.&amp;#160; Swapping the 10.8.4 airportd back to the one included in 10.8.3 restored Wifi.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt; I did a posting &lt;a href=&quot;https://discussions.apple.com/message/22170424#22170424&quot; target=&quot;_blank&quot;&gt;here on Apple&#039;s support forums detailing my part of the fix that makes the kext swap work again&lt;/a&gt;.&amp;#160; Unfortunately, took a little while for people to realize what I was talking about.&amp;#160; But, once they did, and tried my fix, I was getting positive feedback.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;I&#039;ve made a zip file of everything users who are suffering from Wifi problems need in order to get back up and working. You can get it &lt;a href=&quot;http://users.sosdg.org/~bruns/osx-10.8.4-wififix.zip&quot;&gt;here&lt;/a&gt;.&amp;#160; It includes the 10.6.8 and 10.7.3 &lt;strong&gt;IO80211Family.kext&lt;/strong&gt; files, as well as the kext utility you need to install them, and the 10.8.3 airportd binary that you can use to replace the 10.8.4 one.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Fri, 14 Jun 2013 11:33:39 -0600</pubDate>
    <guid isPermaLink="false">/archives/542-guid.html</guid>
    
</item>
<item>
    <title>A Thought On Blaming Gun Violence On Video Games</title>
    <link>/archives/541-A-Thought-On-Blaming-Gun-Violence-On-Video-Games.html</link>
            <category>General</category>
    
    <comments>/archives/541-A-Thought-On-Blaming-Gun-Violence-On-Video-Games.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=541</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=541</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;So, if people are willing to blame video games for causing violence, I have a great idea as well!&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;If you are going to claim that impressionable minds are going to imitate video games and go out and kill people, why aren&#039;t we putting forth a proposal to ban and burn the bible?&lt;br /&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;Afterall, &lt;a target=&quot;_blank&quot; href=&quot;http://skepticsannotatedbible.com/cruelty/long.html&quot;&gt;impressionable minds are going to read the bible and assume that it is acceptable to rape, murder, etc&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Fri, 11 Jan 2013 11:22:46 -0700</pubDate>
    <guid isPermaLink="false">/archives/541-guid.html</guid>
    
</item>
<item>
    <title>Got the Ubiquiti EdgeRouter Lite Yesterday</title>
    <link>/archives/540-Got-the-Ubiquiti-EdgeRouter-Lite-Yesterday.html</link>
            <category>General</category>
    
    <comments>/archives/540-Got-the-Ubiquiti-EdgeRouter-Lite-Yesterday.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=540</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=540</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Been a while since I last posted, but figured I&#039;d share that I got our &lt;a href=&quot;http://www.ubnt.com/edgemax&quot;&gt;EdgeRouter Lite&lt;/a&gt; yesterday.&amp;#160; Some high res pics for your enjoyment.&lt;/p&gt;&lt;br /&gt;
&lt;p&gt; &lt;a href=&quot;http://i.imgur.com/k5DSgl.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://i.imgur.com/k5DSgs.jpg&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt; &lt;a href=&quot;http://i.imgur.com/nsfiDl.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://i.imgur.com/nsfiDs.jpg&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 27 Dec 2012 16:23:33 -0700</pubDate>
    <guid isPermaLink="false">/archives/540-guid.html</guid>
    
</item>
<item>
    <title>Binders...  Binders full of women everywhere.</title>
    <link>/archives/539-Binders...-Binders-full-of-women-everywhere..html</link>
    
    <comments>/archives/539-Binders...-Binders-full-of-women-everywhere..html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=539</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=539</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;img src=&quot;/uploads/binders.jpg&quot; alt=&quot;&quot;  /&gt; 
    </content:encoded>

    <pubDate>Wed, 17 Oct 2012 11:47:06 -0600</pubDate>
    <guid isPermaLink="false">/archives/539-guid.html</guid>
    
</item>
<item>
    <title>How not to request a whitelisting in the AHBL, part 2</title>
    <link>/archives/537-How-not-to-request-a-whitelisting-in-the-AHBL,-part-2.html</link>
            <category>General</category>
    
    <comments>/archives/537-How-not-to-request-a-whitelisting-in-the-AHBL,-part-2.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=537</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=537</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Apparently, me berating Orange.fr/Orange.com last year about bulk mailing DNSbl maintainers fell on deaf ears.&lt;/p&gt;
&lt;p&gt;Hint: this is a good way to piss me off, and have the exact opposite effect than desired.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;pre&gt;
Delivery-date: Fri, 18 Nov 2011 08:06:27 -0700
From: &lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;mailto:mathieu.girol@orange.com&quot;&gt;&amp;lt;mathieu.girol@orange.com&amp;gt;&lt;/a&gt;
Date: Fri, 18 Nov 2011 16:05:56 +0100
Subject: New IP for SMTP transaction
Message-ID: 
&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;mailto:14231_1321628758_4EC67455_14231_3310_1_FFFC8BE2ADAABA48B51B0C1C6E11EBBC264DCA5093@PMEXCB1D.intranet-paris.francetelecom.fr&quot;&gt;&amp;lt;14231_1321628758_4EC67455_14231_3310_1_FFFC8BE2ADAABA48B51B0C1C6E11EBBC264DCA5093@PMEXCB1D.intranet-paris.francetelecom.fr&amp;gt;&lt;/a&gt;
To: undisclosed-recipients:;

Hello,

I am in charge of managing the France Telecom Email platform.
I would like to inform you that we have some new IPs opening SMTP transaction.

Here the list of the new IPs with there reverse DNS:

IP&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Reverse
80.12.242.29&amp;#160;&amp;#160;&amp;#160; smtpout1.wanadoo.co.uk
80.12.242.42&amp;#160;&amp;#160;&amp;#160; smtpout2.wanadoo.co.uk
80.12.242.59&amp;#160;&amp;#160;&amp;#160; smtpout3.wanadoo.co.uk
80.12.242.68&amp;#160;&amp;#160;&amp;#160; smtpout4.wanadoo.co.uk
80.12.242.80&amp;#160;&amp;#160;&amp;#160; smtpout5.wanadoo.co.uk
80.12.242.81&amp;#160;&amp;#160;&amp;#160; smtpout6.wanadoo.co.uk
193.252.23.158&amp;#160; msa1.wanadoo.co.uk
193.252.23.159&amp;#160; msa2.wanadoo.co.uk
193.252.23.168&amp;#160; msa3.wanadoo.co.uk
193.252.23.169&amp;#160; msa4.wanadoo.co.uk
193.252.22.95&amp;#160;&amp;#160; sout1.wanadoo.co.uk
193.252.22.102&amp;#160; sout2.wanadoo.co.uk
193.252.22.226&amp;#160; sout3.wanadoo.co.uk
193.252.22.253&amp;#160; sout4.wanadoo.co.uk
193.252.22.125&amp;#160; smtpout1.voila.fr
193.252.23.185&amp;#160; msa1.voila.fr
193.252.22.245&amp;#160; sout1.voila.fr
193.252.23.7&amp;#160;&amp;#160;&amp;#160; smtpout1.orange.ne
193.252.23.8&amp;#160;&amp;#160;&amp;#160; smtpout1.orange.co.ke
193.252.22.176&amp;#160; smtpout1.orange.jo
193.252.23.9&amp;#160;&amp;#160;&amp;#160; smtpout1.orangemail.cm
193.252.23.10&amp;#160;&amp;#160; smtpout1.orangemail.co.bw
193.252.23.11&amp;#160;&amp;#160; smtpout1.orangemail.ro
193.252.23.12&amp;#160;&amp;#160; smtpout1.orange.ug
193.252.23.2&amp;#160;&amp;#160;&amp;#160; smtpout1.orangemail.ch
193.252.23.150&amp;#160; msa1.orange.ne
193.252.23.151&amp;#160; msa1.orange.co.ke
193.252.23.152&amp;#160; msa1.orange.jo
193.252.23.153&amp;#160; msa1.orangemail.cm
193.252.23.154&amp;#160; msa1.orangemail.co.bw
193.252.23.155&amp;#160; msa1.orangemail.ro
193.252.23.173&amp;#160; msa1.orange.ug
193.252.23.184&amp;#160; msa1.orangemail.ch
193.252.22.227&amp;#160; sout1.orange.ne
193.252.22.230&amp;#160; sout1.orange.co.ke
193.252.22.233&amp;#160; sout1.orange.jo
193.252.22.234&amp;#160; sout1.orangemail.cm
193.252.22.238&amp;#160; sout1.orangemail.co.bw
193.252.22.239&amp;#160; sout1.orangemail.ro
193.252.22.240&amp;#160; sout1.orange.ug
193.252.22.244&amp;#160; sout1.orangemail.ch

Thank you to take into account these new IPs.

Regards,

Mathieu Girol
Responsable s=E9curit=E9 de la messagerie =E9lectronique
FT/OLNC/DPS/MSE/MIQ
T=E9l : 01 57 36 09 94
&lt;/pre&gt; 
    </content:encoded>

    <pubDate>Fri, 18 Nov 2011 17:38:06 -0700</pubDate>
    <guid isPermaLink="false">/archives/537-guid.html</guid>
    
</item>
<item>
    <title>Rest in peace, Steve Jobs</title>
    <link>/archives/536-Rest-in-peace,-Steve-Jobs.html</link>
            <category>General</category>
    
    <comments>/archives/536-Rest-in-peace,-Steve-Jobs.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=536</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=536</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Oct. 5, 2011.&amp;#160; May you rest in peace, Steve Jobs.&lt;/p&gt; 
&lt;p&gt;Normally, I don&#039;t get very emotional over the death of a CEO or other big wig at a company.&amp;#160; But, then again, Jobs was never your average big wig.&amp;#160; I feel deeply saddened over his passing.&amp;#160; Maybe it has something to do with the fact I grew up with Apple products, or maybe because even today when I look at the Mac Plus sitting on my desk that I see more then just a machine...&amp;#160;&lt;/p&gt; 
&lt;p&gt; Yes, Apple products can be overpriced and at times glitchy, but they&#039;ve always inspired me.&amp;#160; I&#039;ve spent days soldering on motherboards and doing general fixes to bring back to life machines from the 80s and 90s, just to see them turn on and make the classic start up tone.&amp;#160; I&#039;d never waste that kind of time on a PC.&lt;/p&gt; 
&lt;p&gt;When growing up, it used to piss me off when people said I&#039;d be the next Bill Gates, or asked me if I aspired to be like him.&amp;#160; I wanted to be one of the Steve&#039;s at Apple.&amp;#160; Two of the greatest pioneers in the computer world - one, his technical prowess the stuff of legends, the other perhaps the greatest salesman of the past 35 or so years.&lt;/p&gt; 
&lt;p&gt;Yes, he may have been a jerk at times, and his reality distortion field was something few others could muster, but he was Steve Jobs.&amp;#160; Not many people in this world would or can come back to the company they created years later, and turn it from a neglected and nearly bankrupt wreck into one of the most valuable and unstoppable companies to ever exist.&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 06 Oct 2011 10:07:47 -0600</pubDate>
    <guid isPermaLink="false">/archives/536-guid.html</guid>
    
</item>
<item>
    <title>Sometimes, its easy to forget...</title>
    <link>/archives/535-Sometimes,-its-easy-to-forget....html</link>
            <category>General</category>
    
    <comments>/archives/535-Sometimes,-its-easy-to-forget....html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=535</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=535</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    Sometimes, its easy to forget just how large the blades on the wind turbines can be, until you right next to one on the highway, being transported by a semi with a custom 100+ foot trailer.&amp;#160; Amazing piece of human engineering, and a thing of beauty to see it rotating in the distance. 
    </content:encoded>

    <pubDate>Sat, 27 Aug 2011 16:04:08 -0600</pubDate>
    <guid isPermaLink="false">/archives/535-guid.html</guid>
    
</item>
<item>
    <title>Look what Rick Perry's prayer for rain got us - Hurricane Irene</title>
    <link>/archives/534-Look-what-Rick-Perrys-prayer-for-rain-got-us-Hurricane-Irene.html</link>
            <category>General</category>
    
    <comments>/archives/534-Look-what-Rick-Perrys-prayer-for-rain-got-us-Hurricane-Irene.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=534</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=534</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Since the religious right seems to be so obsessed and absolutely sure that their magical sky being listens and does what they ask in prayer, then there&#039;s only one explanation for Hurricane Irene - &lt;a href=&quot;http://motherjones.com/mojo/2011/04/rick-perry-asks-texans-pray-rain&quot;&gt;Rick Perry and his prayer for rain.&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;So, to all the religious folk out there who prayed for rain, how does it feel to know you are responsible for the destruction and &lt;a href=&quot;http://latimesblogs.latimes.com/nationnow/2011/08/hurricane-irene-boy-killed-by-fallen-tree-in-virginia.html&quot;&gt;death&lt;/a&gt; that Hurricane Irene is bringing?&amp;#160; Since this is a &amp;quot;god fearing country&amp;quot; and should follow &amp;quot;god&#039;s laws&amp;quot;, even though this may not have been your intention to cause destruction, that doesn&#039;t excuse you from the repercussions of your actions.&lt;/p&gt; 
&lt;p&gt;I think criminal charges, including for murder, would be appropriate and following the law of the land.&amp;#160; Who&#039;s with me?&amp;#160; After all, they did pray for this to happen.&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sat, 27 Aug 2011 14:51:27 -0600</pubDate>
    <guid isPermaLink="false">/archives/534-guid.html</guid>
    
</item>
<item>
    <title>As if Sindy Clock didn't already let us know how she felt...</title>
    <link>/archives/533-As-if-Sindy-Clock-didnt-already-let-us-know-how-she-felt....html</link>
            <category>General</category>
    
    <comments>/archives/533-As-if-Sindy-Clock-didnt-already-let-us-know-how-she-felt....html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=533</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=533</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;As if Sindy Clock of the &amp;quot;I hope you get raped&amp;quot; fame hadn&#039;t made her feelings well enough known, she has parting words for those of us who called her out.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;&lt;a href=&quot;/uploads/screenshots/hopeyougetraped-sindyclock.png&quot;&gt;&lt;img width=&quot;451&quot; height=&quot;195&quot; src=&quot;/uploads/screenshots/hopeyougetraped-sindyclock.png&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;p&gt; &lt;/p&gt;&lt;br /&gt;
&lt;p&gt;Christian love at its finest! &lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sat, 06 Aug 2011 14:47:02 -0600</pubDate>
    <guid isPermaLink="false">/archives/533-guid.html</guid>
    
</item>
<item>
    <title>Fox News comments of death and rape threats</title>
    <link>/archives/532-Fox-News-comments-of-death-and-rape-threats.html</link>
            <category>Politics</category>
    
    <comments>/archives/532-Fox-News-comments-of-death-and-rape-threats.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=532</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=532</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;&lt;a href=&quot;http://www.reddit.com/r/reddit.com/comments/j5n7b/threats_of_rape_killing_from_fox_news_comments/&quot;&gt;Reddit has been following comments from Fox News viewers over the objection to the 9/11 cross at ground zero.&lt;/a&gt;&amp;#160; These people are not exactly what you&#039;d call the brightest people in the world - did they not realize these comments would be archived forever on the Internet? &lt;/p&gt; 
&lt;p&gt;Ahh well, &lt;a href=&quot;/uploads/screenshots/1LXA1.jpg&quot;&gt;archived&lt;/a&gt; (&lt;a href=&quot;/uploads/screenshots/I5v49.jpg&quot;&gt;2&lt;/a&gt;) here for both google karma and making sure the next time someone does a job search on these people, they find these comments.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Patrick Alley&lt;br /&gt;Tim Allison&lt;br /&gt;&lt;/strong&gt;&lt;a href=&quot;http://www.facebook.com/people/Paul-Altum/100000133134152&quot;&gt;&lt;strong&gt;Paul Altum&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/profile.php?id=100001404023406&quot;&gt;Hans Anderson&lt;/a&gt;&lt;br /&gt;Natalie Faires Bell&lt;br /&gt;Lisa Bucklaew&lt;br /&gt;Roxanne Capansky&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/people/Sindy-Clock/100000038237049&quot;&gt;Sindy Clock (Cindy Silver)&lt;/a&gt;&lt;br /&gt;Ted Copeland&lt;br /&gt;Sue Dishongh&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/profile.php?id=100002512029057&quot;&gt;Chris Dunn&lt;/a&gt;&lt;br /&gt;Ann Laneaux Escoyne&lt;br /&gt;Darlene Green&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/holeschek&quot;&gt;Mike Holeschek&lt;/a&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://clinton.tulsaschools.org/faculty/resource_teachers/raylene_ingmire/&quot;&gt;Raylene Ingmire&lt;/a&gt; (school teacher)&lt;br /&gt;Christina Juul Johnston&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/cmjz71&quot;&gt;Casey M Jones&lt;/a&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;Daniel Doreen Koepp&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;Marv Leis&lt;br /&gt;Debbie Malta&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/profile.php?id=798944898&quot;&gt;Joe Martinez&lt;/a&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;Scott Miller&lt;br /&gt;Shelia Belt Miniard&lt;br /&gt;Linda J. Murno&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;Bob O&#039;Connell&lt;/strong&gt;&lt;strong&gt;&lt;br /&gt;Laurie Parker-Pluth&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/profile.php?id=1557974969&quot;&gt;Michael Perri&lt;/a&gt;&lt;br /&gt;Tim Poitter&lt;br /&gt;Jack Poore&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;Jamie Richards&lt;br /&gt;John Rion Riley&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href=&quot;http://www.facebook.com/profile.php?id=100000781571300&quot;&gt;Eileen Rourke&lt;/a&gt;&lt;br /&gt;Laura Williams Sanders&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;Joseph Sneckenberg&lt;br /&gt;John William Thompson&lt;br /&gt;Dave Unvert&lt;br /&gt;Michael Williams&lt;br /&gt;Gary Wilson&lt;br /&gt;Blake Kennedy-Zummo&lt;/strong&gt;&lt;/p&gt; 
&lt;p&gt;More people covering it here: (&lt;a href=&quot;http://nogodz.wordpress.com/2011/07/29/threats-and-hatred-against-atheists-displayed-on-fox-news-facebook-page/&quot;&gt;1&lt;/a&gt;)(&lt;a href=&quot;http://atheists.org/blog/2011/07/29/fox-news-facebook-page-on-911-cross-generates-death-threats-against-atheists&quot;&gt;2&lt;/a&gt;)(&lt;a href=&quot;http://www.examiner.com/atheism-in-atlanta/loving-christians-respond-to-american-atheists-wtc-case&quot;&gt;3&lt;/a&gt;)(&lt;a href=&quot;http://namelessgenxer.wordpress.com/2011/07/30/sindy-clock-and-raylene-ingmire-the-voices-of-modern-christianity/&quot;&gt;4&lt;/a&gt;)(&lt;a href=&quot;http://buckscountyskepticsgroup.com/2011/07/30/okay-i-was-wrong/&quot;&gt;5&lt;/a&gt;)(&lt;a href=&quot;http://www.fark.com/comments/6433028/70751254#c70751254&quot;&gt;6&lt;/a&gt;)(&lt;a href=&quot;http://www.facebook.com/media/set/?set=a.10150265203412418.350553.71352317417&quot;&gt;7&lt;/a&gt;)(&lt;a href=&quot;http://preliatorcausa.blogspot.com/2011/07/fox-news-viewers-respond-to-atheists.html&quot;&gt;8&lt;/a&gt; Even includes transcript of the thread)&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 01 Aug 2011 10:23:47 -0600</pubDate>
    <guid isPermaLink="false">/archives/532-guid.html</guid>
    
</item>
<item>
    <title>Craigslist: Searching for spam help</title>
    <link>/archives/531-Craigslist-Searching-for-spam-help.html</link>
            <category>Amusing</category>
            <category>Spam</category>
    
    <comments>/archives/531-Craigslist-Searching-for-spam-help.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=531</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=531</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Its obviously not the first time someone&#039;s done this, but another spam fighter &lt;a href=&quot;http://memphis.craigslist.org/cpg/2512324279.html&quot;&gt;found on Craigslist&lt;/a&gt; a posting by Sam Cooper of Global Media Capital Fund (globalmediacapitalfund.tv, perhaps he should have not used his real e-mail address, &lt;a href=&quot;mailto:mmfund@aol.com&quot;&gt;mmfund@aol.com&lt;/a&gt; in the posting):&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;/uploads/screenshots/craigslist.png&quot;&gt;&lt;img width=&quot;417&quot; height=&quot;168&quot; border=&quot;2&quot; src=&quot;/uploads/screenshots/craigslist.png&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;He&#039;s requesting help with &amp;quot;HIGH Volume DIRECT Send eMailing Software&amp;quot; on 500 servers with 500 domains.&lt;/p&gt; 
&lt;p&gt;Geee, I wonder what he&#039;s planning on needing 500 severs with 500 domains for?&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 26 Jul 2011 20:00:38 -0600</pubDate>
    <guid isPermaLink="false">/archives/531-guid.html</guid>
    
</item>
<item>
    <title>Avoiding issues with Thunderbird under MacOS 10.5/10.6</title>
    <link>/archives/530-Avoiding-issues-with-Thunderbird-under-MacOS-10.510.6.html</link>
            <category>General</category>
    
    <comments>/archives/530-Avoiding-issues-with-Thunderbird-under-MacOS-10.510.6.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=530</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=530</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Today while diagnosing some issues with high memory usage and general slowness on my normally quite peppy Macbook Pro, I finally discovered what may not only be causing issues with performance, but why Thunderbird sometimes goes nuts and corrupts its mailbox files.&lt;/p&gt;
&lt;p&gt;The issue seems to relate to Spotlight searching, the mdworker process, and large mailbox files in Thunderbird.&lt;/p&gt;
&lt;p&gt; Using:&lt;/p&gt;
&lt;pre&gt;sudo fs_usage -w -f filesys mdworker
&lt;/pre&gt;
&lt;p&gt;I was able to see that the mdworker process was spending alot of time trying to constantly update/access/index files in the Thunderbird folder under Library in my home directory.&lt;/p&gt;
&lt;p&gt; Bingo!&lt;/p&gt;
&lt;p&gt;So, I went into System Preferences, then Spotlight, clicked on the Privacy tab, then hit the plus sign, and using Command-G, manually added the following folder to the do not index list:&lt;/p&gt;
&lt;pre&gt;~/Library/Thunderbird
&lt;/pre&gt;
&lt;p&gt;This will prevent Spotlight from spending time indexing the Thunderbird mail files, which not only speeds up indexing if you have large mailboxes like me, but also helps avoid issues where Thunderbird will suddenly be unable to access mail folders (and sometimes, corrupt the folders).&lt;/p&gt;
&lt;p&gt;&amp;#160;So far, so good, and no more mailbox access errors in Thunderbird!&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 22 Jun 2011 13:36:17 -0600</pubDate>
    <guid isPermaLink="false">/archives/530-guid.html</guid>
    
</item>
<item>
    <title>Spamdrew Sock Puppets</title>
    <link>/archives/529-Spamdrew-Sock-Puppets.html</link>
            <category>General</category>
    
    <comments>/archives/529-Spamdrew-Sock-Puppets.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=529</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=529</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;After watching the hilarity ensue on NANAE when a wanna-be spam king had a psychological break down of epic proportions, I was thinking in my head just what bedtime is like in his house with dozens of socks:&lt;br /&gt;&lt;/p&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;p&gt;&amp;quot;&lt;span dir=&quot;ltr&quot;&gt;&lt;strong&gt;Trina Jeffries&amp;quot;:&lt;/strong&gt; Oh spam king, take me!&lt;/span&gt;&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Andrew:&lt;/strong&gt; Oh Trina!&amp;#160; Your skin is such strong woven cotton with ribs!&amp;#160; Let daddy....&lt;/p&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;p&gt;Erm.&amp;#160; Perhaps I won&#039;t continue this.&amp;#160; My mind, it burns!&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 15 Jun 2011 10:15:48 -0600</pubDate>
    <guid isPermaLink="false">/archives/529-guid.html</guid>
    
</item>
<item>
    <title>Are you ready for World IPv6 Day?</title>
    <link>/archives/528-Are-you-ready-for-World-IPv6-Day.html</link>
            <category>General</category>
    
    <comments>/archives/528-Are-you-ready-for-World-IPv6-Day.html#comments</comments>
    <wfw:comment>/wfwcomment.php?cid=528</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>/rss.php?version=2.0&amp;type=comments&amp;cid=528</wfw:commentRss>
    

    <author>nospam@example.com (Brielle)</author>
    <content:encoded>
    &lt;p&gt;Are you prepared for &lt;a href=&quot;http://www.worldipv6day.org/&quot;&gt;World IPv6 Day&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;IPv4 addresses have been depleted, and major websites are beginning to (finally) see the value in adding IPv6 addresses to their websites.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://test-ipv6.com&quot;&gt;Test your IPv6 readiness here&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sat, 04 Jun 2011 22:45:25 -0600</pubDate>
    <guid isPermaLink="false">/archives/528-guid.html</guid>
    
</item>

</channel>
</rss>
