<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>binary &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/binary/</link>
	<description>Feed of posts on WordPress.com tagged "binary"</description>
	<pubDate>Fri, 25 Dec 2009 15:26:12 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Read my first binary file!]]></title>
<link>http://letstrythatagain.wordpress.com/2009/12/22/read-first-binary-file/</link>
<pubDate>Wed, 23 Dec 2009 04:17:44 +0000</pubDate>
<dc:creator>michellejw</dc:creator>
<guid>http://letstrythatagain.wordpress.com/2009/12/22/read-first-binary-file/</guid>
<description><![CDATA[Wow.  I am shocked that this worked on the first try.  I created a script to read some of the header]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wow.  I am shocked that this worked on the first try.  I created a script to read some of the header information from an S7K file.  One thing that got me stuck for a bit was the fact that the byte order used is little-endian.  Turns out this is no big deal.  I just had to end things with &#8216;le&#8217;, for example <code>s.uintle</code> instead of <code>s.uint</code>.</p>
<p>So here&#8217;s my first ever script to read binary data:</p>
<pre class="brush: python;">
#!usr/bin/env Python

# Purpose: to read the header of an s7k file
# Creator: Michelle

from bitstring import *

s = BitString(filename='sample.s7k') # Read in the file sample.s7k, and create a BitString object from it
print s.pos #Print the position in the file.  For fun.

protocolversion = s.readbytes(2).uintle
offset = s.readbytes(2).uintle
syncpat = s.readbytes(4).uintle
size = s.readbytes(4).uintle
print size

odof = s.readbytes(4).uintle
odid = s.readbytes(4).uintle

year = s.readbytes(2).uintle
day = s.readbytes(2).uintle
seconds = s.readbytes(4).floatle
hours = s.readbytes(1).uintle
minutes = s.readbytes(1).uintle

print year,day,seconds,hours,minutes
</pre>
<p>And the output of my first ever binary-data-reading script:</p>
<pre>
0
396
2009 353 55.1300010681 17 53
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Installing BitString]]></title>
<link>http://letstrythatagain.wordpress.com/2009/12/22/installing-bitstring/</link>
<pubDate>Wed, 23 Dec 2009 03:30:06 +0000</pubDate>
<dc:creator>michellejw</dc:creator>
<guid>http://letstrythatagain.wordpress.com/2009/12/22/installing-bitstring/</guid>
<description><![CDATA[I&#8217;m installing BitString right now. It seems like what I need. The first sentence on the BitSt]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;m installing BitString right now.  It seems like what I need. The first sentence on the <a href="http://code.google.com/p/python-bitstring/">BitString Google Code website</a> is: &#8220;bitstring is a pure Python module designed to help make the creation, manipulation and analysis of binary data as simple and natural as possible.&#8221;  Perfect. The first thing I did was download the <a href="http://python-bitstring.googlecode.com/svn/tags/bitstring-1.1.0/bitstring_manual.pdf">manual</a> (pdf) and the <a href="http://code.google.com/p/python-bitstring/downloads/list">zipped installation file</a> for my version of Python (2.6).</p>
<p>Unzipping zipped files in Ubuntu is really easy &#8211; just right click on the file in the File Browser, and choose to Unzip using Archive Manager.  But I wanted to know how to do it using the command line.  Here is an example:</p>
<pre class="brush: bash;">
unzip bitstring-1.1.3.zip
</pre>
<p>I installed the contents of the file into the appropriate Python Module locations on my computer by going to the directory where the unzipped files were, and typing the following into the command line:</p>
<pre class="brush: bash;">
sudo python setup.py install
</pre>
<p>Now I&#8217;m ready to dig in!  Luckily, a friend of mine at work helped me out with some pointers on how to read in the s7k binary file.  He explained the commands he&#8217;d used when creating his Matlab scripts, and how the structure was defined.  He&#8217;s not a Python user, so couldn&#8217;t give me any specific Python tips, but it was enough for me to get started.  So now I have to figure out the BitString part.  The reason I&#8217;m not going with <code>struct</code> or <code>array</code> is because it seems that these are meant to work with whole bytes and are clunky when it comes to parsing out individual bits.  BitString is designed with more flexibility.</p>
<p>Fortunately BigString seems pretty straightforward.  I had a very quick look through the manual, and if I understand correctly, I will start by converting the s7k file to a BitString object, then just read through it bit by bit (or byte by byte).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New project: use Python to read multibeam data]]></title>
<link>http://letstrythatagain.wordpress.com/2009/12/21/new-project-use-python-to-read-multibeam-data/</link>
<pubDate>Tue, 22 Dec 2009 03:43:06 +0000</pubDate>
<dc:creator>michellejw</dc:creator>
<guid>http://letstrythatagain.wordpress.com/2009/12/21/new-project-use-python-to-read-multibeam-data/</guid>
<description><![CDATA[Am I getting in over my head before I&#8217;ve learned the basics?  Most likely.  But I find that if]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Am I getting in over my head before I&#8217;ve learned the basics?  Most likely.  But I find that if I set my goals high, I learn lots of unexpected things along the way.  This latest goal is probably not going to be completed from start to finish in any kind of linear fashion, and I will probably drop it and come back to it several times before its completion.</p>
<p>I&#8217;m hoping to figure out how to read S7K multibeam data format.  Not a simple challenge for someone like me who can barely piece together a print statement.  This isn&#8217;t like reading an ASCII text file.  I started reading the Data Format Definition document (DFD), and came upon some pretty daunting tasks right away, including reading headers, different number formats, and lots of bits and bytes stuff.  Scary, but sort of exciting.  When I took a computer science class way back in undergrad, I remember learning all the really basic stuff, but since I didn&#8217;t have a real application for it, it was sort of meaningless to me, and therefore did not stick in my brain.  But now it&#8217;s fun!  (I&#8217;m a nerd).  Hopefully it&#8217;ll stick this time <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>These links might be helpful:</p>
<p><a href="http://www.ibm.com/developerworks/opensource/library/os-python8/">Reading and Writing data using Python&#8217;s input and output functionality</a></p>
<p><a href="http://betterexplained.com/articles/understanding-big-and-little-endian-byte-order/">Understanding Big and Little Endian</a></p>
<p>The Learning Python book says (p. 901): &#8220;If you are processing image files, packed data created by other programs whose content you must extract, or some device data streams, chances are good that you will want to deal with it using bytes and <em>binary-mode</em> files.&#8221;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Option Trading Strategies - The Secret Power in Trading Binary Options]]></title>
<link>http://thaiuse.wordpress.com/2009/12/21/option-trading-strategies-the-secret-power-in-trading-binary-options/</link>
<pubDate>Mon, 21 Dec 2009 03:56:23 +0000</pubDate>
<dc:creator>thaiuse</dc:creator>
<guid>http://thaiuse.wordpress.com/2009/12/21/option-trading-strategies-the-secret-power-in-trading-binary-options/</guid>
<description><![CDATA[Image : http://www.flickr.com One of the least known option trading strategies involves the use of a]]></description>
<content:encoded><![CDATA[Image : http://www.flickr.com One of the least known option trading strategies involves the use of a]]></content:encoded>
</item>
<item>
<title><![CDATA[I Miss Mumbai :(]]></title>
<link>http://bhaskarranjan.wordpress.com/2009/12/19/i-miss-mumbai-%ef%81%8c/</link>
<pubDate>Sat, 19 Dec 2009 15:10:14 +0000</pubDate>
<dc:creator>Bha∫kar</dc:creator>
<guid>http://bhaskarranjan.wordpress.com/2009/12/19/i-miss-mumbai-%ef%81%8c/</guid>
<description><![CDATA[It is almost a year since I left Mumbai (the city). Actually I never like the concept of fast paced ]]></description>
<content:encoded><![CDATA[It is almost a year since I left Mumbai (the city). Actually I never like the concept of fast paced ]]></content:encoded>
</item>
<item>
<title><![CDATA[shoulda, woulda, coulda]]></title>
<link>http://coreyking.wordpress.com/2009/12/17/shoulda-woulda-coulda/</link>
<pubDate>Fri, 18 Dec 2009 00:48:11 +0000</pubDate>
<dc:creator>WPoFD</dc:creator>
<guid>http://coreyking.wordpress.com/2009/12/17/shoulda-woulda-coulda/</guid>
<description><![CDATA[I recently wrote a paper on eBusiness and telecommuting, this shoulda been my introduction: I recent]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;">I recently wrote a paper on eBusiness and telecommuting, this <em>shoulda</em> been my introduction:</p>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/o4nwe7cW_og&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/o4nwe7cW_og&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p style="text-align:left;">I recently wrote a blog on <a href="http://coreyking.wordpress.com/2009/11/30/can-you-say-no/" target="_blank"><strong>terrible customers</strong></a>, had I known about this video it <em>woulda</em> been included:</p>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/dI0SNw7-v3w&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/dI0SNw7-v3w&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>As Al Gore dreamed of the internet, he probably never imagined this <em>coulda</em> happened . . . often:</p>
<p style="text-align:center;"><a href="http://coreyking.wordpress.com/files/2009/12/tumblr_kunqbvcmlr1qa4ygxo1_500.gif"><img class="aligncenter size-full wp-image-1939" title="tumblr_kunqbvCmlr1qa4ygxo1_500" src="http://coreyking.wordpress.com/files/2009/12/tumblr_kunqbvcmlr1qa4ygxo1_500.gif" alt="" width="438" height="700" /></a></p>
<p style="text-align:center;">
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mesothelioma Treatment]]></title>
<link>http://mesotheliomaasbestosclaim.wordpress.com/2009/12/16/mesothelioma-treatment/</link>
<pubDate>Wed, 16 Dec 2009 16:30:07 +0000</pubDate>
<dc:creator>iforyouz</dc:creator>
<guid>http://mesotheliomaasbestosclaim.wordpress.com/2009/12/16/mesothelioma-treatment/</guid>
<description><![CDATA[Like all other types of cancer, mesothelioma is incurable. Although doctors and scientists have made]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p> Like all other types of cancer, <b>mesothelioma</b> is incurable. Although doctors and scientists have made great progress in diagnosis and treatment of these tumors, there is no current way to get rid of everything. </p>
<p> When a group of cells changes uncontrollably and starts invading and killing healthy cells, called cancer. In some areas of the body where cells reproduce rapidly tends to be a greater possibility of a risk, since cancer cells canmultiply exponentially in a time very fast. Most cancers are caused by external stimuli and <b>mesothelioma</b> is no different. <b>Mesothelioma</b> cancer is caused by exposure to carcinogens such <b>as asbestos.</b> </p>
<p> The affected areas from <b>mesothelioma</b> cancer are the lining of the internal organs of the body. Thanks to the position of non-infected cells, <b>mesothelioma</b> is not well to conventional treatments unlike most other forms of cancer. InIn addition, there are no obvious symptoms of illness, the doctor can properly diagnose the disease until it is clearly too advanced. Because of these factors, the effectiveness of many conventional treatments are limited. </p>
<p> <b>Mesothelioma,</b> where the <b>treatment,</b> doctors use several treatment options. Surgery, radiotherapy and chemotherapy have been traditional options for slowing the growth of cancer cells. Doctors dealing with <b>mesothelioma</b> have a planinnovative method of attack to combat this condition. New treatments like angiogenesis, photodynamic therapy and gene therapy hold new hope for victims of <b>mesothelioma</b> everywhere. Depending on the condition and location of the tumor, doctors choose the best approach to the circumstances. If you find out soon enough, doctors can prolong the life of the victim, but unfortunately not cure the disease. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Works in Progress Part III: The Genitosexual]]></title>
<link>http://bencuevas.wordpress.com/2009/12/03/works-in-progress-part-iii-the-genitosexual/</link>
<pubDate>Thu, 03 Dec 2009 09:15:00 +0000</pubDate>
<dc:creator>bencuevas</dc:creator>
<guid>http://bencuevas.wordpress.com/2009/12/03/works-in-progress-part-iii-the-genitosexual/</guid>
<description><![CDATA[This next installment in the works in progress series deals with the second chakra, Svashistana (swe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;">This next installment in the works in progress series deals with the second chakra, <em>Svashistana</em> (sweetness), which affects sexuality and reproduction. The external genitalia represented here are ambiguous in nature. I wanted to create a representation of the genitals that transcends the gender binary while utilizing its aesthetic, anatomical tropes. My choice of yarn color is relatively close to that of my own skin, referencing my personal identity and corporeality.</p>
<p style="text-align:center;"><a href="http://bencuevas.wordpress.com/files/2009/12/genitosexual-1.jpg"><img class="aligncenter size-medium wp-image-202" style="border:1px solid black;" title="Genitosexual 1" src="http://bencuevas.wordpress.com/files/2009/12/genitosexual-1.jpg?w=200" alt="" width="200" height="300" /></a></p>
<p style="text-align:center;"><a href="http://bencuevas.wordpress.com/files/2009/12/genitosexual-2.jpg"><img class="aligncenter size-medium wp-image-203" style="border:1px solid black;" title="Genitosexual 2" src="http://bencuevas.wordpress.com/files/2009/12/genitosexual-2.jpg?w=300" alt="" width="300" height="200" /></a></p>
<p style="text-align:center;"><a href="http://bencuevas.wordpress.com/files/2009/12/genitosexual-2.jpg"></a><a href="http://bencuevas.wordpress.com/files/2009/12/genitosexual-3.jpg"><img class="aligncenter size-medium wp-image-204" style="border:1px solid black;" title="Genitosexual 3" src="http://bencuevas.wordpress.com/files/2009/12/genitosexual-3.jpg?w=200" alt="" width="200" height="300" /></a></p>
<p style="text-align:center;"><a href="http://bencuevas.wordpress.com/files/2009/12/genitosexual-4.jpg"><img class="aligncenter size-medium wp-image-205" style="border:1px solid black;" title="Genitosexual 4" src="http://bencuevas.wordpress.com/files/2009/12/genitosexual-4.jpg?w=200" alt="" width="200" height="300" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to convert decimal numbers to binary using the division method]]></title>
<link>http://dplicity.wordpress.com/2009/11/30/how-to-convert-decimal-numbers-to-binary-using-the-division-method/</link>
<pubDate>Mon, 30 Nov 2009 21:34:03 +0000</pubDate>
<dc:creator>dplicity</dc:creator>
<guid>http://dplicity.wordpress.com/2009/11/30/how-to-convert-decimal-numbers-to-binary-using-the-division-method/</guid>
<description><![CDATA[Division Method Step 1: Divide the number you want to convert by 2 Step 2: If there is a remainder .]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Division Method</strong></p>
<p>Step 1: Divide the number you want to convert by 2</p>
<p>Step 2: If there is a remainder .5 enter 1, if there is no remainder enter 0</p>
<p>Step 3: Divide the resulting answer by 2</p>
<p>Step 4: Repeat the process until you divide 0 by 2</p>
<p>Step 5: The binary is recorded from Least Significant Bit (LSB) to Most Significant Bit (MSB). Reverse the order of bit numbers.</p>
<p><strong>Example:</strong></p>
<p>129/2 = 64.5</p>
<p>64/2 = 30</p>
<p>30/2 = 15</p>
<p>15/2 = 7.5</p>
<p>7/2 = 3.5</p>
<p>3/2 = 1.5</p>
<p>1/2 = 0.5</p>
<p>0/2 = 0</p>
<p>So the binary form of this decimal is 01111001</p>
<p><strong><br />
</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Google introduced "The Go Programming Language"]]></title>
<link>http://vikaskhera.wordpress.com/2009/11/29/google-introduced-the-go-programming-language/</link>
<pubDate>Sun, 29 Nov 2009 13:29:02 +0000</pubDate>
<dc:creator>Vikas Khera</dc:creator>
<guid>http://vikaskhera.wordpress.com/2009/11/29/google-introduced-the-go-programming-language/</guid>
<description><![CDATA[Google has introduced its new experimental programming language Go, which aims to combine speedy app]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Google has introduced its new experimental programming language Go, which aims to combine speedy application development through simplified coding with high-speed program execution.</p>
<p>Google&#8217;s goal is that a major Google binary should be buildable in a few seconds on a single machine. The language is concurrent, garbage-collected, and requires explicit declaration of dependencies. Simple syntax and a clean type system support a number of programming styles.</p>
<p>Go works with Google&#8217;s open-source technology Native Client, designed for running native code in web-based applications, but it is not known yet whether Go will be used in the new Google operating system, Chrome.</p>
<p><strong>For more on Go including FAQs, source code, libraries, and tutorials, please see the Go home page: <a title="http://golang.org" href="http://golang.org" target="_blank">http://golang.org</a></strong></p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/rKnDgT73v8s&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/rKnDgT73v8s&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My two favourite Geek jokes]]></title>
<link>http://roberthardie.wordpress.com/2009/11/26/my-two-favourite-geek-jokes/</link>
<pubDate>Thu, 26 Nov 2009 13:58:35 +0000</pubDate>
<dc:creator>roberthardie</dc:creator>
<guid>http://roberthardie.wordpress.com/2009/11/26/my-two-favourite-geek-jokes/</guid>
<description><![CDATA[1. Do a Google search for recursion and look at the advice line it gives you? Some Google developers]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1. Do a <a href="http://www.google.co.uk/search?hl=en&#38;safe=off&#38;newwindow=1&#38;q=recursion&#38;btnG=Search&#38;meta=&#38;aq=f&#38;oq=" target="_blank">Google search for recursion </a>and look at the advice line it gives you? Some Google developers have way too much time on their hands.</p>
<p>2. There are 10 types of people in the world: those who understand the binary system and those who don&#8217;t.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Poptropica Creators&rsquo; Blog Update 11/24/09: Binary SCREAM! Edition]]></title>
<link>http://poptropicahelpblog.wordpress.com/2009/11/25/poptropica-creators-blog-update-112409-binary-scream-edition/</link>
<pubDate>Thu, 26 Nov 2009 01:53:41 +0000</pubDate>
<dc:creator>Fierce Sky</dc:creator>
<guid>http://poptropicahelpblog.wordpress.com/2009/11/25/poptropica-creators-blog-update-112409-binary-scream-edition/</guid>
<description><![CDATA[Hello Poptropicans, &#160; First, I’d like to apologize for the delay in this post. I was very busy ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello Poptropicans,</p>
<p>&#160;</p>
<p>First, I’d like to apologize for the delay in this post. I was very busy yesterday with finishing up my remaining schoolwork before Turkey Day, so I didn’t have time to make the post.</p>
<p>&#160;</p>
<p>Anyway, yesterday’s post was titled “Now this is what I call art!” Notice how Binary Bard is the only one that doesn’t capitalize each word in his title? …Anyway…</p>
<p>&#160;</p>
<p><a href="http://2.bp.blogspot.com/_gw_QYz_mHpo/SwxhazLER5I/AAAAAAAAAWU/xh8rqyiv4H0/s1600/bardArt2.png">     <br /><img border="0" alt="" src="http://2.bp.blogspot.com/_gw_QYz_mHpo/SwxhazLER5I/AAAAAAAAAWU/xh8rqyiv4H0/s400/bardArt2.png" /></a></p>
<p>011101000110100001100101   <br />011100110110001101110010011001010110000101101101</p>
<p><img border="0" alt="avatar image" src="http://static.poptropica.com/blog/bard.gif" />    <br />BINARY BARD</p>
</p>
<p>Those numbers mean “thescream” in binary code, which is the name of the painting that the Bard is standing in front of. I am assuming this may or may not be a counterfeit piece of art, but this is <strong>definitely </strong>from Counterfeit Island. Not much debate over that.</p>
<p>&#160;</p>
<p>If there is a Creators’ Blog post tomorrow, I probably won’t post about that either, due to Thanksgiving. I am going to the parade in New York tomorrow as well as a Thanksgiving dinner with my family, so I will have no time to post.</p>
<p>&#160;</p>
<p>Have a happy Thanksgiving to each and every one of you!</p>
<p>&#160;</p>
<p>-Fierce Sky</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Binary]]></title>
<link>http://ghatak.wordpress.com/2009/11/23/binary/</link>
<pubDate>Mon, 23 Nov 2009 06:53:17 +0000</pubDate>
<dc:creator>Manojit</dc:creator>
<guid>http://ghatak.wordpress.com/2009/11/23/binary/</guid>
<description><![CDATA[One of my (mis)adventures using Bitstrips, Smackjeeves and ImageOptimizer. For more you can visit my]]></description>
<content:encoded><![CDATA[One of my (mis)adventures using Bitstrips, Smackjeeves and ImageOptimizer. For more you can visit my]]></content:encoded>
</item>
<item>
<title><![CDATA[Update 11.20.09]]></title>
<link>http://xrayintroductions.wordpress.com/2009/11/20/update-11-20-09/</link>
<pubDate>Sat, 21 Nov 2009 04:36:10 +0000</pubDate>
<dc:creator>Arron</dc:creator>
<guid>http://xrayintroductions.wordpress.com/2009/11/20/update-11-20-09/</guid>
<description><![CDATA[-After filling out about a million sheets of paper, I now can have doctors appointments and prescrip]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>-After filling out about a million sheets of paper, I now can have doctors appointments and prescriptions for $5. This makes me very happy. Usually, I&#8217;m terrified of going into any medical building, but this place was super friendly, and I really felt like they cared (which is rare for any kind of clinic, especially one for low/no income folks). My blood pressure was a bit high, but that might have just been from my nerves and the very cute nurse that was administered to me. Apparently, I&#8217;ve gained a lot of weight and the lymph nodes in my neck are swollen (have to get some blood work done here soon)? But yeah, two hours later I walked out of the clinic with my medicine in my hand. Hopefully the real me will come back soon.</p>
<p>-Wednesday, I co-taught a class on gender/transgender issues. Only three people showed up (turned out to be a diverse crowd though), but I feel like they all got a lot out of it. Need to start somewhere, right? Actually, the conversation was quite productive and they even got a little riled up about trans rights, society, respect, labels, and all that good stuff. I&#8217;m thinkin&#8217; the next class will have more people in attendance.</p>
<p>We discussed passing in depth. You wouldn&#8217;t think about it normally, but social constructs (yes, even in the LGBTQA communities) force everyone to pass in their own different way.</p>
<p>A few examples:</p>
<p>1. A bio-woman is often mistaken for a man, since she is tall and has short hair. She wears long dangly earrings to avoid this situation. Passing as a more feminine presence.</p>
<p>2. An asexual tries to avoid talking about their asexual status by passing as heterosexual.</p>
<p>3. A bisexual is in a heterosexual marriage. She passes as heterosexual, not on purpose, but since society likes to make assumptions.</p>
<p>4. A boy likes to make baked goods. He hides this fact from his friends in order to pass as masculine.</p>
<p>This got me thinking a bit more about it. Why do we have to pass? What are we passing as? Can&#8217;t people stop making assumptions? Why must we be shoved in categorized boxes? And even when we&#8217;re in these boxes, why are we still ridiculed and ostracized? Why do people consistently feel the need to live up to these imaginary/binary standards of man and woman, gay and lesbian, etc.  Are we all really that spineless?</p>
<p>Anyway, there&#8217;s a lot more from where that came from, but for now I&#8217;m immersing myself in books. And I swear, reviews are coming soon.</p>
<p>&#160;</p>
<p>And just in case you forgot, today is Trangender Remembrance Day. Take a minute. Think about it.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[oops... where'd my gender go?]]></title>
<link>http://theitidentity.wordpress.com/2009/11/21/oops-whered-my-gender-go/</link>
<pubDate>Sat, 21 Nov 2009 01:05:14 +0000</pubDate>
<dc:creator>theitidentityandme</dc:creator>
<guid>http://theitidentity.wordpress.com/2009/11/21/oops-whered-my-gender-go/</guid>
<description><![CDATA[&#8220;If everything was black and white then I wouldn&#8217;t be caucasian&#8230;&#8221;   Too many]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><em>&#8220;If everything was black and white then I wouldn&#8217;t be caucasian&#8230;&#8221;</em></p>
<p style="text-align:left;"><strong> </strong></p>
<p style="text-align:left;"><strong>Too many options and no representative&#8230;</strong></p>
<p style="text-align:left;">Yesterday I spent majority of my day filling out scholarships, centerlink forms and other miscellaneous forms for my University application. Why is this important? Because there was one question on one form that threw me over the side of a skyscraper and left me dangle there for a minute or so&#8230;</p>
<p style="text-align:left;">&#8220;Please specify your gender by ticking the correct box below:&#8221;</p>
<p style="text-align:left;">Now let me SPECIFY: box numero un was &#8216;Male&#8217; while box numero tu&#8217;a was &#8216;Female&#8217;. I might also SPECIFY that they used the incorrect terminology. Gender is the psychological assignment of male/female, while sex (which would have been the correct terminology) is the biological factors.</p>
<p style="text-align:left;">They became negative and I become invisible. Where&#8217;d my gender go?</p>
<p style="text-align:left;">Okay, so this was a little (whether intentional or unintentional) slip-up but it annoyed me to my wits end, and that end isn&#8217;t far to meet. I&#8217;ve identified as genderqueer for about a year now and looking at those two little boxes just made me feel sick.</p>
<p style="text-align:left;">So I walked away from that form, my chest filled with angry words that I wanted to shout at someone but seeing as I was the only person at home; I didn&#8217;t feel like shouting at myself.</p>
<p style="text-align:left;">Now, most people wouldn&#8217;t see a problem with those two little boxes or the fact that they seemed to mix the words gender and sex around, but being one of a few people who don&#8217;t seem to fit into those categories; it sucked. I went through hell and climbed out into the cold Antartic just to figure myself out. It seemed, in terms of the people who were reading that form, that didn&#8217;t matter.</p>
<p style="text-align:left;">I admit, I struggled with my sexuality (one of the great unthought knowns) but my gender was something that I had never had the true strength to analyse, mostly because I knew I wasn&#8217;t the same as others. I&#8217;d wake up some mornings and feel like somebody haa dismantled me and then tried to put me back together. Some days I wanted male pronouns and would get easily angered if I was referred to as something particularly feminine. Other days I&#8217;d wake up and happily throw a sundress on, dip my face in the make-up and lather up my legs with sorbelene cream. Then there were the days (which happen more often than I would like to admit) where I feel no gender, no sexuality, no sexual desire at all. So why would I want to classify that?</p>
<p style="text-align:left;">The truth was, I didn&#8217;t want to classify it, because if I classified it what would that make me? I&#8217;d heard of the word &#8216;transgender&#8217; before but I knew that I wasn&#8217;t transgendered, I was something a little different. It was a Monday afternoon, a couple of weeks before my 17th birthday when I finally worked up the courage to give Google my soul for a couple of hours. In minutes, I had my word. GenderQUEER.</p>
<p style="text-align:left;">Truthfully, my search wasn&#8217;t that eventful, but acceptance? Acceptance was the one thing I couldn&#8217;t allow of myself. I had only recently accepted my sexuality at that point, finally allowing myself to watch the girls the way I had so often forced myself to watch the boys. But acceptance of my true gender? It felt more than an impossibility.</p>
<p style="text-align:left;">I guess this difference had always been there, even when I was younger. Once I knew, I began to pinpoint certain parts of my childhood where it was so distinctly obvious, I don&#8217;t really know how I missed it.</p>
<p style="text-align:left;">A few months passed after that&#8230; I came out to my community, but my gender was still tightly behind closed doors. My gender still is behind closed doors.</p>
<p style="text-align:left;">I can&#8217;t accurately explain what has led me to this point now, this injustice that I feel, but what I do know is that all this simple binary language makes me feel as if that internal struggle was all for nought.</p>
<p style="text-align:left;">I struggled with my sexuality, I struggled with my gender analysis, then I struggled with my gender association. I&#8217;ve said before, I associate as femme. Femme is my choice. It&#8217;s how I choose to display myself, even if majority of the time I am invisible to the world. But my gender was never a choice, and yet I&#8217;m unintentionally marginalized because of it, and they don&#8217;t even know it.</p>
<p style="text-align:left;">I guess that this may all seem fairly immature to some people who might read this, considering I am only 17. But how can I put an age on self-discovery, on self-analysis and on self-definition?</p>
<p style="text-align:left;">I&#8217;m going to finish that form today, and as much as I want to draw my own little box and label it, I&#8217;m going to appease the standards of this binary society. Box numero tu&#8217;a, &#8216;female&#8217; anatomically but a little queer psychologically.</p>
<p style="text-align:left;">- Cal.</p>
<p style="text-align:left;"> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Funny License Plate #107]]></title>
<link>http://funnylicenseplates.wordpress.com/2009/11/20/funny-license-plate-104/</link>
<pubDate>Fri, 20 Nov 2009 16:56:04 +0000</pubDate>
<dc:creator>ASSMAN</dc:creator>
<guid>http://funnylicenseplates.wordpress.com/2009/11/20/funny-license-plate-104/</guid>
<description><![CDATA[This one was taken in Orlando, Florida.  A big thanks to Jordan for sending this in! Funny License P]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This one was taken in Orlando, Florida.  A big thanks to Jordan for sending this in!</p>
<div id="attachment_502" class="wp-caption aligncenter" style="width: 410px"><a href="http://funnylicenseplates.wordpress.com/files/2009/11/funny-license-plates-binary-1000101.jpg"><img class="size-medium wp-image-502 " title="Funny License Plates - 1000101 - Binary for &#34;69&#34;" src="http://funnylicenseplates.wordpress.com/files/2009/11/funny-license-plates-binary-1000101.jpg?w=225" alt="Funny License Plates - 1000101 - Binary for &#34;69&#34;" width="400" height="530" /></a><p class="wp-caption-text">Funny License Plates - 1000101 - Binary for &#34;69&#34;</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Has the Rockefeller Foundation perfected their binary weapon]]></title>
<link>http://door32.wordpress.com/2009/11/19/has-the-rockefeller-foundation-perfected-their-binary-weapon/</link>
<pubDate>Thu, 19 Nov 2009 11:58:29 +0000</pubDate>
<dc:creator>door32</dc:creator>
<guid>http://door32.wordpress.com/2009/11/19/has-the-rockefeller-foundation-perfected-their-binary-weapon/</guid>
<description><![CDATA[The link below contains a report compiled way back in 1942 for the Rockefeller Institute for Medical]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h3><img class="aligncenter size-full wp-image-2565" title="259-Spanish-flu" src="http://door32.wordpress.com/files/2009/11/259-spanish-flu.jpg" alt="" width="449" height="374" /></h3>
<h3><span style="font-weight:normal;">The link below contains a report compiled way back in 1942 for the Rockefeller Institute for Medical Research by Frederick B Bang MD. The subject of the study was SYNERGISTIC ACTION OF HEMOPHILUS INFLUENZAE SUIS AND THE SWINE INFLUENZA VIRUS ON THE CHICK EMBRYO.</span></h3>
<h3><span style="font-weight:normal;">Basically the intention was to study the effect of using two separate agents, one virus and one bacteria, to act together as an infection. On their own these agents have only a very mild effect on the patient, if any at all. However, when the two agents were used together they have a much more serious and much more fatal effect on the patient. The viral agent used in this study was Swine Influenza. This study summized that when the two were acting together they would quickly destroy the lungs. Please read the text of the report and the summary</span></h3>
<h3><span style="font-weight:normal;"><span style="color:#0000ff;">http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2135289/pdf/7.pdf</span></span></h3>
<h3><span style="font-weight:normal;">This link is from the following Rockefeller University Press website</span></h3>
<h3><span style="font-weight:normal;"><span style="color:#0000ff;">http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2135289/</span></span></h3>
<h3><span style="font-weight:normal;">Now the WHO has said after 3 weeks holding back that the virus A/H1N1 has NOT changed SIGNIFICANTLY from the original virus. However now the virus sequences have been finally quietly released onto the GISAID online medical database website, after being held back, they show that the protein number 225 has changed in EXACTLY the same way  as the 1918 Spanish flu. Now seriously, what are the chances of a NOVEL flu that has never been seen before, mutating into the EXTINCT Spanish flu ? I will tell you&#8230;. NONE</span></h3>
<h3><span style="font-weight:normal;"><span style="color:#0000ff;">http://platform.gisaid.org/dante-cms/live/struktur.jdante?aid=1131</span></span></h3>
<h3><span style="font-weight:normal;">Now what are we to believe?</span></h3>
<h3><span style="font-weight:normal;">We have a flu that has somehow changed into Spanish flu causing cytokine storms in healthy patients. How did this happen? </span></h3>
<h3><span style="font-weight:normal;">We have aeroplanes spraying the affected areas before the new infection suddenly and spectacularly breaks out. What were they spraying? </span></h3>
<h3><span style="font-weight:normal;">Finally we have a study carried out 67 years ago that established how to create a binary weapon that can be activated by adding a suis bacteria to a swine flu virus. We also have admissions from US research establishments (UC Berkley) that they received military research grants to produce a binary biological weapon. </span></h3>
<h3><span style="font-weight:normal;">We also know that the Spanish flu virus was back engineered from the Spanish flu victim exhumed in 1997?</span></h3>
<h3><span style="font-weight:normal;">Let me join the dots for you</span></h3>
<h3><span style="font-weight:normal;">There are a number of options.</span></h3>
<h3><span style="font-weight:normal;">1     The Novel A/H1N1 naturally mutated into the 1918 virus? Extremely unlikely.</span></h3>
<h3><span style="font-weight:normal;">2     The aeroplanes sprayed a new Spanish flu virus? Unlikely as the virus needs a host.</span></h3>
<h3><span style="font-weight:normal;">3     The H1N1 vaccine contained the Spanish flu? Unlikely as the flu vaccine was not widely available and the spread was too spectacular.</span></h3>
<h3><span style="font-weight:normal;">4     The aeroplanes sprayed a bacteria that will survive in the air, that when breathed in reacts with the swine flu virus administered in the vaccines. The resultant infection becoming much more infectious, hence the spectacular sudden spread. Also causing the bleeding out of the lungs in weaker immune systems. Very possible</span></h3>
<h3><span style="font-weight:normal;">5     As above but affecting those who have also caught the virus naturally, hence the lack of availability of vaccines. Unknown if this virus remains dormant in people who have had it.</span></h3>
<h3><span style="font-weight:normal;"><strong><br />
</strong></span></h3>
<h3><span style="font-weight:normal;">From studying the history of this whole affair there is a definite hot trail here. A 1942 binary infection report for Rockefeller. A 1997 back engineering of the Spanish flu. Military funding for new binary weapons. A seemingly lab manufactured swine flu outbreak with no attempt to control it&#8217;s spread. Aerial spraying of populations followed by spectacular spread of new cytokine storm inducing infection. WHO advising that travel need not be curtailed.. I will leave you to decide what you think is really going on here</span></h3>
<p><span style="font-weight:normal;">(Thanks to youtubers  seattle4truth and mouse)</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PPTimer 1.0 is released!]]></title>
<link>http://pptimer.wordpress.com/2009/11/17/pptimer-1-released/</link>
<pubDate>Tue, 17 Nov 2009 11:50:27 +0000</pubDate>
<dc:creator>Ola</dc:creator>
<guid>http://pptimer.wordpress.com/2009/11/17/pptimer-1-released/</guid>
<description><![CDATA[PPTimer 1.0 is released! Download it from Sourceforge! A screencast demoing all features are availab]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="https://sourceforge.net/projects/pptimer/"><img class="alignnone size-full wp-image-43" title="PPTimer logo" src="http://pptimer.wordpress.com/files/2009/11/logo.png" alt="" width="360" height="166" /></a></p>
<p><a title="PPTimer project page" href="https://sourceforge.net/projects/pptimer/">PPTimer 1.0 is released! Download it from Sourceforge</a>!</p>
<p>A <strong>screencast demoing all features</strong> are available on <a title="PPTimer features on Youtube" href="http://www.youtube.com/watch?v=oIZ60uWSb9k">Youtube</a> and <a title="PPTimer features on Vimeo" href="http://vimeo.com/7814696">Vimeo</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[You Are Worth, What You're Paid...Painful But True]]></title>
<link>http://keneggleston.wordpress.com/2009/11/14/you-are-worth-what-youre-paid-painful-but-true/</link>
<pubDate>Sat, 14 Nov 2009 22:12:43 +0000</pubDate>
<dc:creator>Ken Eggleston</dc:creator>
<guid>http://keneggleston.wordpress.com/2009/11/14/you-are-worth-what-youre-paid-painful-but-true/</guid>
<description><![CDATA[So what do you believe in so strongly that you would never compromise for it?  When you have that be]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1>So what do you believe in so strongly that you would never compromise for it?  When you have that belief in network marketing, you’ll have all the posture you’ll need to be successful.</h1>
<div id="post-435">
<div>
<p>You’ll never have to argue with anyone, you won’t be defensive on the business, and you’ll prospect with rock-solid confidence.</p>
<p>I’m free.  Have been for years.  And can’t tell you how many people that ridiculed me when I started the business are still trapped in the Matrix.  They live their lives in indentured servitude.  They’re worker drones in the collective.</p>
<p>Me?  I’m free because I know what I know.  And more importantly, it began when I knew what I knew.</p>
<p>I saw those circles and got it.  Instantly.  The logic was irrefutable.  So I went after my dream.</p>
<p>Started and stopped. Faced challenge after challenge.  Because doing the business exposed the weaknesses in my character and self-discipline.  But the good news was, that could be fixed.</p>
<p>Just as it can for you…</p>
<p>Bill Parcells likes to say about football teams, “You are what your record says you are.”  And that’s the truth.  In everything.  Especially and including network marketing…</p>
<p>Only here we could say, “You are what your bonus check says you are.”</p>
<p>Because we’re in a profession that truly pays us upon performance – what we are really worth.  And the good news is, you can always give yourself a raise.  By working on yourself.</p>
<p>Recommended Reading: How To Build an MLM Money Machine, 4th Addition by Randy Gage</p>
<div><span style="font-family:Arial;font-size:x-small;">Delivering on the Promise of Success &#38; Happiness,<br />
Ken Eggleston<br />
Colonel (Ret.) Law Enforcement (PBSO)<br />
Founder, 500K Success Team<br />
<a href="http://www.500ksuccessteam.com">www.500ksuccessteam.com</a><br />
Million Dollar Industry Earner<br />
Author, Coach &#38; Mentor</span></div>
<div> </div>
<div><span style="font-family:Arial;font-size:x-small;">If you&#8217;ll &#8220;LOCATE, EDUCATE &#38; MOTIVATE&#8221; ambitious people, you will realize significant success in any undertaking!  Remember, Do Today What Others Won&#8217;t, So You Can Live Tomorrow Like Others Can&#8217;t!</span></div>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[On New Communications]]></title>
<link>http://loyalover.wordpress.com/2009/11/14/on-new-communications/</link>
<pubDate>Sat, 14 Nov 2009 10:22:38 +0000</pubDate>
<dc:creator>loyalover</dc:creator>
<guid>http://loyalover.wordpress.com/2009/11/14/on-new-communications/</guid>
<description><![CDATA[A while back my team each presented on their parts for &#8220;New Communication Technology&#8221;. I]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A while back my team each presented on their parts for &#8220;New Communication Technology&#8221;. It has been a couple of weeks, and I thought it&#8217;d be a good experiment to see how much I remember from their presentation.</p>
<p>Marcus basically talked about Skype. He was probably trying to explain how the internet is soon to be replacing telecos. This was touched on later during lectures. Its amazing how the internet seems to be doing everything. First it was with text/information. Eventually it evolved to communicating pictures, motions, and videos. Believe it or not, humans would probably be next. Turning into binary codes. (Miss Kwa, if you checked my blog, could you drop me the link to that adv?)</p>
<p>Another member talked about interactive technology. Some examples given were the new technology introduced to television. Jia Hui showed how it&#8217;s possible to excess social networking websites through TV sets. But when you think about it, its probably gonna be a hassle typing with your remote, with limited features when using the TV to access websites. Having said that, a new concept I chanced upon seems to put new technology in TV to better use. http://www.youtube.com/watch?v=AEMXLPD4gNY</p>
<p>The basic idea allows for videos to be transfered into the TV sets to be viewed in HD. Well that&#8217;s something I&#8217;d really want to have. These days, no one watch TV together as a family. With the new capabilities, probably more family TV time?</p>
<p>Finally, Sally spoke about podcasting. Wasn&#8217;t enough time to get it all out, but the basic idea of podcasting works like RSS Feeds. You get to be updated about your favourites and download selective videos into your Itunes! After a bit of research, I learnt how you could &#8220;Youtube podcast&#8221;! http://socialmediauga.blogspot.com/2007/11/youtube-podcasting.html</p>
<p>In a nutshell,</p>
<p>1) You can make calls through the Internet. Soon enough you can do anything with the Internet.</p>
<p>2) TV is getting interactive. Soon enough, every bit of machinery at home is going to be connected to you.</p>
<p>3) Podcast allows you to download latest videos. Soon enough you won&#8217;t be surfing the net. News would come to you like SMS.</p>
<p>Maybe that wasn&#8217;t what exactly I was supposed to get out of their sharing. LOL.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Inside, Out, and In-Between: The Death of the Moth and the Third Space (Ecocritical Essay)]]></title>
<link>http://jacobhart.wordpress.com/2009/11/10/inside-out-and-in-between-the-death-of-the-moth-and-the-third-space-ecocritical-essay/</link>
<pubDate>Tue, 10 Nov 2009 22:24:49 +0000</pubDate>
<dc:creator>jacobhart</dc:creator>
<guid>http://jacobhart.wordpress.com/2009/11/10/inside-out-and-in-between-the-death-of-the-moth-and-the-third-space-ecocritical-essay/</guid>
<description><![CDATA[The idea of space is perhaps the most interesting feature found in Virginia Woolf’s essay The Death ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The idea of space is perhaps the most interesting feature found in Virginia Woolf’s essay The Death of the Moth.  Writing from the comforts of the enclosed, inside world, Woolf looks out her window with casual delight, observing the activities of a “pleasant morning” in September (Woolf 343).  A small moth steals her attention away from her work.  As she slowly watches the grueling scene of its death, something changes.  Her world is suddenly different.  In a sense, the episode with the moth brings Woolf to a place where the boundaries of space shift away from the traditional binaries of the inside and outside, and of human and non-human.  The essay begins to navigate itself away from these traditional divisions as if looking for something more, a definition of space that is more inclusive.  This loss of stability forces Woolf to re-imagine her sense of place.  By incorporating the moth from the outside world and the windowpane from the inside world, The Death of the Moth suggests a construction of a third space, a place where the boundaries of human and non-human space collide.  Such an interpretation inherently challenges the traditional binary of the human/nature by dismantling its divisive structure.<!--more--></p>
<p>In regards to the first space, the human space of the inside, The Death of the Moth represents a work by in which absence constructs setting.  How big the room might be, where it might be, and what objects might be in the room, are all unknowns.  With no descriptions of the first space, we are left with only inferences for evidence of its existence; there exists a world outside, therefore there must also exist a world inside.  The absence of description, while serving to bring all of our attention to whatever is other, also serves to stabilize the inherent division between inside and outside spaces.  If absence serves to characterize the first space, the emptiness contrasts against the vividness of the outside world, the second space.  This idea of lack, in a Lacanian sense, constructs the first space as a place that can never be whole.</p>
<p>While emptiness can be seen as constituting the first space, Woolf dots the essay with vivid sketches the outside world.  But this second is far from stable.  The instability of the second space is best described as a shift from a state of “animation” to a state of “stillness and quiet” (345).  In the beginning of the essay, the second space is described in delightful detail.  Woolf first describes the second space seasonally, commenting that “It was a pleasant morning, mid-September, mild, benignant, yet with a keener breathe than that of the summer months” (343).  A marked difference from the hollowness of the first space, Woolf’s descriptions of life in the second are filled with a sense of exuberance and activity.  A place where animals hold “annual festivities”, the second space is filled with descriptions of ploughs, rooks, horses, and other “vigorous” activities (343-444).</p>
<p>The traditional binary that exists between the first and second space are disrupted with the introduction of the third space.  On its base level, the third space represents a place where the human and non-human worlds collide.  Woolf’s third space is a fusion; part windowpane, and part moth, the third space exists apart from the first and second space, but inherently connected to each.  Incorporated from the first space, the windowpane is both literally and figuratively the lens by which perception passes through.  It is through the windowpane that reality presents itself to her as both “animated” and “still” (345).  Acting as a medium between spaces, the windowpane facilitates the interaction between Woolf and the second space.</p>
<p>Described as neither “gay like butterflies nor similar to their own species” (343), the moth in front of Woolf exists as a sort of anomaly.  “Moths that fly by day,” writes Woolf, “are not properly to be called moths” (343).  While Woolf seems satisfied with her categorization of the moth as “hybrid”, the inability to define the creature implies that the moth is indefinable.  Having no structured existence inside space of the outside, Woolf’s construction of the moth as other purges it from a previously comfortable position in the second space.<br />
Woolf proceeds to reduce the moth is reduced to energy, its most basic form.  Compared to the workings of the plough, the rooks, and the horses (343-44), the moth’s presence is described as being a “fiber, very thin,” “pathetic” (344), “an insignificant little creature” (345).  Woolf furthers this by writing that “It was as if someone had taken a tiny bead of pure life,” writes Woolf, “…to show us the true nature of life” (344).  By stripping the moth of tangible definitions, Woolf reconstructs the moth as an abstract, a manifest entity of pure life.  This re-imagining of the moth serves to shift the moth out of the second space and into the third.  An incorporation of the moth into the third space with the windowpane leads Woolf to re-imagine what she had previously held as stable: the second space, Nature.</p>
<p>As stated earlier, the second space undergoes a transformation from “animated” to “still” (345).  Through the formation of the third space, Woolf turns to the outside world with a pair of fresh eyes. Through this reexamination of the second space, Woolf reaches a new understanding.  She writes:</p>
<blockquote><p>I looked outdoors.  What had happened there?  Presumably it was midday, and the work in the fields had stopped.  Stillness and quiet had replaced the previous animation…Yet the power was still there all the same, massed outside indifferent, impersonal, not attending to anything in particular. (345)</p></blockquote>
<p>The passage marks a perceptual shift in the way that Woolf understands the second space.  The horses, the ploughs, the rooks, all become secondary to the experience of stillness, not as absence as in the first space, but as essence; life in its most elemental form.</p>
<p>What Woolf’s re-imagining of the second space truly suggests is that as humans, we must struggle against the superficial reaches of our perception in order to grasp the value and essence of space.  The natural world does not change.  For Woolf, the natural world opens up to new truths.  She is finally able to understand the raw “power” and beauty of nature (345).  This reconstruction of the second space challenges Woolf’s ideas of reality, perception, and meaning.  The recognition that death “is stronger than I am” (345) signals to the reader that something dramatic has changed.</p>
<p>In this new construction of the second space, everything has changed.  Gone are the flowery and clichéd descriptions of the Natural world.  Gone is the idea of the moth as “insignificant little creature” (345).  Between the human and non-human worlds that the third space provides, Woolf realizes the necessary truth: Nature and humanity as one and of the same.  Through the guiding hand of the third space, Woolf’s episode with the moth suggests that humans have the potential to redefine traditional spatial boundaries through a shift in perception.  The collision of the moth into the windowpane, both figurative and literal, provides for Woolf the necessary conditions of that precede change.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[01 The One Art Limited Edition Black and Beige Strap Binary Watch With Red LED's]]></title>
<link>http://thebestwatches.wordpress.com/2009/11/11/01-the-one-art-limited-edition-black-and-beige-strap-binary-watch-with-red-leds/</link>
<pubDate>Tue, 10 Nov 2009 21:00:15 +0000</pubDate>
<dc:creator>astraelder</dc:creator>
<guid>http://thebestwatches.wordpress.com/2009/11/11/01-the-one-art-limited-edition-black-and-beige-strap-binary-watch-with-red-leds/</guid>
<description><![CDATA[01 The One Art Limited Edition Black and Beige Strap Binary Watch With Red LED&#8217;s Review Featur]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>01 The One Art Limited Edition Black and Beige Strap Binary Watch With Red LED&#8217;s Review</p>
<p align='center'><img src="http://ecx.images-amazon.com/images/I/51L2CQBPxrL._SL160_.jpg" border='0'></p>
<p>Feature</p>
<ul>
<li>Displays time using binary representation</li>
<li>LED lights indicate the hours and minutes</li>
<li>Push button &#8211; the time is displayed for 5 seconds</li>
<li>High Quality band</li>
<li>Water resistant 3 ATM (90 feet)</li>
<li>Battery included (CR2032)</li>
<li>Gift Packaged</li>
<li>High Fashion Watch Range</li>
<li>Design Led.</li>
</ul>
<p>Overview</p>
<p>Specifications</p>
<p>
Nov 10, 2009  14:00:13</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[5 ways to coolify your name]]></title>
<link>http://ownagepoint.wordpress.com/2009/11/10/5-ways-to-coolify-your-name/</link>
<pubDate>Tue, 10 Nov 2009 18:00:56 +0000</pubDate>
<dc:creator>theownagepoint</dc:creator>
<guid>http://ownagepoint.wordpress.com/2009/11/10/5-ways-to-coolify-your-name/</guid>
<description><![CDATA[So, your an IM freak. Wasting day after day, month after month in front of your PC screen assuming: ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So, your an IM freak. Wasting day after day, month after month in front of your PC screen assuming: &#8220;yeah, surely I&#8217;m not a zombie, at least I&#8217;m communicating with other living things, right?&#8221;. Well, your wrong. You are a zombie and you will die alone. But we&#8217;ll discuss that subject some other time. Right now we are here to show you the best 5 ways to coolify your name i.e. your IM/social media display name. We&#8217;ll assume that you&#8217;ve already tried putting smileys or hearts or some other dumb bullshit in your display name, or if you&#8217;re really hardcore you&#8217;ve already tired the fishes (example: <em>&#60;º))))&#62;&#60;.·´¯`·John Smith·´¯`·.¸&#62;&#60;((((º&#62;</em>) or some other poorly creative ASCII combination thinking &#8220;that&#8217;s the one, now I&#8217;m unique&#8221;. Well, you&#8217;re wrong again, you&#8217;re not unique, and you probably never will be. But no worries, we&#8217;re here to help and give you that conversation starting nick, bringin&#8217; lots of them &#8220;d00d, WTF is that?&#8221;. So lets start from the top saying a few words about what ASCII is. ASCII (American Standard Code for Information Interchange) is a 7-bit representation of the English alphabet widely used in information technology and the world wide web until recently when it started to get replaced by the UTF-8 witch is an improved character encoding technique. We are saying this because when you try to convert a Chinese letter into something else and you get an error you won&#8217;t bitch about it. Instead you&#8217;ll know that most of the converters work only with the 128 ASCII characters and you&#8217;ll feel less dumb. But enough about character encoding techniques. Lets start the countdown. There are many converters, generators, translators, encoders and such out there, but very few of them are actually good and usable. So we&#8217;ve made this list to help you create that unique display name that you&#8217;ve always wanted without having to browse the web for days searching for the method that&#8217;s right for you.<br />
*The crappy fish and other presumably cool looking ASCII combinations can be found <a href="http://www.messhits.com/nick-name-maker.php" target="_blank">here</a>.</p>
<p>1. Binary code<br />
-The binary code is a text representing system using only the digits &#8220;1&#8243; and &#8220;0&#8243;. It can also represent processor instructions but we&#8217;re not interested in that. We&#8217;re only interested in what you can do with it in terms of encoding text. The answer is plenty. Like in the picture shown bellow you can encode your name into binary code making it readable for only a small number of people out there. So when your IM contacts see that long string of ones and zeroes sitting in the place of your dull name they are bound to ask &#8220;what the hell man?&#8221;. The best binary translators we could find out there are the following:<a href="http://www.theskull.com/javascript/ascii-binary.html" target="_blank"><br />
ASCII 2 binary #1</a> <a href="http://www.roubaixinteractive.com/PlayGround/Binary_Conversion/Binary_To_Text.asp" target="_blank">ASCII 2 binary #2</a><br />
*Be careful not to leave spaces in the binary code or some translators will not work.<br />
*The second translator works with spaces in the code, but the first one doesn&#8217;t so you&#8217;ll need to remove them before converting.</p>
<p>*For accurate conversion of numbers from decimal to binary use this converter and not the two mentioned above. <a href="http://mistupid.com/computers/binaryconv.htm" target="_blank">Decimal 2 binary</a></p>
<p><a href="http://mistupid.com/computers/binaryconv.htm" target="_blank"><img class="aligncenter size-full wp-image-392" title="Binary Code" src="http://ownagepoint.wordpress.com/files/2009/11/binary1.png" alt="Binary" width="510" height="44" /></a><a href="http://mistupid.com/computers/binaryconv.htm" target="_blank"><br />
</a>2. Hex code<br />
-If the binary code isn&#8217;t strong enough for you, you could try the hexadecimal one. Instead of only 2 symbols the motherfucker uses sixteen distinct symbols for representation. It uses the numbers from 0-9 and the letters from A-F to represent the values ten to fifteen. If you thought math was hard, try doing it in hex. A+C=WTF? Because hex code scares us a little bit we&#8217;re not going to say anything else about it, instead we&#8217;ll only give you the hex generators and leave you with a warning. DON&#8217;T TRY TO UNDERSTAND HEX OR YOU&#8217;LL DIE!!!<br />
<a href="http://centricle.com/tools/ascii-hex/" target="_blank">ASCII 2 hex #1</a> <a href="http://d21c.com/sookietex/ASCII2HEX.html" target="_blank">ASCII 2 hex #2</a></p>
<p>*For accurate conversion of numbers from decimal to hexadecimal use this converter and not the two mentioned above. <a href="http://www.statman.info/conversions/hexadecimal.html" target="_blank">Decimal to hex</a></p>
<p><a href="http://www.statman.info/conversions/hexadecimal.html" target="_blank"></a><img class="aligncenter size-full wp-image-395" title="Hex Code" src="http://ownagepoint.wordpress.com/files/2009/11/something.png" alt="Hex Code" width="510" height="28" /></p>
<p>3. Morse code<br />
-If you wanna kick it old school we recommend the Morse code. All of us have heard about it, and we all know that it represents the characters with dots &#8220;.&#8221; and dashes &#8220;-&#8221;. The short and long elements can also be presented in a form of sound, light, etc. But since most of us have never been in the navy, we have no clue in understanding it or how to use it. Fortunately the internet is here to help, giving us the opportunity to create or decode Morse code. The first and third Morse generators give us the option to create and download not only the visual representation shown in dots an dashes but the audio one also. That&#8217;s pretty useless when you&#8217;re trying to change your display name, but it can be used as a pretty sweet ring tone or an alarm or something that will beep the fuck of your friends.<br />
<a href="http://webnet77.com/cgi-bin/helpers/morse.pl" target="_blank">ASCII 2 Morse #1</a> <a href="http://morsecode.scphillips.com/jtranslator.html" target="_blank">ASCII 2 Morse #2</a> <a href="http://www.planetofnoise.com/midi/morse2mid.php" target="_blank">ASCII 2 Morse #3</a><br />
*The Morse code doesn&#8217;t support lower case letters, so everything that you decode will be shown in upper case, regardless of the way it was originally encoded (lower or upper case).</p>
<p><img class="aligncenter size-full wp-image-396" title="Morse Code" src="http://ownagepoint.wordpress.com/files/2009/11/morse.png" alt="Morse Code" width="409" height="34" /></p>
<p>4. Barcode<br />
-This way of generating text or other stuff also is useless in terms with your display name because the end result of the generator will be a image and not a string of text that you could use as a nick. But it could make you a great avatar, or a cell phone background or such which will distinguish you from the rest. Just don&#8217;t tattoo the barcode on yourself because you&#8217;ll eventually regret it, and you&#8217;ll look like a douche. You&#8217;ve been warned.<br />
<a href="http://www.barcoding.com/upc/" target="_blank">ASCII 2 barcode #1</a> <a href="http://www.tec-it.com/online-demos/tbarcode/barcode-generator.aspx" target="_blank">ASCII 2 barcode #2</a> <a href="http://www.morovia.com/free-online-barcode-generator/" target="_blank">ASCII 2 barcode #3</a><br />
*We recommend the code 128 because it supports letters and digits, and because it&#8217;s the most barcody looking.</p>
<p><a href="http://mistupid.com/computers/binaryconv.htm" target="_blank"><img class="aligncenter size-full wp-image-390" title="Barcode" src="http://ownagepoint.wordpress.com/files/2009/11/barcode.png" alt="Barcode" width="505" height="115" /></a></p>
<p>5. L33t<br />
-This isn&#8217;t an actual language, so it doesn&#8217;t have strict rules in regards with it&#8217;s creating and it&#8217;s interpretation. There are many variants of leet so the translation from leet to plane English isn&#8217;t always correct. Also there are many forms of leetness starting from plain leet and going to advanced leet which like the binary code can be fully understood by very few people. These are the best leet translators and generators that we could find, but unlike the other translators mentioned earlier these three aren&#8217;t compatible with each other. In other words, something that has been translated into leet in one translator can&#8217;t be translated back into plain English in an other. That&#8217;s because leet isn&#8217;t an actual language, like we mentioned earlier. So if you&#8217;re a hardcore nerd you won&#8217;t need these three translators. And for the rest of you boys and girls out there&#8230; go nuts&#8230;<br />
<a href="http://www.jayssite.com/stuff/l33t/l33t_translator.html" target="_blank">ASCII 2 leet #1</a> <a href="http://www.albinoblacksheep.com/text/leet" target="_blank">ASCII 2 leet #2</a> <a href="http://www.falseblue.com/leetspeak/index.php" target="_blank">ASCII 2 leet #3</a></p>
<p><a href="http://www.falseblue.com/leetspeak/index.php" target="_blank"><img class="aligncenter size-full wp-image-399" title="Leet" src="http://ownagepoint.wordpress.com/files/2009/11/somethingelse2.png" alt="Leet" width="300" height="36" /></a></p>
<p>-There are probably a lot more useful ways of using the knowledge you&#8217;ve gained today but because we know that you won&#8217;t, at least get a nice display name out of it, or a badass avatar or a not-so-gangsta ring tone or whatever.</p>
<p><em>&#8220;010101000110100101101100011011000010000001101110011001010<br />
111100001110100001000000111010001101001011011010<br />
110010100101110001011100010111000100000&#8243;</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Magic of Binary!]]></title>
<link>http://complex2simple.wordpress.com/2009/11/04/the-magic-of-binary/</link>
<pubDate>Wed, 04 Nov 2009 17:34:58 +0000</pubDate>
<dc:creator>complex2simple</dc:creator>
<guid>http://complex2simple.wordpress.com/2009/11/04/the-magic-of-binary/</guid>
<description><![CDATA[In counting, if we skip all the numbers that have anything other than a 1 or a 0 in them, we end up ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In counting, if we skip all the numbers that have anything other than a 1 or a 0 in them, we end up with : 1, 10 , 11, 100 , 101 , 110 , 111 , etc&#8230;These being the respective binary representations for all the numbers 1 , 2 , 3, 4, 5 , 6, 7 , etc&#8230;</p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  interesting isnt it!!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Explain THAT Science! #12:  Animals]]></title>
<link>http://carlsagansdanceparty.wordpress.com/2009/11/04/explain-that-science-12-animals/</link>
<pubDate>Wed, 04 Nov 2009 03:58:34 +0000</pubDate>
<dc:creator>logicmania</dc:creator>
<guid>http://carlsagansdanceparty.wordpress.com/2009/11/04/explain-that-science-12-animals/</guid>
<description><![CDATA[By Columnist Harry Trunckles Scientists pretend animals are intelligent because they&#8217;re either]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>By Columnist Harry Trunckles </p>
<p>Scientists pretend animals are intelligent because they&#8217;re either uneducated or liars.  Contrary to the opinion of most scientists, I&#8217;d like to discuss how animals, like plants, have no intelligence.  I&#8217;d like to prove this by first discussing how humans are not in fact animals and belong in their own kingdom of &#8220;I&#8217;m really cool! and AWE-SOME!&#8221;  After that, I&#8217;d like to demonstrate how binary logic and evolution proves humans are fundamentally morally and intellectually superior to animals.  </p>
<p>I&#8217;d like to first say that dolphins should be arrested for killing endangered animals. Don&#8217;t give me that &#8220;Dolphins are lovely and innocent creatures&#8221; line.  Innocence is no excuse for the law!</p>
<p>Scientists claim that humans evolved from dolphins.  But the intellectual capacity of dolphins is way too inferior to account for human intelligence.  I mean, couldn&#8217;t scientists have postulated better predecessors than idiots who get caught in nets all day?<br />
<div id="attachment_494" class="wp-caption alignnone" style="width: 310px"><img src="http://carlsagansdanceparty.wordpress.com/files/2009/08/dolphin1.jpg?w=300" alt="Dolphin" title="Dolphin" width="300" height="225" class="size-medium wp-image-494" /><p class="wp-caption-text">Bullshit.</p></div><br />
Creationists are dumb because they believe nothing evolved from anything but evolutionists are dumb because they believe everything evolved from something else before it.  But I&#8217;m somewhere in the middle in that I believe that everything but humans and platypuses evolved, therefore, I am moderate.  Ergo, I am right.  </p>
<p>Like I said, I&#8217;m a firm believer in only non-human evolution.  Since God breathes life into each human zygote, thus making each human unique and supernatural, and modern day animals merely exist because of physical evolutionary processes, THEN that must mean that humans are superior to animals and also we are not animals. </p>
<p>Another reason to believe in a purely non-human evolution framework comes from the fact that animals are just so damn stupid.   No animal or plant shows any degree of intelligence.  Not any.  Yet humans actually show intelligence.  I asked a computer scientist to explain how intelligence in animals works and it was like this:  Intelligence is clearly not measurable in degrees (except for my estranged wife&#8217;s intelligence since she&#8217;s just slightly stupider).  Since intelligence mostly can only be found in the forms of binary 1s (intelligence) and 0s (not intelligence), except for my wife who has 0.9 intelligence, how can you get a measurement of intelligence of 1 evolving out of an an intelligence measurement of 0?  There must be some intermediate intelligence.   It makes no sense!  Clearly, human intelligence must be breathed into us by some divine power, namely, God.  </p>
<p>Scientists say that dogs used to be wolves and then mankind domesticated them. Let me tell you, based on my dog these must have been some dumb as shit wolves.  What kind of wolf survives by running into traffic and eating their own poop?  Ancient wolves didn&#8217;t even have traffic to run into!</p>
<p>Richie Darkins, the god-hatin&#8217; guy, says that evolution is elegant and that he is an idiot.  I agree with him on the second point, though I hasten to add it didn&#8217;t need mentioning.  However, animal evolution isn&#8217;t elegant at all. In fact, it is a function of animals surviving or not surviving based on random chance.  This is how it works. Let&#8217;s say a dinosaur runs off a cliff.  Well, most of those dinosaurs that like running off cliffs all day will die and not pass on their genes.  Those few that think &#8220;oh wait, I better flap my arms and grow feathers&#8221; turned into birds and didn&#8217;t die like idiots. This is why the Grand Canyon is such a great fossil bed, by the way.<br />
<div id="attachment_929" class="wp-caption alignnone" style="width: 310px"><img src="http://carlsagansdanceparty.wordpress.com/files/2009/11/archaeopteryx.jpg?w=300" alt="archaeopteryx" title="archaeopteryx" width="300" height="252" class="size-medium wp-image-929" /><p class="wp-caption-text">Geez. It took you forever.  Do I have to teach you to make those things vestigal later on too?</p></div><br />
You&#8217;re probably wondering how I explain platypuses since I stated earlier that they, like humans, did not evolve.   Well, platypuses were created by some kind of demiurge.   That means that platypuses have either negative 1 intelligence or sometimes other states of intelligence quite different like the square root of negative 1 intelligence or imaginary intelligence.  That explains how platypuses can reason so bizarrely.  They either reason completely backwards or they reason in some perpendicular imaginary plane of intelligence.  Beware of hanging out with a platypus though since they will either make your intelligence cancel out with theirs or they will cause your intelligence to be complex with theirs.  You don&#8217;t want either of those possibilities.  </p>
<p>Anyway, where was I?  Animals other than humans and platypuses are entirely stupid.  I used to be opposed to factory farming.  But that was before I worked at a factory farm.  My experience of being a factory farmer led me to the conclusion that animals just are not smart enough not to wind up on my plate.   Let me tell you, I used to tell animals this simple phrase, &#8220;if you don&#8217;t want to be put in a cage any longer, just let me know.&#8221;  Not one animal ever spoke up.  Must&#8217;ve been because they either liked it or they had no intelligence to feel pain about their situation.  It&#8217;s pretty obvious that those are the only two options.  </p>
<p>I think my evolutionary binary theory of how stupid, and therefore useless, animals are proves once again just how nonsensical mainstream scientists are.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
