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

<channel>
	<title>Emma Persky &#187; Uncategorized</title>
	<atom:link href="http://blog.emmapersky.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.emmapersky.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 07 Sep 2010 19:49:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Content Analysis is King</title>
		<link>http://blog.emmapersky.com/content-analysis-is-king</link>
		<comments>http://blog.emmapersky.com/content-analysis-is-king#comments</comments>
		<pubDate>Wed, 28 Apr 2010 13:55:55 +0000</pubDate>
		<dc:creator>Emma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.emmapersky.com/?p=76</guid>
		<description><![CDATA[Notes for my presentation at DiBi Conference 2010.
Slides on Slideshare
Content Analysis is King
View more presentations from Emma Persky.

Links

Yahoo Term Extractor
OpenCalais
Zope&#8217;s Topia
Trampoline&#8217;s TermExtractor
Kea
Maui

]]></description>
			<content:encoded><![CDATA[<p>Notes for my presentation at <a href="http://www.dibiconference.com/">DiBi Conference 2010</a>.</p>
<p><strong>Slides on Slideshare</strong></p>
<div id="__ss_3883103" style="width: 425px;"><strong><a title="Content Analysis is King" href="http://www.slideshare.net/emmapersky/content-analysis-is-king">Content Analysis is King</a></strong><object id="__sse3883103" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=dibippt-100428072414-phpapp02&amp;stripped_title=content-analysis-is-king" /><param name="name" value="__sse3883103" /><param name="allowfullscreen" value="true" /><embed id="__sse3883103" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=dibippt-100428072414-phpapp02&amp;stripped_title=content-analysis-is-king" name="__sse3883103" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/emmapersky">Emma Persky</a>.</div>
</div>
<p><strong>Links</strong></p>
<ul>
<li><a href="http://developer.yahoo.com/search/content/V1/termExtraction.html">Yahoo Term Extractor</a></li>
<li><a href="http://www.opencalais.com/">OpenCalais</a></li>
<li><a href="http://svn.zope.org/topia.termextract/tags/1.1.0/setup.py?rev=101334&#038;view=log">Zope&#8217;s Topia</a></li>
<li><a href="http://github.com/DRMacIver/term-extractor">Trampoline&#8217;s TermExtractor</a></li>
<li><a href="http://www.nzdl.org/Kea/index_old.html">Kea</a></li>
<li><a href="http://code.google.com/p/maui-indexer/">Maui</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.emmapersky.com/content-analysis-is-king/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Single Table Inheritance with Sequel</title>
		<link>http://blog.emmapersky.com/single-table-inheritance-with-sequel</link>
		<comments>http://blog.emmapersky.com/single-table-inheritance-with-sequel#comments</comments>
		<pubDate>Mon, 11 Jan 2010 06:03:57 +0000</pubDate>
		<dc:creator>Emma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.emmapersky.com/?p=36</guid>
		<description><![CDATA[I struggled with STI with Sequel as there is very little documentation on using plugins, let alone this specific one. It turns out it is incredibly trivial, but did require trawling through the code base to figure it out.
In your super class you need to activate the plugin (Sequel::Plugins::SingleTableInheritance), and specify the column name to [...]]]></description>
			<content:encoded><![CDATA[<p>I struggled with STI with Sequel as there is very little documentation on using plugins, let alone this specific one. It turns out it is incredibly trivial, but did require trawling through the code base to figure it out.</p>
<p>In your super class you need to activate the plugin (Sequel::Plugins::SingleTableInheritance), and specify the column name to be used to hold the name of the specific class for each object. In this case the super class is called <strong>Fruit</strong>, and the field I am using is <strong>object_type</strong><br />
<code>
<pre>
class Fruit &lt; Sequel::Model
   plugin :single_table_inheritance, :object_type
end</pre>
<p></code></p>
<p>It&#8217;s really important that the field name is a symbol. If it is a string it will go bang.</p>
<p>Obviously you need to create the field <strong>object_type</strong> in your database table <strong>fruits</strong> as some kind of text field long enough to hold the name of the superclass and any subclass.</p>
<p>Your subclasses are trivial, simply extend your superclass.</p>
<p><code><br />
class Apple &lt; Fruit</code></p>
<p><code> </code></p>
<p><code>end</code></p>
<p>Hope this helps someone!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.emmapersky.com/single-table-inheritance-with-sequel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Loose Focus on Women in Tech</title>
		<link>http://blog.emmapersky.com/dont-loose-focus-on-women-in-tech</link>
		<comments>http://blog.emmapersky.com/dont-loose-focus-on-women-in-tech#comments</comments>
		<pubDate>Tue, 20 Oct 2009 01:33:46 +0000</pubDate>
		<dc:creator>Emma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.emmapersky.com/?p=32</guid>
		<description><![CDATA[Yahoo!&#8217;s recent atrocity of hiring lap dancers for geeks at their Taiwan hack day was the cause of a flurry of activity on the web and caused some people who don&#8217;t often talk out on women in tech issues to speak up. That&#8217;s a great thing, but did it really take this unbelievable event to [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Yahoo!&#8217;s recent atrocity of hiring lap dancers for geeks at their Taiwan hack day was the cause of a flurry of activity on the web and caused some people who don&#8217;t often talk out on women in tech issues to speak up. That&#8217;s a great thing, but did it really take this unbelievable event to get the world to sit up and listen?</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">What worries me more is that this may be the new bar by which the attitude towards women in tech is judged. Whilst the norm (outside of this event) seems to be fairly innocuous and less explicit (few female speakers / attendees, general hyper-masculine attitude, pink laptops, etc) this is clearly way out there. The danger is that by focusing on not doing such incredibly insensitive activities we loose track of where the real battlefield should be. That by focusing on not objectifying women we stop focusing on ensuring we feel more involved.</div>
<p>Yahoo!&#8217;s recent atrocity of hiring lap dancers for geeks at their Taiwan hack day was the cause of a flurry of activity on the web and caused some people who don&#8217;t often talk out on women in tech issues to speak up. That&#8217;s a great thing, but did it really take this unbelievable event to get the world to sit up and listen?</p>
<p>What worries me more is that this may be the new bar by which the attitude towards women in tech is judged. Whilst the norm (outside of this event) seems to be fairly innocuous and less explicit (few female speakers / attendees, general hyper-masculine attitude, pink laptops, etc) this is clearly way out there. The danger is that by focusing on not doing such incredibly insensitive activities we loose track of where the real battlefield should be. That by focusing on not objectifying women we stop focusing on ensuring we feel more involved.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.emmapersky.com/dont-loose-focus-on-women-in-tech/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
