<?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>Daniel Slaughter &#187; Board/Card Game</title>
	<atom:link href="http://www.danielslaughter.com/category/boardcard-game/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danielslaughter.com</link>
	<description>In the life of Dan there is me, and there is chaos.</description>
	<lastBuildDate>Tue, 13 Dec 2011 13:52:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SXSW 2009: CSS3: What&#8217;s Now, What&#8217;s New and What&#8217;s Not?</title>
		<link>http://www.danielslaughter.com/2009/03/15/sxsw-2009-css3-whats-now-whats-new-and-whats-not/</link>
		<comments>http://www.danielslaughter.com/2009/03/15/sxsw-2009-css3-whats-now-whats-new-and-whats-not/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 19:57:04 +0000</pubDate>
		<dc:creator>Daniel Slaughter</dc:creator>
				<category><![CDATA[Board/Card Game]]></category>
		<category><![CDATA[Geeky]]></category>
		<category><![CDATA[SXSW 2009]]></category>

		<guid isPermaLink="false">http://danielslaughter.com/?p=154</guid>
		<description><![CDATA[Sunday, March 15th, 2009 2:00 PM David Baron, Mozilla Sylvain Galineau, Program Manager for Microsoft Hakon Wium Lie, Opera Software Molly Holzschlag, President of Opera Software 1. Mozilla CSS Modules (Just a few): Selectors Color Media Queries Backgrounds and Borders Fonts etc. Selectors: tr:nth-child(odd) {background: #FFA;} or tr:nth-child(even) opacity: 0.5 can be represented as rgba(0,255,0,0.5) [...]]]></description>
			<content:encoded><![CDATA[<p>Sunday, March 15th, 2009 2:00 PM<br />
David Baron, <a href="http://www.mozilla.org">Mozilla<br />
</a>Sylvain Galineau, Program Manager for <a href="http://www.microsoft.com">Microsoft</a><br />
Hakon Wium Lie, <a href="http://www.opera.com/">Opera Software</a><br />
Molly Holzschlag, President of <a href="http://www.opera.com/">Opera Software</a></p>
<p><strong>1. Mozilla</strong></p>
<p>CSS Modules (Just a few):</p>
<ul>
<li>Selectors</li>
<li>Color</li>
<li>Media Queries</li>
<li>Backgrounds and Borders</li>
<li>Fonts</li>
<li>etc.</li>
</ul>
<p>Selectors:</p>
<ul>
<li>tr:nth-child(odd) {background: #FFA;} <strong>or </strong>tr:nth-child(even)</li>
<li>opacity: 0.5 <strong>can be represented as</strong> rgba(0,255,0,0.5)</li>
<li>border-image <strong>allows for stretching </strong>of border images no matter height/width.</li>
<li>text-shadow: 0 0 0.25em #000;</li>
<li>-moz-border-radius: 0.67em;</li>
<li>word-wrap: break;</li>
<li>font-size-adjust: 0.45; lets you change the way you&#8217;re specifying font sizes by the x-height of the characters. this attribute acts as a multiplier.</li>
<li><strong>downloadable fonts can be achieved by</strong> @font-face { src: url(&#8220;GenBasR.ttf&#8221;); font-family: &#8220;Gentium Basic&#8221;; font-weight: normal; font-style: normal; }</li>
<li>width: calc(50% &#8211; 8px);</li>
<li>h1 { content: url(company-name.png); }</li>
</ul>
<p>As a side note, Baron was using the browser &#8220;<a href="http://www.downloadsquad.com/2008/10/25/experimental-minefield-browser-from-mozilla-is-crazy-fast/">Minefield</a>.&#8221; I&#8217;ve never heard of this browser, but I want to check it out sometime.<br />
As a side note, the Galineau from Microsoft has a Firefox 3 sticker on his laptop. <img src='http://www.danielslaughter.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>2. Internet Explorer</strong></p>
<p>Internet Explorer 8 is working on getting up to date with CSS 2.1, but has no plans to release a stable support for CSS 3.0 as Opera/Firefox is already supporting.</p>
<p><strong>3. Opera</strong></p>
<p>Selectors:</p>
<ul>
<li>text-shadow</li>
<li>border-radius: 60px 0px / 0px 60px;</li>
<li>box-shadow: 0 0 20px 10px #000 inset;</li>
<li>box-shadow: 0 0 20px 10px #000 inset, 0 0 20px 10px #FFA; <strong>would do two shadows</strong>.</li>
<li>border-image</li>
<li>media-queries lets you change the CSS display based on the width/height of the content view area.</li>
</ul>
<p>As a side note, the Galineau from Microsoft was grabbing his fast in nervousness while Wium Lie was going over Opera&#8217;s amazing new features. <img src='http://www.danielslaughter.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>4. Questions and Answers</strong></p>
<p>Typically designers will float elements on a page to mimic page layouts. Although it works, it just doesn&#8217;t seem like a good solution. <a href="http://www.snook.ca/">Johnathan Snook</a> is a CSS layout issue author who touches on implimations for this issue.</p>
<p>Opera wrote a few custom selectors into their browser that lets them print as a book. They actually used this technology to print and publish an entire book two years ago. They worked with <a href="http://www.yessoftware.com/">Yes Software</a> who was doing something very similar to what they wanted.</p>
<p>Baron posted his examples online. You can access these from <a href="http://www.dbaron.com/talks/">his website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielslaughter.com/2009/03/15/sxsw-2009-css3-whats-now-whats-new-and-whats-not/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Card Game Review: Citadels</title>
		<link>http://www.danielslaughter.com/2008/08/07/card-game-review-citadels/</link>
		<comments>http://www.danielslaughter.com/2008/08/07/card-game-review-citadels/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 23:54:15 +0000</pubDate>
		<dc:creator>Daniel Slaughter</dc:creator>
				<category><![CDATA[Board/Card Game]]></category>

		<guid isPermaLink="false">http://www.danielslaughter.com/2008/08/07/card-game-review-citadels/</guid>
		<description><![CDATA[I&#8217;ve decided to start doing short, but comprehensive, reviews on Board Games and Card Games I buy. At work me and the individuals I play with enjoy playing abstract games. Unlike Monopoly, Scrabble, and every game you played as a child, the games we play contain a decent amount of strategy. Most of us being [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to start doing short, but comprehensive, reviews on Board Games and Card Games I buy. At work me and the individuals I play with enjoy playing abstract games. Unlike Monopoly, Scrabble, and every game you played as a child, the games we play contain a decent amount of strategy. Most of us being computer geeks, these types of games tend to fit right in.</p>
<p><strong>Introduction:</strong></p>
<p><a title="Citadels on BoardGameGeek" href="http://www.boardgamegeek.com/game/478"><img align="left" alt="Citadels Card Game" id="image86" title="Citadels Card Game" src="http://www.danielslaughter.com/blog/wp-content/uploads/2008/08/citadels.thumbnail.jpg" /></a><a title="Citadels on BoardGameGeek" href="http://www.boardgamegeek.com/game/478">Citadels </a>is a card game which supports 2-7 players. There are few good games that support such a vast number, and thus for that reason alone this game is amazing.</p>
<p>The rules are easy to pick up for all players which makes it enjoyable for everyone. The point of the game is to build a variety of valuable districts. There are five types of districts and these types influence resource gain for the different players. The game ends when a player reaches eight districts; however that player does not necicarly win. The victor of the game is the one with the most valuable city (plus a few points here and there for having one type of each district and for getting to eight districts by the end of the game). At first I felt the game didn&#8217;t have much strategy, but after a few rounds my mind was just blow away from the strategic complexity this game offers.</p>
<p><strong>My Review</strong>:</p>
<p>Players: 2-7<br />
Play time: 45-60 minutes<br />
Cost: ~$20</p>
<p>Art/Graphics: 8/10<br />
Material Quality: 7/10<br />
Replay Value: 9/10<br />
Fun/Strategy: 7/10<br />
Overall Score: 7.75/10</p>
<p><strong>Puchase:</strong></p>
<p>I purchased <a title="Citadels on Amazon.com" href="http://www.amazon.com/o/ASIN/158994030X">my copy from Amazon.com</a> for about $16. The game on Amazon.com INCLUDES the expansion which adds more characters and district cards. So don&#8217;t think you&#8217;ll need to buy that too!</p>
<p>Enjoy!,<br />
Daniel Slaughter</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielslaughter.com/2008/08/07/card-game-review-citadels/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

