<?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>nirak.net</title>
	<atom:link href="http://nirak.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://nirak.net</link>
	<description>The web home of Karin Dalziel</description>
	<lastBuildDate>Mon, 18 Mar 2013 15:59:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Responsive Design: a Primer</title>
		<link>http://nirak.net/2013/03/responsive-design-a-primer/</link>
		<comments>http://nirak.net/2013/03/responsive-design-a-primer/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 15:59:46 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design and Development]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=856</guid>
		<description><![CDATA[Lately the library and academic world (or at least the ones I follow on twitter) are talking about responsive design, a web design technique/philosophy that&#8217;s been around for a few years. I think the first article on it was &#8220;Responsive &#8230; <a href="http://nirak.net/2013/03/responsive-design-a-primer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Lately the library and academic world (or at least the ones I follow on twitter) are talking about responsive design, a web design technique/philosophy that&#8217;s been around for a few years. I think the first article on it was &#8220;<a href="http://alistapart.com/article/responsive-web-design">Responsive Web Design</a>&#8221; by Ethan Marcotte in A List Apart, and that&#8217;s where the phrase was coined and where I first saw it. When I first read about responsive design, it was such a &#8220;duh&#8221; moment &#8211; why haven&#8217;t we always been designing like this? The answer, of course, is that it could not develop until enough browsers supported media queries. Now that most do, and in particular nearly all mobile browsers, we can use responsive designs in all our websites. (For lots and lots of responsive design inspiration, check out the <a href="http://mediaqueri.es/">Media Queries design showcase</a>.)</p>
<p><a href="http://nirak.net/wp-content/uploads/2013/03/dh2013_sm.jpg"><img class="alignnone size-full wp-image-861" alt="dh2013_sm" src="http://nirak.net/wp-content/uploads/2013/03/dh2013_sm.jpg" width="640" height="367" /></a><em>Different views of the <a href="http://dh2013.unl.edu/">Digital Humanities 2013</a> conference site.</em></p>
<p>Why?</p>
<p>Responsive Design is based on the idea that content, if well thought out, shouldn&#8217;t change, it should just reflow for different screen sizes. It does away with the idea that mobile users are looking for different content than desktop users - everyone gets the same content, just reformatted for their screen size. For the websites I work on, this is a much better solution than a separate mobile site, because it simplifies things and it forces me to think beyond the fixed width layout.</p>
<p>How?</p>
<p>Responsive design works by setting a rule in your CSS. For example, &#8220;when the browser is 400 pixels wide or less, make the font size smaller.&#8221;</p>
<p>That rule looks like this:<br />
<code>@media only screen and (min-width: 400px) {<br />
   body {<br />
      font-size:.9em;<br />
   }<br />
}</code><br />
<em>With great power comes great responsibility- please don&#8217;t make the font teeny tiny on mobile devices, my eyes will thank you.</em></p>
<p>Wait, I hear you thinking, 400px on one screen is different from 400px on another! What about retina displays?</p>
<p>There are a couple of ways to handle this:</p>
<p>1: A meta tag in the header that basically says &#8220;hey high resolution device, pretend you have normal pixels, OK?&#8221;<br />
<code>&lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;</code><br />
<em>By the way, don&#8217;t add &#8220;user-scalable=no&#8221; to that meta viewport tag. It makes puppies cry, and it makes your sites less accessible.</em></p>
<p>2: Or, you can ignore pixels all together and use em&#8217;s instead:<br />
<code>@media only screen and (min-width: 35em) {<br />
      blah blah blah<br />
}</code><br />
That&#8217;s basically it. So if a user makes their bowser window bigger or smaller, the site will change when it reaches the desired size. There are lots of sites out there that will <a href="https://www.google.com/search?q=responsive+design+tutorial">walk you through creating a responsive website step by step</a>. In addition, many CMS&#8217;s now come loaded with responsive templates by default (like WordPress&#8217;s pretty <a href="http://wordpress.org/extend/themes/twentytwelve">Twenty Twelve</a> theme).</p>
<h3>Mobile first?</h3>
<p>There are two ways to use responsive design: design for small screens and then add conditional rules for larger screens, or design for large screens and scale down for smaller ones. Or, you can do both. Which you choose depends one what you&#8217;re aiming for,  the main screen size of your users, and what percentage of your users use incompatible browsers. Here&#8217;s a handy chart of <a href="http://caniuse.com/css-mediaqueries">which browsers support media queries</a> (spoiler alert- basically everything except IE 8 and below).</p>
<p>Sometimes I&#8217;ll serve up the mobile version of something to IE8 and below, because it&#8217;s easier than dealing with the other rendering bugs that come with the more complex version for larger screens. All the information is there, it&#8217;s just not quite as pretty.</p>
<h3>Awesome! How do I start?</h3>
<p>Besides reading a tutorial or two, I&#8217;d start with a <a href="http://html5boilerplate.com/">HTML5 boilerplate template</a>  which includes a sample media query, and start writing HTML and CSS. Or, take an <a href="http://visionwidget.com/responsive-html-templates.html">existing responsive theme</a> and make some changes. Or, download a <a href="https://www.google.com/search?q=responsive+html+framework">responsive HTML/CSS framework</a> and make something. There&#8217;s also a <a href="http://www.amazon.com/s/url=search-alias%3Daps&amp;field-keywords=responsive+web+design">bunch of books</a> on the topic, including a $9 ebook called <a href="http://www.abookapart.com/products/responsive-web-design">Responsive Web Design</a>, written by Ethan Marcotte, whose article I mentioned at the beginning of this post.</p>
<p>That&#8217;s it! I think responsive design is a lot of fun, and a breath of fresh air after years of having people ask me &#8220;what about the mobile version?&#8221; Now, my sites only have one version, and work on almost all screens.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2013/03/responsive-design-a-primer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML, CSS and Design lightning talk</title>
		<link>http://nirak.net/2013/02/htmlcss-and-design-lightning-talk/</link>
		<comments>http://nirak.net/2013/02/htmlcss-and-design-lightning-talk/#comments</comments>
		<pubDate>Mon, 18 Feb 2013 17:11:39 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design and Development]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=814</guid>
		<description><![CDATA[About a year and a half ago, I posted on my design process. Not a lot has changed since then, but I&#8217;ve been asked to help facilitate a class session on HTML, CSS and Design. As always, it&#8217;s helpful for &#8230; <a href="http://nirak.net/2013/02/htmlcss-and-design-lightning-talk/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>About a year and a half ago, I posted on <a href="http://nirak.net/2011/06/current-design-process-for-digital-humanities/">my design process</a>. Not a lot has changed since then, but I&#8217;ve been asked to help facilitate a class session on HTML, CSS and Design. As always, it&#8217;s helpful for me to write about it first, and I figured I might as well put my observations here as well. Most of this will be a direct translation of the slide show I plan to give. It&#8217;s supposed to be a super fast overview to generate questions.</p>
<p>One of the biggest changes in the way I work over the last year and a half is I&#8217;ve pushed design farther and farther back in the process; after I build the site, usually. This really lets me focus on content and how it will be presented before getting into the often messy design details.</p>
<h3>Determine Content</h3>
<p>If you are working on your own project, content is easy. If you are designing for someone else, you need to get them to give you the content, or at least tell you about it. Either way, you need to get a firm grip on not only what the content is, but how you will organise it.</p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s2.b.jpg"><img class="alignnone size-full wp-image-821" alt="s2.b" src="http://nirak.net/wp-content/uploads/2013/02/s2.b.jpg" width="640" height="480" /></a></p>
<h3>Collect and Create Design Ideas</h3>
<ul>
<li>Pore over project materials</li>
<li>Browse other websites</li>
<li>Research other photos, artwork, etc</li>
<li>Find color palettes</li>
<li>Collect fonts</li>
<li>Create sketches &#8211; of layouts, colors, design elements, anything.</li>
<li>Save everything</li>
<li>Create collages (optional). These can help guide the design process later, and serve as something to talk about with the group in the meantime.</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s4.b.jpg"><img class="alignnone size-full wp-image-822" alt="s4.b" src="http://nirak.net/wp-content/uploads/2013/02/s4.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s5.b.jpg"><img class="alignnone size-full wp-image-823" alt="s5.b" src="http://nirak.net/wp-content/uploads/2013/02/s5.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s6.b.jpg"><img class="alignnone size-full wp-image-824" alt="s6.b" src="http://nirak.net/wp-content/uploads/2013/02/s6.b.jpg" width="640" height="480" /></a></p>
<h3>Pick a place to build site</h3>
<ul>
<li>Can start on your computer
<ul>
<li>Use virtual box (google “<a href="https://www.google.com/search?q=set+up+a+web+server+with+virtualbox&amp;oq=set+up+a+web+server+with+virtualbox">set up a web server with virtualbox</a>”)</li>
<li>Or use <a href="http://www.mamp.info/en/index.html">MAMP</a> or <a href="http://www.wampserver.com/en/">WAMP</a></li>
<li>Or skip straight to:</li>
</ul>
</li>
<li>Get web host + domain name
<ul>
<li>Popular options: namecheap, bluehost, dreamhost</li>
</ul>
</li>
</ul>
<h3>Start to Build Site</h3>
<ul>
<li>Plain HTML or</li>
<li>PHP or</li>
<li>XML/XSLT/Cocoon or</li>
<li>CMS (WordPress, Drupal) or</li>
<li>One of hundreds of other possibilities or a PHP/Ruby/other language framework</li>
<li>Dependent on where you will be hosting</li>
<li>Google for books/tutorials on chosen technologies</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s9.b.jpg"><img class="alignnone size-full wp-image-825" alt="s9.b" src="http://nirak.net/wp-content/uploads/2013/02/s9.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s10.b.jpg"><img class="alignnone size-full wp-image-826" alt="s10.b" src="http://nirak.net/wp-content/uploads/2013/02/s10.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s11.b.jpg"><img class="alignnone size-full wp-image-827" alt="s11.b" src="http://nirak.net/wp-content/uploads/2013/02/s11.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s12.b.jpg"><img class="alignnone size-full wp-image-828" alt="s12.b" src="http://nirak.net/wp-content/uploads/2013/02/s12.b.jpg" width="640" height="480" /></a></p>
<h3>Work on Architecture</h3>
<ul>
<li>Use flowcharts to determine content flow</li>
<li>Draw up wireframes (on paper or computer)</li>
<li>Determine navigation, including wording. Avoid jargon.</li>
<li>Think about both casual and specialist audiences</li>
<li>Aim for clarity</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s14.b.jpg"><img class="alignnone size-full wp-image-829" alt="s14.b" src="http://nirak.net/wp-content/uploads/2013/02/s14.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s15.b.jpg"><img class="alignnone size-full wp-image-830" alt="s15.b" src="http://nirak.net/wp-content/uploads/2013/02/s15.b.jpg" width="640" height="480" /></a></p>
<h3>Design</h3>
<ul>
<li>Read a lot about design, if it interests you, take a design or art history class or two.</li>
<li>Find some designs you like (perhaps open source) and figure out why you like them.</li>
<li>When in doubt, keep it simple.</li>
<li>When possible, start with bare bones version of site, and build up from there.</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s1.png"><img class="alignnone size-full wp-image-844" alt="s1" src="http://nirak.net/wp-content/uploads/2013/02/s1.png" width="640" height="367" /></a></p>
<h3>Basic Design Principles: Simplicity</h3>
<ul>
<li>In the beginning, may be best to use <a href="http://en.wikipedia.org/wiki/KISS_principle">KISS design principles</a>.</li>
<li>Try an image search for “<a href="https://www.google.com/search?q=minimalist+web+design&amp;hl=en&amp;tbo=d&amp;source=lnms&amp;tbm=isch&amp;sa=X&amp;ei=v1giUcXHO6Hg2gWZyIGACw&amp;ved=0CAoQ_AUoAQ&amp;biw=1441&amp;bih=937">minimalist web design</a>.”</li>
<li>Simpler is often better than cluttered, let your content shine.</li>
<li>Start with inside pages, then move to “splash page” if there is time.</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s18.b.jpg"><img class="alignnone size-full wp-image-831" alt="s18.b" src="http://nirak.net/wp-content/uploads/2013/02/s18.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s19.b.jpg"><img class="alignnone size-full wp-image-832" alt="s19.b" src="http://nirak.net/wp-content/uploads/2013/02/s19.b.jpg" width="640" height="480" /></a><br />
<em>With content as complex as this, who needs a cluttered design?</em></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s20.b.jpg"><img class="alignnone size-full wp-image-833" alt="s20.b" src="http://nirak.net/wp-content/uploads/2013/02/s20.b.jpg" width="640" height="480" /></a><br />
<em>A splash page does not have to be complicated to be beautiful.</em></p>
<h3>Basic Principles: Alignment</h3>
<ul>
<li>Line things up.  This is pretty easy vertically when designing webpages.</li>
<li>Pay attention to margins, padding, and borders.</li>
<li>Read about how the <a href="http://css-tricks.com/the-css-box-model/">CSS box model</a> works to help with alignment.</li>
<li>Look into grid based CSS frameworks (Like the <a href="http://960.gs/">960 framework</a> or <a href="http://twitter.github.com/bootstrap/">twitter bootstrap</a>) and try them out. Even if you don’t use them it is a good foundation.</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s22.b.jpg"><img class="alignnone size-full wp-image-834" alt="s22.b" src="http://nirak.net/wp-content/uploads/2013/02/s22.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s23.b.jpg"><img class="alignnone size-full wp-image-835" alt="s23.b" src="http://nirak.net/wp-content/uploads/2013/02/s23.b.jpg" width="640" height="480" /></a><br />
<em>The header is center aligned, while in the body boxes and text are aligned to the same margin.</em></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s24.b.jpg"><img class="alignnone size-full wp-image-836" alt="s24.b" src="http://nirak.net/wp-content/uploads/2013/02/s24.b.jpg" width="640" height="480" /></a></p>
<h3>Basic Principles: Color &amp; Contrast</h3>
<ul>
<li>Find inspiration in project materials if possible, and look at other sources.</li>
<li>Look at color websites and save palettes that make you think of your project.</li>
<li>Pay attention to context &#8211; colors will look different depending on where they are.</li>
<li>Keep in mind <a href="http://wearecolorblind.com/">colorblindness</a> and <a href="http://contrastrebellion.com/">contrast</a> sensitivities.</li>
<li>When in doubt, it&#8217;s hard to go wrong with black text and a white background and a splash of one or two other colors.</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s26.b.jpg"><img class="alignnone size-full wp-image-837" alt="s26.b" src="http://nirak.net/wp-content/uploads/2013/02/s26.b.jpg" width="640" height="480" /></a><br />
<em>It can be fun to create palettes from images you are inspired by.</em></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s27.b.jpg"><img class="alignnone size-full wp-image-838" alt="s27.b" src="http://nirak.net/wp-content/uploads/2013/02/s27.b.jpg" width="640" height="480" /></a><br />
<em>The same gray looks different on a red or blue background.</em></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s28.b.jpg"><img class="alignnone size-full wp-image-839" alt="s28.b" src="http://nirak.net/wp-content/uploads/2013/02/s28.b.jpg" width="640" height="480" /></a><br />
<em>Red/Green colorblind users won&#8217;t be able to distinguish between the two colors on the left.</em></p>
<h3>Basic Principles: Typography</h3>
<ul>
<li>Choose 2-3 fonts, and use decorative fonts sparingly.</li>
<li>Use open source fonts that are free to embed. (check out <a href="http://www.google.com/webfonts">Google Web Fonts</a> and <a href="http://www.fontsquirrel.com/">Font Squirrel</a>)</li>
<li>Choose body fonts for readability, test them at varying sizes and on different computers.</li>
<li>Check to make sure the fonts support the character sets you need them to &#8211; ligatures, foreign languages, etc.</li>
<li>Don&#8217;t put text in images.</li>
</ul>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s30.b.jpg"><img class="alignnone size-full wp-image-840" alt="s30.b" src="http://nirak.net/wp-content/uploads/2013/02/s30.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s31.b.jpg"><img class="alignnone size-full wp-image-841" alt="s31.b" src="http://nirak.net/wp-content/uploads/2013/02/s31.b.jpg" width="640" height="480" /></a></p>
<p><a href="http://nirak.net/wp-content/uploads/2013/02/s32.b.jpg"><img class="alignnone size-full wp-image-842" alt="s32.b" src="http://nirak.net/wp-content/uploads/2013/02/s32.b.jpg" width="640" height="480" /></a></p>
<h3>Questions?</h3>
<p>I might update this post later if I get questions I forgot to address. If you have any questions, feel free to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2013/02/htmlcss-and-design-lightning-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photography Color Experimenting</title>
		<link>http://nirak.net/2012/11/photography-color-experimenting/</link>
		<comments>http://nirak.net/2012/11/photography-color-experimenting/#comments</comments>
		<pubDate>Sun, 11 Nov 2012 17:40:19 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=781</guid>
		<description><![CDATA[I&#8217;ve been conducting some custom white balance color tests with my camera. I have been making it up as I go, and now want to reshoot al the tests with new color cards, but I thought I would go ahead &#8230; <a href="http://nirak.net/2012/11/photography-color-experimenting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a title="Pages by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8146388846/"><img src="http://farm9.staticflickr.com/8334/8146388846_4357ff1e1a_z.jpg" alt="Pages" width="640" height="378" /></a></p>
<p>I&#8217;ve been conducting some custom white balance color tests with my camera. I have been making it up as I go, and now want to reshoot al the tests with new color cards, but I thought I would go ahead and link up what I have done so far in case anyone is interested.</p>
<p>Here&#8217;s what I have done so far:</p>
<p>First, I painted up some random color cards for custom white balance tests. I didn&#8217;t really have a set idea of what colors I would paint here, except that I would do some warm (redish or yellowish) and some cool (blueish). I also used a few color cards I had inherited. My first test shots came out interesting (to me at least):</p>
<p><a title="Custom White balance tests by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123290542/"><img src="http://farm9.staticflickr.com/8188/8123290542_777c3e723c_z.jpg" alt="Custom White balance tests" width="640" height="453" /></a></p>
<p>After I shot all the pictures, I used opened the raw images in lightroom and looked at the temp for each of them. As I noted in a previous post, I was surprised when I learned that two of them had the same temp (k value) but were different colors. this is because the camera also sets the tint of the photo.</p>
<p><a title="Custom White balance tests by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123274253/"><img src="http://farm9.staticflickr.com/8193/8123274253_46fc042c52.jpg" alt="Custom White balance tests" width="500" height="166" /></a></p>
<p>So, I decided to repeat my experiment, but with some different color cards. At this point, I made a mistake &#8211; I painted up some color cards that were based on what I&#8217;d learned to be the color wheel: Red, Orange, Yellow, Green, Blue, Purple. I didn&#8217;t even do that good a job painting them &#8211; I&#8217;d have failed this assignment if it was art school. Besides each of the 6 colors, I painted a light version and a dark version of each.</p>
<p><a title="Photo Oct 08, 9 36 48 AM by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8145727485/"><img src="http://farm9.staticflickr.com/8467/8145727485_9d1a40aed3.jpg" alt="Photo Oct 08, 9 36 48 AM" width="500" height="375" /></a></p>
<p>I then shot a still life using the cards to set a custom white balance, under 4 different types of light:</p>
<ul>
<li><strong><a href="http://nirak.net/uploads/colortest/02_cloudy_daylight.html">Cloudy Daylight</a>:</strong> This was next to a large open window with cloudy, 3pm daylight outside.</li>
<li><strong><a href="http://nirak.net/uploads/colortest/03_daylight_bulbs.html">Alzo Daylight Bulbs</a>:</strong> Main lighting was two 100 watt equiv bulbs (4 in room total).</li>
<li><strong><a href="http://nirak.net/uploads/colortest/04_daylight_lamps.html">Cheap daylight lamp</a>:</strong> I didn&#8217;t set this op up correctly, so I consider it a failure. oops.</li>
<li><strong><a href="http://nirak.net/uploads/colortest/05_incandescent.html">Incandescent</a>:</strong> A single 60w incandescent bulb in a desk lamp.</li>
</ul>
<p>After I shot each of these, I used lightroom to find the temp and k values of each of the photos. I also white balanced the color cards according to a white card. (I sure hope this is making sense to someone else.)</p>
<p>I also shot <a href="http://nirak.net/uploads/colortest/06_colorshift.html">a set of photos color shifted using my camera&#8217;s white balance bracket / color shift feature</a>, and took a photo of the screen of each of the settings. The camera was set to daylight for each of the shots, and I used the K and tint values to fake a shot for each of them by applying the camera&#8217;s readouts to a color balanced still life shot.</p>
<p>SO, after all that, I put together some test pages for each of the types of light where I can sort by temp or k values:</p>
<ul>
<li><a href="http://nirak.net/uploads/colortest/02_cloudy_daylight.html">Cloudy Daylight</a></li>
<li><a href="http://nirak.net/uploads/colortest/03_daylight_bulbs.html">Alzo Daylight Bulbs</a></li>
<li><a href="http://nirak.net/uploads/colortest/04_daylight_lamps.html">Cheap Daylight Lamp</a></li>
<li><a href="http://nirak.net/uploads/colortest/05_incandescent.html">Incandescent</a></li>
<li><a href="http://nirak.net/uploads/colortest/06_colorshift.html">Camera Color shift</a></li>
<li><a href="http://nirak.net/uploads/colortest/07_shots_compared.html">All still lifes compared</a></li>
<li><a href="http://nirak.net/uploads/colortest/08_colors_compared.html">All color cards compared</a></li>
</ul>
<p>I plan to reshoot the photos based on color cards pulled from the color shift shots, but am not sure when that will be since my free trial of lightroom ran out and I&#8217;m not going to buy it right away. (If anyone knows of a free program which will tell me the temp/tint values, let me know &#8211; The Canon camera raw software won&#8217;t, and my copy of photoshop is too old to open my camera&#8217;s raw files.)</p>
<p>What have I learned? Nothing definitive, but a few things I find interesting.</p>
<ul>
<li>The color shift pictures from the camera follow a pattern when sorted by temp and tint (this may make more sense if you look at the <a href="http://nirak.net/uploads/colortest/06_colorshift.html">Camera Color shift</a> experiment):</li>
</ul>
<p><a title="temp_tint_paths by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8145758174/"><img src="http://farm9.staticflickr.com/8184/8145758174_92ccb6c25d_z.jpg" alt="temp_tint_paths" width="640" height="252" /></a></p>
<ul>
<li>I really need to rethink color if I am going to work digitally. It&#8217;s hard to unlearn/relearn everything you know about something, but I need to find a way.</li>
<li>Temp seems to be a bit more consistently applied by the camera than tint, which can vary wildly.</li>
<li>Using color cards seems like a quicker method of getting a desired color shift than setting a color shift in the camera, provided you already have some cards made up.</li>
<li>I&#8217;m probably doing these experiments as a way to procrastinate applying principles, i.e. actually getting out there and taking photos.</li>
<li>I am not really sure what to make of this all, but I am fascinated with the results.</li>
</ul>
<p>My next step is to <a href="http://sci-toys.com/scitoys/scitoys/light/spectrograph/spectrograph.html">build a spectrograph</a> and go back and create a graph for each of the light sources I tried (I won&#8217;t be able to get exact on the sunlight, but I hope to get close.) I am hoping this graph in addition to the photos will give me a better picture of the effect of different lights on photos. But, I fear I need to reshoot the photos with a better set of color cards first.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/11/photography-color-experimenting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Note on content/housekeeping</title>
		<link>http://nirak.net/2012/11/note-on-contenthousekeeping/</link>
		<comments>http://nirak.net/2012/11/note-on-contenthousekeeping/#comments</comments>
		<pubDate>Fri, 02 Nov 2012 01:33:28 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=784</guid>
		<description><![CDATA[Why the weird posts? After a long time of not using this blog very regularly, I want to start using it again. If you have been a long time follower of my blog, my recent posts on photography may seem &#8230; <a href="http://nirak.net/2012/11/note-on-contenthousekeeping/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h3>Why the weird posts?</h3>
<p>After a long time of not using this blog very regularly, I want to start using it again. If you have been a long time follower of my blog, my recent posts on photography may seem a little out of place compared to some of my older content. I have a couple of other blogs — space.nirak.net and art.nirak.net and I sometimes have trouble deciding what to put where.</p>
<p>I decided on the following basic breakdown:</p>
<p><a href="http://nirak.net">nirak.net</a>: computer/research. This is why the photography experiments have ended up here, they are sorta researchy. Anything work/digital humanities/library related will stay here, but I&#8217;m hoping to have a place at work to write about those things at some point.</p>
<p><a href="http://art.nirak.net">art.nirak.net</a>: Individual artworks, shown in a large format. I have not featured photographs here very often, but I plan to start if any of my shots get good enough.</p>
<p><a href="http://space.nirak.net">space.nirak.net</a>: Everything else, including gardening, cooking, photo dumps, and art process things (although that could be considered research, categories are hard). I may eventually collapse this blog into nirak.net, but I want to keep it as a separate experimental space for now. I&#8217;m guessing this blog will be of interest to those who know me personally, if anyone.</p>
<h3>Feeds</h3>
<p>I have switched all my feeds to the native feed rather than the feedburner feed. If you subscribe to the feedburner feed, you will probably keep getting posts for a while, but if you want to make sure you are getting the correct feed, it&#8217;s probably best to resubscribe. (I&#8217;m not <a href="http://www.business2community.com/blogging/am-i-talking-to-myself-over-here-my-feedburner-saga-0311367">all that sure about feedburner&#8217;s longevity</a>.) If you are using feedburner for an email subscription, let me know and I will figure something else out.</p>
<p>Here they are so you don&#8217;t have to go hunting:</p>
<ul>
<li>nirak.net: <a href="http://nirak.net/feed/" target="_blank">http:<wbr>/<wbr>/nirak<wbr>.net<wbr>/feed<wbr>/</wbr></wbr></wbr></wbr></wbr></a></li>
<li>art.nirak.net: <a href="http://art.nirak.net/feed/">http://art.nirak.net/feed/</a></li>
<li>space.nirak.net: <a href="http://space.nirak.net/feed/">http://space.nirak.net/feed/</a></li>
</ul>
<p>I&#8217;m told all the time that no one uses feeds anymore, but I use them every day.</p>
<h3>Design shake up</h3>
<p>Finally, I am going to be changing up the design around here. Hopefully I won&#8217;t break things too bad.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/11/note-on-contenthousekeeping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Librarians and programming revisited</title>
		<link>http://nirak.net/2012/11/librarians-and-programming-revisited/</link>
		<comments>http://nirak.net/2012/11/librarians-and-programming-revisited/#comments</comments>
		<pubDate>Thu, 01 Nov 2012 21:46:01 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=772</guid>
		<description><![CDATA[Recently, Peter Murray wrote on The Security Implications of Teaching Librarians to Program, and I agree with both the potential problems and his solutions. I&#8217;d add that I would never want to do any programming on a server that contained student &#8230; <a href="http://nirak.net/2012/11/librarians-and-programming-revisited/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Recently, Peter Murray wrote on <a href="http://dltj.org/article/security-implications-of-librarian-developers/">The Security Implications of Teaching Librarians to Program</a>, and I agree with both the potential problems and his solutions. I&#8217;d add that I would never want to do any programming on a server that contained student data (we are lucky to have several of our own spaces) for obvious reasons. I wouldn&#8217;t recommend it for even experienced programmers if they can help it, especially when working in the digital humanities where we are always trying new things. Luckily, server space is cheap, and I think it would be well worth $100 a year to get some commercial web space for a librarian who wanted to try building something. Alternately, the library could try and get an old server to use as a testing space for budding coders. The same could be said for DH students who want to try their hand at building a project of their own.</p>
<p>Peter&#8217;s post got me reading my old post on  <a href="http://nirak.net/2008/12/why-every-library-science-student-should-learn-programming/">Why every Library Science student should learn programming</a> from 2008, which is still one of my most popular. I thought it might be a nice time to reflect on whether I still think it&#8217;s true (spoiler alert: I do.)</p>
<p>Many of my original reasons hold true (especially being able to migrate data formats oneself) but some of them are a little&#8230; optimistic, shall we say. I don&#8217;t think that librarians should be handling the ILS backend necessarily, and I think libraries should be hiring trained programmers for much of this stuff when they can — not that there will never be any overlap. I still think programming should be written into the library school curriculum, though.</p>
<p>In the last 4 years, I have served on a lot of project teams with a lot of different types of people with a lot of different digital projects. Some of my favorite people to work with are the semi programmers, the ones that know enough to have done some initial exploring, but also know that to build something ready for prime time, it&#8217;s best to call in help. These people know how hard programming is, and so they tend not to be the ones who expect a turnaround time of a few hours for complicated requests. They also tend to be the ones who are best at explaining what it is they want: not only the ideal version, but the good enough version (we usually end up somewhere in the middle.)</p>
<p>This is one of the reasons I think librarians should take a programming class: there&#8217;s nothing like beating your head against that wall to make you realize how complex this stuff is. Add to that that it increases the chance the librarian will be able to explain things when he or she needs help: what exactly went wrong, what they think might be the problem.</p>
<p>The other reason I still agree with past me has little to do with whether the librarian will actually use programming in their job. I have been approached by several people over the last few years who ask me, hopefully, about library school. One of the common threads I see is some of them want a place where they can stay away from technology. Some (still!) see libraries as a last refuge for luddites. It&#8217;s not that luddites can&#8217;t have a place in libraries, but I think those places are few and getting rarer. Requiring a programming class is like requiring cataloging even of those who are positive they&#8217;ll never be catalogers: it&#8217;s a minimum standard to reach, a proof that you&#8217;re willing to at least try other ways of thinking about data and information.</p>
<p>To be honest, I&#8217;d like to see library school in general get harder. I would have liked it to be harder. I have a friend in library school now who is shocked and dismayed at how easy it is. For the brightest, at least in some programs, there&#8217;s very little challenge and few opportunities for growth. Programming is challenging. It forces one to see computers, and information, in a new way. Whether or not one ends up using this for a career, it shifts how one thinks about things. That, to me, is the benefit.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/11/librarians-and-programming-revisited/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>To shoot raw or not to shoot raw</title>
		<link>http://nirak.net/2012/10/to-shoot-raw-or-not-to-shoot-raw/</link>
		<comments>http://nirak.net/2012/10/to-shoot-raw-or-not-to-shoot-raw/#comments</comments>
		<pubDate>Sun, 28 Oct 2012 22:02:08 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=761</guid>
		<description><![CDATA[I&#8217;ve been going back and forth on the &#8220;shooting in raw&#8221; question for a while. Raw is the native format of whatever camera you are using &#8211; and it is different for every camera. It is uncompressed, like PNG&#8217;s and &#8230; <a href="http://nirak.net/2012/10/to-shoot-raw-or-not-to-shoot-raw/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been going back and forth on the &#8220;shooting in raw&#8221; question for a while. Raw is the native format of whatever camera you are using &#8211; and it is different for every camera. It is uncompressed, like PNG&#8217;s and TIFF&#8217;s, unlike the compressed JPEG format. And, since it saves much more information from your camera, it allows for some nice adjustments after the fact.</p>
<p>For instance, the color experiments from the last post were all shot in raw, and it would have been impossible to see the information on color temperature and tint without the right format. Also, it was much quicker to shoot because I didn&#8217;t have to re-set the white balance to the color of the light source before I shot every color card.</p>
<div style="float: left; width: 48%;">These are the images straight out of the camera. The color cards aren&#8217;t correct because they have the white balance of the card that came before.<br />
<a title="White balance pics by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123429992/"><img src="http://farm9.staticflickr.com/8183/8123429992_30819b3545.jpg" alt="White balance pics" width="224" height="500" /></a></div>
<div style="float: right; width: 48%;">These are the images once I adjusted the color cards to match the color of the light source. The colors now seem to be properly &#8220;opposite&#8221; one another.<br />
<a title="Custom White balance tests by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123290240/"><img src="http://farm9.staticflickr.com/8044/8123290240_af736931a3.jpg" alt="Custom White balance tests" width="225" height="500" /></a></div>
<p><br style="clear: both;" /><br />
Besides white balance, raw format allows you to make other changes after the fact: sharpening, saturation, and contrast. It&#8217;s fun messing with these changes to give photos a whole new look.</p>
<p><a style="clear: both;" title="White balance pics by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123430688/"><img src="http://farm9.staticflickr.com/8190/8123430688_f8c91b0f7b_z.jpg" alt="White balance pics" width="640" height="335" /></a></p>
<p>(The picture on the left is shot with the same white balance as the garden picture in my <a href="http://nirak.net/2012/10/digital-photography-and-white-balance/">last post</a>, on the right, I let Adobe Lightroom select a white balance, which looks pretty correct.)</p>
<p>I work in a digital humanities center in a library, so I know all about lossless image formats and why archives use them. I also really like the control raw gives me. But, for the most part, I won&#8217;t be shooting in raw for the foreseeable future, for the following reasons:</p>
<p>1: It&#8217;s slow. Using raw adds a lot of time to the process. Downloading, processing, everything takes a little longer. That might be because my two year old computer is somewhat old in computer years, but I&#8217;m not ready to buy something newer and faster yet.</p>
<p>2: I don&#8217;t actually want to spend a lot of time fiddling with my images on the computer. I spend all day at work on the computer, so I&#8217;m always looking for ways to minimise my screen time at home. What started this whole process was that I wanted to figure out to make images closer to perfect in the camera, so shooting raw so I have a safety net kind of takes away from that.</p>
<p>3: They take up a lot of room. A jpeg right out of the camera is 5 mp compared to 25 megs for raw. I know space is cheap, but I already have 115 GB of images and have a hard time getting everything stored and backed up. If space is an issue and you like shooting in raw and fiddling with images, you can always save to jpeg and only save the raw images that are really spectacular.</p>
<p>4: The software costs more. At least with canon, I don&#8217;t really like the software that comes with the camera, and lightroom, aperture, etc cost a lot. (I&#8217;m using a 30 day free trial of aperture right now.) I also find the software clunky after years of using picasa but again, slow computer. My older version of photoshop won&#8217;t even open my camera&#8217;s native raw photos (yes, even with the latest plugin.) This kind of incompatibility makes me wonder if I&#8217;d be able to open these photos in the future, as well.</p>
<p>5: Honestly, I just can&#8217;t tell the difference. I compare this to the fact that I can&#8217;t tell the difference between FLAC and MP3&#8242;s. I&#8217;m just not very discerning, I guess. I&#8217;ve printed jpegs out at 13&#215;19, I&#8217;ve imported jpegs into photoshop&#8217;s raw editing program, I&#8217;ve made repeated changes, and only when zooming waaaay in on my screen do I see a difference. With 18mp pictures, you would have to print or view a picture very large to see the degradation, and given that I&#8217;m a) not a professional and b) still learning, I don&#8217;t think I will have any shots that really necessitate that.</p>
<p>I still might shoot in raw when I&#8217;m experimenting, need a really wide dynamic range, or shooting something really important, but chances are for now I&#8217;ll just save them right out to jpeg once I&#8217;m done processing and delete the raw images.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/10/to-shoot-raw-or-not-to-shoot-raw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital photography and white balance</title>
		<link>http://nirak.net/2012/10/digital-photography-and-white-balance/</link>
		<comments>http://nirak.net/2012/10/digital-photography-and-white-balance/#comments</comments>
		<pubDate>Fri, 26 Oct 2012 01:40:50 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=758</guid>
		<description><![CDATA[It all started with simply wanting to take better photos. I bought a Canon t3i this year, and have been using it fairly frequently, but still felt I was fumbling with the controls more often than not. I&#8217;m not a &#8230; <a href="http://nirak.net/2012/10/digital-photography-and-white-balance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>It all started with simply wanting to take better photos. I bought a Canon t3i this year, and have been using it fairly frequently, but still felt I was fumbling with the controls more often than not. I&#8217;m not a photography newbie; I have been taking pictures with a film SLR camera since high school, and have taken half a dozen photography courses all told. But all the courses I took were in film photography, and there was something fundamental I wasn&#8217;t getting in digital.</p>
<p>I was also driven by the desire to spend less time on the computer fixing things I should have gotten right when taking the picture. I may have been a little naive.</p>
<p>This will hopefully be a series of blog posts about what I have learned about digital photo making.</p>
<h3>So, first up: White balance!</h3>
<p>In film photography, white balance as such wasn&#8217;t such a big deal. You picked a film for a type of light, and then you might use a slightly warm or cool filter if the light you were shooting under didn&#8217;t match the type of film. In general, the mismatch is one of the things that gives film it&#8217;s &#8220;look.&#8221; The instagram app has a <a href="http://blog.1000memories.com/97-old-school-instagram-filters-using-vintage-cameras-and-film">bunch of filters</a> you can apply that are meant to mimic different camera and film pairings, and usually one of the most noticeable changes is the photo will get warmer or cooler.</p>
<p>I knew the basics of white balance when I started: where &#8220;daylight&#8221; was on the continuum, what was considered warm, what was considered cool. I knew the basics of color theory from art school. My first idea was I would start using the auto white balance feature of my camera for aesthetically pleasing effects. But how did it work? What was changing when I set the white balance?</p>
<p>My first little experiment was to take a few pictures of my garden with the reddish cedar mulch as the &#8220;white balance.&#8221;</p>
<p><a title="White balance tests by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8063714700/"><img src="http://farm9.staticflickr.com/8309/8063714700_193872288a_z.jpg" alt="White balance tests" width="640" height="427" /></a></p>
<p>I liked the result, so I took some more test pictures. I then hit upon the idea to make some ready made cards so I could set a custom white balance of my choice &#8211; making images look warm or cool even when the light wasn&#8217;t obliging. (This concept isn&#8217;t new, as I found out when I searched and hit upon <a href="http://www.warmcards.com/WC1.html">warm cards</a>, meant for digital filmmaking.)</p>
<p>So, I (badly) painted up some cards with different colors, and used them to set the white balance on a still life. At this point, I was wishing I had one of those fancy cameras that let me set the white balance by Kelvin number. (I found out later I can download a firmware called <a href="http://www.magiclantern.fm/">Magic Lantern</a> to do this, but I have not been brave enough to try it on my camera yet.)</p>
<p><a title="Custom White balance tests by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123290542/"><img src="http://farm9.staticflickr.com/8188/8123290542_777c3e723c_z.jpg" alt="Custom White balance tests" width="640" height="453" /></a></p>
<p>Then, I arranged all the resulting pictures by kelvin number, thinking I would get a nice gradient:</p>
<p><a title="Custom White balance tests by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123289926/"><img src="http://farm9.staticflickr.com/8196/8123289926_a751cbf580_z.jpg" alt="Custom White balance tests" width="640" height="602" /></a></p>
<p>I was surprised when some of the pictures with the same kelvin numbers were completely different:</p>
<p><a title="Custom White balance tests by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/8123274253/"><img src="http://farm9.staticflickr.com/8193/8123274253_46fc042c52_z.jpg" alt="Custom White balance tests" width="640" height="212" /></a></p>
<p>This is because the camera sets the tint as well as the temp, and there doesn&#8217;t seem to be any way to change this. A little research led me to <a href="http://www.ianplant.com/photo-tips-how-to-white-balance.htm">this page</a> where I learned that the temperature is a blue/yellow setting and the tint is a green/magenta setting. I can alter the tint in camera by using the <a href="http://jonathanfleming.wordpress.com/tag/white-balance-shift/">white balance shift</a> setting, but that just shifts it from where the camera decides it should be. So, my dreams of getting reproducible results based on setting the kelvin number were somewhat dashed.</p>
<p>At this point, I also started to wonder about the different types of light on my pictures. The above pictures were taken with some cheap &#8220;daylight&#8221; bulbs, but the effect wasn&#8217;t really all that close to any daylight I&#8217;d ever experienced. That research is for another post, though, as I&#8217;m waiting for some supplies to come in for my experiments.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/10/digital-photography-and-white-balance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW notes, Tech sessions</title>
		<link>http://nirak.net/2012/05/sxsw-notes-tech-sessions/</link>
		<comments>http://nirak.net/2012/05/sxsw-notes-tech-sessions/#comments</comments>
		<pubDate>Thu, 03 May 2012 21:45:01 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=751</guid>
		<description><![CDATA[Sorry about the long break in my SXSW notes recap. Time sort of got away from me there. I didn’t go to as many tech meetings this year as last, which was good and bad. I’m glad I got to &#8230; <a href="http://nirak.net/2012/05/sxsw-notes-tech-sessions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Sorry about the long break in my SXSW notes recap. Time sort of got away from me there.</p>
<p>I didn’t go to as many tech meetings this year as last, which was good and bad. I’m glad I got to go to a variety of sessions, but the few tech sessions I attended left me wanting more. This may point out that I need to go to a more tech heavy conference sometime in the future.</p>
<h3 id="thestateofbrowserdevelopertoolshttp:schedule.sxsw.com2012eventsevent_iap11956"><a href="http://schedule.sxsw.com/2012/events/event_IAP11956">The State of Browser Developer Tools</a></h3>
<h4 id="brandonsatromgarannmeansjoestagnermiketaylorpaulirish">Brandon Satrom, Garann Means, Joe Stagner, Mike Taylor, Paul Irish</h4>
<p>The gist of this session was: browser developer tools have come a long way in a short while, and it is worth checking out what each browser has to offer.</p>
<p><strong>Chrome</strong>: Offers a new color picker, and some subtle but nice UI changes that makes the dev tools much more useful. You can also save the CSS out to a new file. Both Firefox and chrome have very nice CSS tools in this regard, and if they come just a bit further (some auto completion, better color coding) they could make it so I don’t need to find a replacement for my long in the tooth and no longer made CSS Edit 2.</p>
<p><strong>Chrome for android</strong>: Plug in via USB, run the dev tools from the device.</p>
<p><strong>Firefox</strong>: When viewing a page, go to Tools -&gt; Web Developer (different from the web developer toolbar) -&gt; Inspect and then click on “3D” in the bottom right. It’s called “Tilt” and it made the room collectively gasp.</p>
<p><a title="Screen shot 2012-04-20 at 4.08.59 PM by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/6994025904/"><img src="http://farm8.staticflickr.com/7246/6994025904_2a2f808737_z.jpg" alt="Screen shot 2012-04-20 at 4.08.59 PM" width="640" height="280" /></a></p>
<p><strong>Opera</strong>: Offers remote device debugging and great emulators.</p>
<p><strong>IE 9 &amp; 10</strong>: let you emulate older versions of IE. (I have found this to be a tad off- I’ll use the IE7 emulator and then view the page in IE7 and they’ll be different- but it is pretty close.)</p>
<p><strong>What’s coming:</strong></p>
<p>Adobe Shadow: Multi device checking (Here now, will get better)</p>
<p>Usability for styles. HTML tidy-like features.</p>
<h3 id="cssforgrownups:maturingbestpracticeshttp:schedule.sxsw.com2012eventsevent_iap9410"><a href="http://schedule.sxsw.com/2012/events/event_IAP9410">CSS for Grown Ups: Maturing Best Practices</a></h3>
<h4 id="andyhume">Andy Hume</h4>
<p>Web standards can become an obsession. We get ridiculous code to keep content and session separate, but managing complexity is important too. Complexity raises the barrier to entry.</p>
<p>We need to optimize for change. Most of all, we need to let go of the idea that we will write HTML which we will never touch again, and do everything on the CSS side. We will ALWAYS have to revamp the HTML along with the CSS.</p>
<p>Bullet points:</p>
<ul>
<li>Check out stuff like: <a href="http://oocss.org/">OOCSS</a>, <a href="http://smacss.com/">SMACSS</a>, <a href="http://csslint.net/">CSS Lint</a> &#8211; advocating a new set of best practices.</li>
<li>Should have layers of CSS: Layout styles &#8211; Module styles &#8211; base styles on top of the HTML</li>
<li>Come up with classes that describe the presentation. headline, subheadline, byline, etc.</li>
<li>The important thing is to do <em>what is best for your local situation</em>, and not to hold to outdated dogma for the sake of dogma. You have to strike a balance between performance, maintainability, and readability.</li>
<li>Use presentational class names and surgical layout helpers.</li>
<li>Document your code in code, NOT a <a href="http://www.bbc.co.uk/gel">PDF</a>! <a href="http://twitter.github.com/bootstrap/scaffolding.html">Twitter bootstrap</a> is a good example of this.</li>
<li>Write a complete style guide. Use it consistently for your organization. Include interaction.</li>
<li>Think in terms of modules, not pages. Have a style module library.</li>
</ul>
<h3 id="creatingresponsivehtml5touchinterfaceshttp:schedule.sxsw.com2012eventsevent_iap11462"><a href="http://schedule.sxsw.com/2012/events/event_IAP11462">Creating Responsive HTML5 Touch Interfaces</a></h3>
<h4 id="stephenwoods">Stephen Woods</h4>
<p>Switching to thinking about devices rather than interfaces is hard. Interfaces should feel good in addition to looking good.</p>
<p>Some advice:</p>
<ul>
<li>Prioritize user feedback.</li>
<li>Use hardware acceleration</li>
<li>manage memory &#8211; devices are always low on memory</li>
<li>Do not load during gestures &#8211; hold it till the end</li>
<li>Treat the DOM as write only, do your own math. “If you just do the math, you’ll be happier in the long run.”</li>
<li>Use matrix transforms.</li>
<li>Use CSS transitions. Use transitions with easing to snap back, good enough in most cases.</li>
<li>Feature detect and add as devices support. Disable things per user agent.</li>
<li>Simulators and emulators are basically useless.</li>
<li>Div’s with background images load quicker than embedded images. It’s not semantically correct, but it’s OK.</li>
</ul>
<p>Frustrating limitations:</p>
<ul>
<li>The retina screen is huge, device memory is small</li>
<li>Hardware acceleration is a crash festival.</li>
<li>You are always finding devices that want to “optimize” your carefully designed sites.</li>
</ul>
<h3 id="therighttoolforthejob:nativeormobilewebhttp:schedule.sxsw.com2012eventsevent_iap10838"><a href="http://schedule.sxsw.com/2012/events/event_IAP10838">The Right Tool for the Job: Native or Mobile Web?</a></h3>
<h4 id="buzzandersenjacobbijanimajdtabymatthewdelaneytomdale">Buzz Andersen, Jacob Bijani, Majd Taby, Matthew Delaney, Tom Dale</h4>
<p><strong>Software, a brief history:</strong> Web browsers ushered in a dramatic abstraction in computing. “The web browser is one of humanities’ greatest achievements.” Javascript is the word’s most popular programming language.</p>
<p><strong>The age of apps:</strong> A return to the native, device centric programming we had before. For the first time since netscape, native dev is leading the way. Foursquare/square/instagram -&gt; native first!</p>
<p><strong>Native Cons:</strong></p>
<ul>
<li>Networking</li>
<li>Linking/ cross platform distribution</li>
<li>Rich text &#8211; browsers handle it much better</li>
<li>Layout</li>
<li>Caching</li>
<li>Fast is difficult</li>
<li>You lose all the “free stuff” you get with browser abstraction</li>
<li>When dealing with ios, have to deal with apple: “Apple has started asking ‘What’s better for apple’ instead of ‘what’s better for the user.’”</li>
<li>Multi device is hard</li>
<li>App stores are horrible places to actually find anything</li>
</ul>
<p><strong>Native Pros:</strong></p>
<ul>
<li>More direct influence</li>
<li>More primitives are available to you</li>
<li>Monetization (maybe)</li>
<li>Access to hardware &#8211; may be necessary, depending on app</li>
<li>Faster when done right</li>
<li>Good Documentation (sometimes)</li>
</ul>
<p><strong>Stuff to keep in mind</strong></p>
<ul>
<li>Got to <a href="http://rng.io/">rng.io</a> to see your devices capabilities.</li>
<li>Check out the <a href="http://www.ft.com/home/uk">Financial Times</a> (on your device) for a web HTML5 app that does it right. (Or switch user agent to fake it)</li>
<li>If you build a hybrid native/mobile app, you have to work extra hard to make sure they stay in sync/don’t contradict each other</li>
<li>Avoid creating an app just so you can say “we have an iPhone app!”</li>
<li>Avoid “The uncanny valley of web apps” &#8211; don’t try to emulate the native look on mobile apps. Emulating native UI is a moving target and rarely worth it.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/05/sxsw-notes-tech-sessions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creative Commons Intro Presentation Notes</title>
		<link>http://nirak.net/2012/04/creative-commons-intro-presentation-notes/</link>
		<comments>http://nirak.net/2012/04/creative-commons-intro-presentation-notes/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 03:07:37 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=733</guid>
		<description><![CDATA[Some notes for a presentation on Creative Commons I am giving 8/11/2012: Creative Commons Introduction View more presentations from karindalziel. In the US, when someone creates something in fixed form it is copyrighted. You don’t have to apply for a &#8230; <a href="http://nirak.net/2012/04/creative-commons-intro-presentation-notes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Some notes for a presentation on Creative Commons I am giving 8/11/2012:</p>
<div style="width:425px" id="__ss_12494865"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/karindalziel/creative-commons-introduction-12494865" title="Creative Commons Introduction">Creative Commons Introduction</a></strong><object id="__sse12494865" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=ccpresentationnovideo-120410223112-phpapp02&#038;stripped_title=creative-commons-introduction-12494865&#038;userName=karindalziel" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><param name="wmode" value="transparent"/><embed name="__sse12494865" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=ccpresentationnovideo-120410223112-phpapp02&#038;stripped_title=creative-commons-introduction-12494865&#038;userName=karindalziel" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" width="425" height="355"></embed></object>
<div style="padding:5px 0 12px">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/karindalziel">karindalziel</a>.</div>
</div>
<p>In the US, when someone creates something in fixed form it is copyrighted. You don’t have to apply for a copyright or add the copyright symbol. So pretty much anything you see that anyone has created is copyrighted. This can make it hard to find things to use for educational purposes &#8211; as we are often on low to no budgets.</p>
<p>Fair use is one way to use things, and a good one, but it can be complicated and still risks getting slapped with a cease and desist order. Creative Commons is another way.</p>
<h2 id="whatiscreativecommons">What is Creative Commons?</h2>
<p>Creative Commons is a way for people to license their work for use that is in between full copyright (which is completely restricted) and public domain (where anyone can use the work for anything with no limitations.)</p>
<p>Owning the copyright gives you full right to display, perform, or duplicate a work in any form, or to grant others those rights. Creative Commons gives the owner of the copyright a way to preemptively transfer some of those rights to others, while maintaining full copyright for themselves.</p>
<p>There are several options when it comes to Creative Commons:</p>
<h4 id="attribution">Attribution</h4>
<p>“This license lets others distribute, remix, tweak, and build upon your work, even commercially, as long as they credit you for the original creation.”</p>
<p>Attribution is found in all the <a href="http://creativecommons.org/licenses/">Creative Commons licenses</a>.</p>
<h4 id="sharealike">ShareAlike</h4>
<p>“This license lets others remix, tweak, and build upon your work even for commercial purposes, as long as they credit you and license their new creations under the identical terms.”</p>
<h4 id="noderivatives">No Derivatives</h4>
<p>“This license allows for redistribution, commercial and non-commercial, as long as it is passed along unchanged and in whole, with credit to you.”</p>
<h4 id="noncommercial">Non Commercial</h4>
<p>“This license lets others remix, tweak, and build upon your work non-commercially.”</p>
<h3 id="thelicenses"><a href="http://creativecommons.org/licenses/">The licenses</a></h3>
<p>By mixing the options mentions, you get these licenses, from the most lenient, attribution, to the most strict, Attribution-NonCommercial-NoDerivitives.</p>
<h3 id="whataboutpublicdomain">What about <a href="http://creativecommons.org/publicdomain/">Public Domain</a>?</h3>
<p>You can also assign your work to the public domain on the creative commons website, which means you relinquish all claim of copyright to it. This is called CC0.</p>
<h3 id="canitakeitback">Can I take it back?</h3>
<p>Creative commons licenses are irrevocable. You may later take the work down if hosted on the web, but anyone who has already downloaded it has the rights you granted them.</p>
<h2 id="whycreativecommons">Why Creative Commons?</h2>
<p>Copyright is now set at life of the creator plus 70 years, which means we will never see most things created today come into the public domain. Creative Commons gives an option to creators to share their work before that time, and for users to find, use, and remix more recent work.</p>
<p>Fair use can be a little hard to interpret and apply, and you could always run into a situation where you and the creator of the work don’t agree on what’s “fair” and end up in court. Creative Commons is a bit more straightforward, provided you follow the rules of the license.</p>
<p>Creative Commons is also useful for work that might get redistributed outside an educational setting. As long as you are careful about what license you pick, you can go ahead and reuse that presentation image in a book, without having to renegotiate rights or rethink fair use because the use is now commercial (Assuming you stick to licenses that allow commercial use.)</p>
<p>Creative Commons is also a great way to teach about copyright &#8211; by looking over each license and understanding what one is giving away, one can more fully understand the reach of copyright. Creative Commons is a great way to work multimedia in the classroom without having to skirt around the copyright issue or have students produce material they won’t be able to use later.</p>
<h2 id="howtouseit">How to use it?</h2>
<p>To find creative commons media, just head to <a href="http://search.creativecommons.org/">http://search.creativecommons.org/</a> and search. This will give you several options to get started.</p>
<p>Many other sites incorporate creative commons into their search as well:</p>
<ul>
<li><a href="http://compfight.com/">Comp Fight</a>, a flickr search engine, lets you search hundreds of Creative Commons Licensed images in seconds.</li>
<li><a href="http://vimeo.com">Vimeo</a> just introduced a creative commons licensing scheme and search for their redesigned website.</li>
<li><a href="http://ccmixter.org/">CC Mixter</a> is a great place to find Creative Commons licensed music.</li>
<li>You can find a pretty extensive list on <a href="http://wiki.creativecommons.org/Content_Directories">The Creative Commons Wiki</a>.</li>
<li>Google’s <a href="http://www.google.com/advanced_search">advanced search</a> lets you search Creative Commons licensed content in addition to public domain content.</li>
</ul>
<p>After you have found the media, you just have to follow the license terms. So if the work is No Derivatives, you can’t chop it up and make something new out of it. If you stuck to an attribution only license, all you have to do is slap a URL or name on there (Some people tell you how they want to be cited on the photo page or their profile page &#8211; if not, a URL is usually sufficient.)</p>
<h2 id="huh">Huh?</h2>
<p>Here are some examples of how I have used creative commons work at work and home.</p>
<h3 id="video">Video</h3>
<p>Having soundtracks for videos are nice, but it’s a big no no to use a copyrighted work. Luckily, you can find lots of free music. I backed <a href="https://vimeo.com/318514">this video</a> with <a href="http://ccmixter.org/media/files/oldDog/11739">a track from CC Mixter</a>.</p>
<h3 id="presentations">Presentations</h3>
<p>Creative Commons photos are great for illustrating points in presentations. When you are giving the presentation it may not seem too important, after all, you are just going to give the presentation to a set group of people one time. But by using creative commons photos, you can reuse your presentation in different contexts, or you could post your slides online.</p>
<p>Pictures are way more fun to look at than words.</p>
<h3 id="websiteillustrations">Website Illustrations</h3>
<p>For our <a href="http://cdrh.unl.edu/quills">Quills and Feathers website</a>, we needed some pictures and sounds of birds. Luckily, there <a href="http://www.flickr.com/">are</a> <a href="http://www.xeno-canto.org/">websites</a> that could provide both.</p>
<h2 id="licenseyourownstuff">License your own stuff!</h2>
<p>The <a href="http://cdrh.unl.edu">CDRH</a> has used Creative Commons licenses on at least three of our websites: <a href="http://www.whitmanarchive.org/">The Whitman Archive</a>, <a href="http://www.codyarchive.org/">The William F. Cody Archive</a>, and <a href="http://civilwardc.org/">Civil War Washington</a>. This license covers the content we created (the essays and such), but not always the content, as much of that is already public domain, or is owned by other institutions. We make sure to note when the content is from somewhere else. We license our content as Creative Commons because the public helped fund the resources</p>
<p>As for myself, I try to license much of what I do under creative commons. I scan my <a href="http://www.flickr.com/photos/nirak/sets/72157629319466684/">artwork</a> at high resolutions and put it on Flickr Under a CC By: license, I license <a href="https://vimeo.com/user163246">my videos</a> under Creative commons on Vimeo and allow downloading.</p>
<p>Two of my most popular Creative Commons licensed images are: a <a href="http://www.flickr.com/photos/nirak/6071515104/">picture of an empty podium</a> I created when I could not find a similar picture, and a <a href="http://www.flickr.com/photos/nirak/644335254/">picture of some clouds</a>, which is usually used for “cloud computing” articles.</p>
<p>I license my pictures as creative commons because I think it’s neat that people find and use my images for things. Besides illustrating blog posts, people have told me they’ve put my images in books, videos, used them in presentations, and used them for school projects.</p>
<h2 id="challenges">Challenges</h2>
<p>Finding Creative Commons material used to be my biggest challenge, but that isn’t very hard anymore. Pictures of almost anything are easy to find, and sound and video are increasingly easier to find as well.</p>
<p>I find the biggest problems now are keeping track of the licenses of all the creative commons work you have used, along with the contact information, URL’s, etc. I usually stick to including the web address where I found the work, because it’s easy and fairly straightforward. But I have come across images I know are creative commons and want to use again, but can’t find the source. As with a lot of things, good record keeping is essential. A page of credits at the end of works, a spreadsheet, however you need to track it.</p>
<p>I have not come across any significant challenges in licensing my own work. My images have been used a few times for blog posts I definitely do not agree with, but I can live with that. I have come across a few examples of people taking my images without attributing me, but that would happen with or without creative commons.</p>
<p>One final problem I have come across is the Share alike creative commons license may clash in certain educational contexts. See <a href="http://opencontent.org/blog/archives/347">Noncommercial Isn’t the Problem, ShareAlike Is</a> for more information.</p>
<p><script type="text/javascript">// <![CDATA[
  window.onload = function(){var div = document.getElementById('contentdiv'),oldscroll = 2288;div.scrollTop = oldscroll;}
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/04/creative-commons-intro-presentation-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW notes, Design sessions (+ebooks)</title>
		<link>http://nirak.net/2012/03/sxsw-notes-design-sessions-ebooks/</link>
		<comments>http://nirak.net/2012/03/sxsw-notes-design-sessions-ebooks/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 14:11:21 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Web Design and Development]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=724</guid>
		<description><![CDATA[The design sessions I went to were sort of all over the place. What they have in common is that they made me think about my design process, and to think about how things work in the greater community of &#8230; <a href="http://nirak.net/2012/03/sxsw-notes-design-sessions-ebooks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The design sessions I went to were sort of all over the place. What they have in common is that they made me think about my design process, and to think about how things work in the greater community of web design.</p>
<p>The design sessions, along with the tech sessions, energized me as to the possibilities of design and made me excited to try new things in this area.</p>
<h3 id="designfromthegut:dangerousordifferentiatorhttp:schedule.sxsw.com2012eventsevent_iap11592"><a href="http://schedule.sxsw.com/2012/events/event_IAP11592">Design from the Gut: Dangerous or Differentiator?</a></h3>
<h4 id="janeleibrocklaurelhechanovanazhamidphilcoffmanwilliamcouch">Jane Leibrock, Laurel Hechanova, Naz Hamid, Phil Coffman, William Couch</h4>
<p>The bulk of this session was summed up in the very first question tweet that came in:</p>
<p>“Is “intuition” in fact a result of accumulated life experience, which is essentially both intentional and unintentional research?” -<a href="https://twitter.com/#!/justinc/status/177137512119140352">@justinc</a></p>
<p>In short: yup.</p>
<p>It was interesting hearing that designers at big startups with a lot of money still do a lot of gut designing. It would have been interesting to get someone from, say, Google on the panel, since they are known for testing every choice rather than doing much “gut” designing. I think this is changing, though, as Google Plus launched with some features that don’t seem so obsessively tested as many Google products (like the drag and drop circle organization.)</p>
<p>From the session:</p>
<ul>
<li>“gut” is a weird term. An experienced designer’s gut is different, and going to make different (presumably better) decisions than a newbie.</li>
<li>You could also call this experienced based design.</li>
<li>While usability testing is great, it is not always economically feasible. A support network is invaluable.</li>
<li>Networks are great, but “don’t get feedback from the choir.” Find people outside your usual circle, outside your company.</li>
<li>The client doesn’t really care about research or gut designing &#8211; you have to make the best decisions and then sell your design, whatever way you do it.</li>
</ul>
<h3 id="gettinggood:practicaltipsfornewdesignershttp:schedule.sxsw.com2012eventsevent_iap11077"><a href="http://schedule.sxsw.com/2012/events/event_IAP11077">Getting Good: Practical Tips for New Designers</a></h3>
<h4 id="allisonwagneryeseniaperez-cruz">Allison Wagner, Yesenia Perez-Cruz</h4>
<p>The advice:</p>
<ul>
<li>Write it down</li>
<li>Keep inspirations
<ul>
<li>Use a tagging system. Pinterest can be good for this, or any system that can tag/organize pictures into albums (like Picasa desktop).</li>
<li>Diversify your inspiration. Find things everywhere, record it.</li>
</ul>
</li>
<li>Streamline your workflow
<ul>
<li>Use text expansion, keyboard shortcuts</li>
<li>Be efficient</li>
<li>Streamline with apps &#8211; find ones that work well with each other, your OS, and your process.</li>
<li>Check out <a href="http://usesthis.com/">The Setup</a> to see what other professionals use.</li>
<li>I didn’t hear this mentioned in the session, but I think it is important to walk a line between streamlining your process and actually working on things. It is easy to get stuck in a loop where all you are doing is consuming productivity porn and not doing any actual work. Also: It is worth paying for good tools that will save you time.</li>
</ul>
</li>
<li>Be aware of the <a href="http://writerunderground.com/2011/04/28/ira-glass-on-creativity-or-the-gap-between-our-taste-and-our-work/">creative gap</a>. “For the first couple years you make stuff, and it’s just not that good. It’s trying to be good, it has potential, but it’s not. … But your taste, the thing that got you into the game, is still killer. And your taste is why your work disappoints you.” -Ira Glass
<ul>
<li>Keep the stuff you make so you can track your improvement.</li>
<li>Or delete and focus on the future.</li>
<li>Sometimes stuff isn’t as good as you would like: you’re just not there yet in terms of skill, you have to make compromises due to client demand. You don’t have to put this stuff in your portfolio, just finish it and move on.</li>
</ul>
</li>
<li>Work rough in the beginning.</li>
<li>Ask for feedback
<ul>
<li>Find people who will give honest feedback, and foster it in your organization.</li>
<li>I think it is important to let people know your feelings won’t be hurt if they don’t like something. This seems to be a design specific problem, people just don’t like giving honest feedback on design.</li>
</ul>
</li>
<li>Use <a href="http://badassideas.com/style-tiles-as-a-web-design-process-tool/">style tiles</a> to present design elements separate from the structure, especially in web/interactive design. This can be a way to get feedback from reluctant clients.</li>
<li>Find the time and motivation to keep learning.
<ul>
<li>Techniques like <a href="http://en.wikipedia.org/wiki/Timeboxing">timeboxing</a> may help.</li>
<li>Find resources to help your keep up on tech, such as <a href="http://teamtreehouse.com/?cid=181">Think Vitamin’s Treehouse</a>.</li>
<li>Teach your skills to someone else, it helps you internalize.</li>
<li>Find places with good articles, or follow trusted content aggregators.</li>
<li>View source!</li>
<li>Partner with someone and give each other assignments</li>
</ul>
</li>
</ul>
<h3 id="makingebookssmarter:responsivepagedesignhttp:schedule.sxsw.com2012eventsevent_iap9737"><a href="http://schedule.sxsw.com/2012/events/event_IAP9737">Making eBooks Smarter: Responsive Page Design</a></h3>
<h4 id="petermeyers">Peter Meyers</h4>
<p>Like the above, this session was a “core conversation,” Which means the presenters acted as moderators to spark discussion and gather advice from the audience. The moderator was especially good, and the discussion was energetic and inspiring. I classified this session under design because of the thoughts it inspired in me: we work with a lot of book like content at work (including many actual books) and this session made me think of ways to present that content in new ways. I hope to start a project or two soon that will make use of these ideas.</p>
<p>The moderator, Peter Meyers, started off with three scenarios to think about &#8211; I think of them as <a href="http://en.wikipedia.org/wiki/Persona_(marketing)">personas</a>:</p>
<ol>
<li>User is reading <em>The Great Gatsby</em> and wants to go back to where Daisy’s character is first introduced. Not where she was first mentioned, but where she is first described.</li>
<li>User wants to browse the book <em><a href="http://www.amazon.com/Power-Habit-What-Life-Business/dp/1400069289">The Power of Habit</a></em> in a half hour.</li>
<li>User has a travel book on Brazil, but is not going during Carnival, so doesn’t need that part.</li>
</ol>
<p>Paper books don’t handle these things well, but right now ebooks are only marginally better. If we can solve these problems, the digital book becomes more valuable than the paper book.</p>
<p>Ways to make ebooks better:</p>
<p><strong>Comprehension:</strong> Help the user, include dictionaries, but go beyond. There may be some things specific to a book not available in a generic dictionary.</p>
<p><strong>Memory:</strong> Help the user answer the question “Who is Edith?” Especially useful when a work is not consumed all at once.</p>
<p><strong>Interpretation:</strong> Some users might need help with interpretation. Cliff notes were designed, at least in part, with comprehension in mind. Example: Bret Victor’s design for Al Gore’s <em><a href="http://pushpoppress.com/ourchoice/">Our Choice</a></em> ebook. Examples could be interacted with, values changed, which helped interpretation. Also see Bret Victor’s website, <a href="http://worrydream.com/">worrydream.org</a>.</p>
<p><strong>Time constraints:</strong> (mostly for non-fiction) Could we have accordion like content, small, medium and large versions for the user dependent on time and interest?</p>
<p><strong>Relevance:</strong> (mostly for non-fiction) Example: <em><a href="http://itunes.apple.com/us/app/how-to-cook-everything/id409936319?mt=8">How to Cook Everything</a></em> app, could the user constrain entries to only options that reflect what they have in the cupboard, or exclude certain ingredients?</p>
<p><strong>Discovery:</strong> How to help users discover new media and new things about the media they are using? This is where the social element could come in.</p>
<p>At his point, Peter opened up the discussion to the group at large.</p>
<p>We talked about social integration in ebooks and imagined how it might be integrated into a book. There was no consensus, but some of the ideas were to include existing networks as the basis, to include emotional annotation, to change the “lens” the social content the content could be seen through depending on the type of user. Examples included:</p>
<ul>
<li><em><a href="http://itunes.apple.com/us/app/wreck-this-app/id447588825?mt=8">Wreck This Book</a></em> app &#8211; the app becomes a personal object, no longer only by the author. Social in this case means including the reader as well as the author.</li>
<li><em><a href="http://itunes.apple.com/us/app/bold-how-to-be-brave-in-business/id417027127?mt=8&amp;ls=1">BOLD &#8211; how to be brave in business and win</a></em> ipad app &#8211; the user answers a quiz, and the book adjusts itself.</li>
</ul>
<p>Managing user content continues to be a problem. Adding a social layer could help by only showing content by trusted sources, or giving preference to that content. Moderation will still probably be needed for public content, which can slow down this implementation with orgs (like us!) that don’t have a person to handle ongoing moderation. In the end, the best way to handle might be to allow others to have conversations elsewhere, which is enabled by linking. (More on that when I type up my tech notes).</p>
<p>Extra content should have a way to toggle off, so as not to distract the reader. Ebooks are different from the web, and it is important to keep a pure reading experience. One way to do this is to layer content, and make the layers toggle. Epub3 with HTML5 should introduce lots of exciting opportunities to do this.</p>
<p>Examples of enhanced content ebooks:</p>
<ul>
<li><em><a href="http://mashable.com/2010/04/13/alice-in-wonderland-ipad/">Alice in wonderland</a></em></li>
<li><em><a href="http://www.theonering.net/torwp/2011/12/02/50906-official-release-harpercollins-publishers-releases-enhanced-ebook-of-the-hobbit/">The Hobbit</a></em></li>
<li><a href="http://www.inkling.com/">Inkling textbooks</a>- include things like quizzes to test comprehension.
<ul>
<li>Note: When I looked this up later, I was excited to see the ebook <em><a href="https://www.inkling.com/store/living-with-art-mark-getlein-9th/">Living with Art</a></em> until I saw the price &#8211; $100 for an ipad only ebook. I would <em>love</em> to have content like this for art, why is it always so expensive?</li>
</ul>
</li>
</ul>
<p>One of the questions was: how much extra content is too much? My feeling is that if the design is right, you can include an almost endless amount of extra content. The question, is, how many users will access all that extra content? Enhancements for ebooks is a small market, not many people are willing to pay extra. In a non profit sector, price isn’t an object, but spending lots of time on enhanced content only of interest to a few may not be the best use of always scant resources.</p>
<p>One more example:</p>
<ul>
<li><em><a href="http://pinepoint.nfb.ca/#/pinepoint">Welcome to Pine Point</a></em> &#8211; an interactive web book.</li>
</ul>
<p>This session left me most excited with the possibilities of providing free, downloadable ebooks of scholarly content. the question now is: how? and in what format? More on that when I write up my tech notes…</p>
<p><script type="text/javascript">// <![CDATA[
window.onload = function(){var div = document.getElementById('contentdiv'),oldscroll = 1977;div.scrollTop = oldscroll;}
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2012/03/sxsw-notes-design-sessions-ebooks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
