<?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 &#187; Conferences</title>
	<atom:link href="http://nirak.net/category/library/conferences/feed/" rel="self" type="application/rss+xml" />
	<link>http://nirak.net</link>
	<description>The web home of Karin Dalziel</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:14:04 +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 session notes: Web Anywhere</title>
		<link>http://nirak.net/2011/03/sxsw-session-notes-web-anywhere/</link>
		<comments>http://nirak.net/2011/03/sxsw-session-notes-web-anywhere/#comments</comments>
		<pubDate>Sun, 27 Mar 2011 12:19:55 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=637</guid>
		<description><![CDATA[Web Anywhere: Mobile Optimisation With HTML5, CSS3, JavaScript &#8211; Bruce Lawson Bruce Lawson was a great presenter, and is the author of Introducing HTML5 Much of the world is not using smart browsers, they are using browsers for their feature &#8230; <a href="http://nirak.net/2011/03/sxsw-session-notes-web-anywhere/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://schedule.sxsw.com/events/event_IAP7486">Web Anywhere: Mobile Optimisation With HTML5, CSS3, JavaScript</a> &#8211; Bruce Lawson</p>
<p>Bruce Lawson was a great presenter, and is the author of <a href="http://www.amazon.com/Introducing-HTML5-Voices-That-Matter/dp/0321687299">Introducing HTML5</a></p>
<p>Much of the world is not using smart browsers, they are using browsers for their feature phones. Opera mini is a popular browser on feature phones around the world.</p>
<p>Radically different places access the same information.</p>
<p>People say mobile users are task focused- this is half true. <strong>Everyone is task focused</strong>. You don&#8217;t need a separate mobile site, just consider your content.</p>
<h3>Three ways to handle mobile users:</h3>
<ol>
<li>Special mobile site
<ul>
<li>Almost always not the right way, but sometimes the quickest cheapest way.</li>
<li>You do not know what the user wants. If you do provide a separate mobile site, provide a way to get out!</li>
<li>No browser sniffing! &#8211; you can&#8217;t detect everything, browsers can lie.</li>
</ul>
</li>
<li>Do nothing, serve up the same  site to mobile and desktop
<ul>
<li>Use web standards</li>
<li>You can use new javascript methods, touchstart, touchmove, listen to touch events in addition to click.</li>
<li>CSS3/ graceful degradation</li>
<li>HTML5 &#8211; useful for webapps</li>
<li>Canvas/SVG &#8211; consider carefully, use SVG when possible. Canvas obscures information, SVG is more accessible. Don&#8217;t use canvas for UI elements. SVG can keep a DOM, so you can query/undo if necessary.</li>
<li>Geolocation &#8211; use for progressive enhancement, you won&#8217;t always have it available</li>
<li>HTML5 forms &#8211; &lt; input type=&#8221;email&#8221; &gt; other types, url, tel. These will give a different keyboard for input on the iphone, and they gracefully degrade.</li>
<li>Offline support &#8211; detect state, save the day by using local/session storage. Way easier than storing in cookies.</li>
<li>Web socket communication &#8211; sending information this way saves battery life</li>
</ul>
</li>
<li>Optimise for Mobile
<ul>
<li>CSS Media queries &#8211; making sites that respond. &#8220;Can you do this?&#8221; &#8220;What&#8217;s your DPI?&#8221; &#8220;Landscape or portrait?&#8221; Responsive web development. See <a href="http://mediaqueri.es/">mediaqueri.es</a>.</li>
<li>If you are using media queries, set the viewport.</li>
<li>Content should take center stage!</li>
<li>Give dimensions of images in HTMl. This makes sure the content doesn&#8217;t move after the images are downloaded, which can be annoying &#8211; especially for mobile users, because the content they were reading may get pushed off the screen.</li>
<li>Consider &lt; a href=&#8221;tel:555.555.5555&#8243; &gt; because this will let phone users dial easily.</li>
<li>Make accessibility a priority. Follow <a href="http://www.w3.org/TR/mwbp-wcag/">accessibility guidelines.</a></li>
<li>Minimise HTTP requests. Combine CSS and javascript whenever possible. Use SVG or canvas for images if possible.</li>
<li>ems rather than pixels &#8211; pixels can fail on high resolution screens</li>
<li>fluid layouts</li>
<li>use CSS background-size property</li>
<li>turn off fancy backgrounds, shadows, etc. for mobile devices (using media queries)  &#8211; they require processing power and are battery killers</li>
<li>Occasional use of <a href="http://www.w3.org/TR/mwbp-wcag/">data URL&#8217;s</a> can be useful</li>
<li>Put javascript at the bottom of the page, or, if it must be in the head, put it after CSS so you don&#8217;t get a page flash</li>
<li>Use feature detection js like <a href="http://www.modernizr.com/">Modernizr</a></li>
</ul>
</li>
</ol>
<h3>No web apps! laziness is wise</h3>
<p><a href="http://www.w3.org/TR/widgets/">Widgets</a> &#8211; zip file containing web standard goodness &#8211; uses the browser platform.  Gives you a downloadable app, uses the browser widget engine, but has no chrome &#8211; installation through the start menu.</p>
<p>Of course, you can only get certain things through a native app. Access to the camera and mic, for instance. Soon, though, you will be able to do things comparable to what you can do with a native app &#8211; access things like: contacts, calendar, media, messaging, accelerometer. HTML5 &lt; device &gt; &#8211; access to camera and microphone in a specific device.</p>
<p>Lawson demonstrated an experimental app which detects where you are, your direction, and your speed, all in the browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2011/03/sxsw-session-notes-web-anywhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW session notes: Designing with the grid</title>
		<link>http://nirak.net/2011/03/sxsw-session-notes-designing-with-the-grid/</link>
		<comments>http://nirak.net/2011/03/sxsw-session-notes-designing-with-the-grid/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 11:16:42 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=633</guid>
		<description><![CDATA[Ordering Disorder: Grid Design for the New World &#8211; Khoi Vinh Grids make sense of the world. Paper size &#8211; A1-A6 paper size system, each smaller size is half of the last. The Grid = Harmony The grid helps the &#8230; <a href="http://nirak.net/2011/03/sxsw-session-notes-designing-with-the-grid/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://schedule.sxsw.com/events/event_IAP5576">Ordering Disorder: Grid Design for the New World</a> &#8211; Khoi Vinh</p>
<p>Grids make sense of the world. Paper size &#8211; A1-A6 paper size system, each smaller size is half of the last.</p>
<p><span class="fancytext">The Grid = Harmony</span></p>
<p>The grid helps the user predict where the new information they seek will be found.</p>
<p>The simpler the grid, the more effective it is.</p>
<h3>Steps in the design process:</h3>
<ul>
<li><strong>Research</strong>
<ul>
<li>Understand the constraints</li>
</ul>
</li>
<li><strong>Wireframes</strong> or another activity that helps you figure out functionality and build agreement on whet needs to be to be built.</li>
<li><strong>Preparatory design</strong> Sketches, calculations, page sketches
<ul>
<li>Sketch throughout the project.</li>
<li>Problem solving should come before the aesthetics.</li>
</ul>
</li>
<li><strong>Visual Design</strong></li>
<li><strong>Code</strong></li>
</ul>
<h3>On the golden rectangle</h3>
<p>It is sometimes useful to divide things by 1.618, but in practice Vinh has never seen someone use the golden rectangle extensively when designing a website. The <a href="http://en.wikipedia.org/wiki/Rule_of_thirds">rule of thirds</a> is more important.</p>
<h3>Constructing the grid</h3>
<ul>
<li>A viewport of 960&#215;650 is still a good size to shoot for. (This talk focused on a fixed grid).</li>
<li>Units in multiples of 8 are useful. People are most comfortable processing between 60 and 80 characters per line, so keep this in mind when laying out page.</li>
<li>The grid is about constraint, and adding constraint can help with design.</li>
<li>Use the grid to design a stream of information.</li>
</ul>
<p>Responsive web design is really good, but a little showy. What is really important is satisfying what the user expects. What they want is access and speed, usefulness, and <em>great content</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2011/03/sxsw-session-notes-designing-with-the-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW session Notes: You Don&#8217;t Have to Move, to Live Better</title>
		<link>http://nirak.net/2011/03/sxsw-session-notes-you-dont-have-to-move-to-live-better/</link>
		<comments>http://nirak.net/2011/03/sxsw-session-notes-you-dont-have-to-move-to-live-better/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 12:08:52 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=626</guid>
		<description><![CDATA[You Don&#8217;t Have to Move, to Live Better &#8211; Majora Cater This session was sadly under attended. Majora Carter is an inspirational and upbeat speaker, and well worth seeing. I talked to some people afterwards who had purchased the SXSW &#8230; <a href="http://nirak.net/2011/03/sxsw-session-notes-you-dont-have-to-move-to-live-better/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://schedule.sxsw.com/events/event_IAP000006">You Don&#8217;t Have to Move, to Live Better</a> &#8211; Majora Cater</p>
<p>This session was sadly under attended. Majora Carter is an inspirational and upbeat speaker, and well worth seeing. I talked to some people afterwards who had purchased the SXSW ticket and drove from Houston just to see her talk!</p>
<p>You can see a couple of <a href="http://www.ted.com/speakers/majora_carter.html">Majora Carter&#8217;s talks at TED.com</a>, including her widely viewed talk on &#8220;<a href="http://www.ted.com/talks/lang/eng/majora_carter_s_tale_of_urban_renewal.html">Greening the Ghetto</a>.&#8221;</p>
<h3>You don&#8217;t have to move out of your neighborhood to live in a better one</h3>
<p>The first part of the talk was bio information, read more at <a href="http://en.wikipedia.org/wiki/Majora_Carter">Majora Carter&#8217;s wikipedia page</a>.</p>
<p>Carter grew up and lived in the Bronx, freeways were built over thriving working class communities. <a href="http://en.wikipedia.org/wiki/Redlining">Red lining</a> &#8211; red lines were built around area code no one would invest in. Landlords found it more profitable to burn their buildings than improve. This created something like a war zone. Carter&#8217;s brother Lenny spent two tours in Vietnam only to be gunned down in a nearby neighborhood. New York decides to place a sewage treatment plant in the area which would process 60% of NY&#8217;s sewage. Wealthier and largely white neighborhoods pushing onto the poorer ones. Young people who live near fossil fuel emissions are impacted  &#8211; suffer learning disabilities. </p>
<p>The lower income neighborhood was targeted, because they had no political power or influence. </p>
<p>How do you create a more sustainable solid waste process?</p>
<p>What Majora has done</p>
<ul>
<li>Started the first green roof company run by a community organization
<ul>
<li>Working with plants reduces stress levels- plants require patience</li>
</ul>
</li>
<li>created the apparatus to create the kinds of jobs the community needed</li>
</ul>
<p>Created Home(town) Security</p>
<p>Homeland security is about fear. Home(town) security is not based on fear. </p>
<p>People want to see things happen in their own home towns. </p>
<p>People see development and all they see is gentrification. How will they afford the change? (Karin&#8217;s note &#8211; I think the difference here is whether the change comes from inside or outside &#8211; gentrification is led by outside developers, productive neighborhood development comes from community initiative and involvement.)</p>
<p>Several examples:</p>
<p>In syracuse, the mayor put in blue lights in the dangerous neighborhoods, but what does that feel like to the people who live there? This is the drama of local community development, and it will make good TV. </p>
<p><a href="http://www.treepeople.org/">Tree People</a>  &#8211; Andy Lipkus is unpaving paradise</p>
<p><a href="http://www.crmw.net/crmw/index.php">Coal Mountain Watch</a>  &#8211; <a href="http://www.crmw.net/crmw/content/remembering-judy-bonds">Judy Bonds</a> died of cancer from breathing in the toxicity after mountain top removal mining. Worked to turn these areas into wind farms.</p>
<p>I missed a couple of other examples.</p>
<p>Carter saying &#8220;I should be advising president obama&#8221; was met with applause.</p>
<p><span class="question"><em>Question:</em> (From AARP representative) &#8211; How can we get state offices to fund services which will help older americans stay in their homes &#8211; transportation, walkable neighborhoods, etc, instead of packing up and moving to florida?</span><br />
<span class="answer"><em>Answer:</em> The nice thing about older americans is they vote. Livable cities are the kind of thing which will keep people around.</span></p>
<p><span class="question"><em>Question:</em> Would grant writing workshops be useful?</span><br />
<span class="answer"><em>Answer:</em> Probably not. There are already community organizations, we don&#8217;t need more of them, we need to build up the ones that are there.</span></p>
<p><span class="question"><em>Question:</em> How to engage community? Would social media be effective?</span><br />
<span class="answer"><em>Answer:</em> This is one of the reasons to start with community based development, it is easier to build support around. Also, &#8220;feed them and they will come.&#8221;</span></p>
<p><span class="question"><em>Question:</em> (I missed this question!)</span><br />
<span class="answer"><em>Answer:</em> Work a bit by bit, pursue market based solutions. A lot of our tax money is used for social services. If we can turn expensive people receiving social benefits into working taxpayers, everyone wins. Most people want to work.</span></p>
<p><span class="question"><em>Question:</em> How to be involved locally when one can&#8217;t afford to live local? This is from someone who moved out to the suburbs because he didn&#8217;t feel safe raising his children where he lived.</span><br />
<span class="answer"><em>Answer:</em> Community Policing can be very useful. Working with the police to identify areas which could use more foot patrols. Job creation is key as well &#8211; sometimes people would rather have a job than sell weed.</span></p>
<p><span class="question"><em>Question:</em> How to address criticism that [community development] is not realistic or too idealistic?</span><br />
<span class="answer"><em>Answer:</em> Follow the money. They can&#8217;t argue with results. The world has enough pessimists. (karin&#8217;s note: And ignore them! Who cares what they say?) </span></p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2011/03/sxsw-session-notes-you-dont-have-to-move-to-live-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW: Recap</title>
		<link>http://nirak.net/2011/03/sxsw-recap/</link>
		<comments>http://nirak.net/2011/03/sxsw-recap/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 17:25:17 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=603</guid>
		<description><![CDATA[I had a fantastic time at SXSW. I learned a lot (though I felt my brain was full by the second day) and met a ton of fantastic and smart people &#8211; both professional contacts and personal ones. I am &#8230; <a href="http://nirak.net/2011/03/sxsw-recap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I had a fantastic time at SXSW. I learned a lot (though I felt my brain was full by the second day) and met a ton of fantastic and smart people &#8211; both professional contacts and personal ones.</p>
<p>I am working on a series of posts of my notes from SXSW. Interspaced with those will be posts about what I learned in general and the value I see in SXSW.</p>
<p><a title="SXSW Notes by karindalziel, on Flickr" href="http://www.flickr.com/photos/nirak/5535292470/"><img src="http://farm6.static.flickr.com/5260/5535292470_3e1a9e0b91_z.jpg" alt="SXSW Notes" width="640" height="479" /></a></p>
<p>I took 47 pages of handwritten notes. It&#8217;s gonna take a while to type them all up.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2011/03/sxsw-recap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Going to SXSW</title>
		<link>http://nirak.net/2011/03/going-to-sxsw/</link>
		<comments>http://nirak.net/2011/03/going-to-sxsw/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 04:30:51 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://nirak.net/?p=570</guid>
		<description><![CDATA[Going to break a way too long silence on this blog to talk about: Vacation! I will be headed to SXSW Interactive in Austin, TX next week, the 11th-16th. If you are going and would like to meet up, email &#8230; <a href="http://nirak.net/2011/03/going-to-sxsw/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Going to break a way too long silence on this blog to talk about: Vacation!</p>
<p>I will be headed to <a href="http://sxsw.com/interactive">SXSW Interactive</a> in Austin, TX next week, the 11th-16th. If you are going and would like to meet up, email me (karin at nirak dot net or nirak on twitter).</p>
<p>I&#8217;m pretty excited to go to SXSW, having listened to many of the podcasts and for a couple of years, sans visuals, and following the conversations. I&#8217;m sure I will learn a lot, and from what I hear, I will also be staying up way too late.</p>
<p>[awkward segue]</p>
<p>I had a long post written up once (one of many posts I have written which will probably stay in &#8220;draft&#8221; form) about why libraries should fund conference expenses for staff as well as faculty. I still think that is the case, but recognize that, with budgets being what they are, it probably is difficult to fund faculty travel to conferences right now, let alone staff. However, there is some advantage to paying my own way, which I neglected to mention in that post.</p>
<p>An excerpt from that post, written almost a year ago:</p>
<p>&#8220;The employee, and in turn the employer, gets much more from staff attendance at a conference besides continuing education. They get new professional contacts, new ways to solve problems, new resources to check, and, most importantly, an renewed excitement for the work they do. If a conference results in an employee that returns with new excitement and commitment to the work they are doing, everyone benefits.&#8221;</p>
<p>The nice thing about paying my own way to conferences (which I have done several times a year), is that since I don&#8217;t have to worry about publishing papers or giving presentations, I can choose the conferences that excite me rather than the ones that are likely to advance me towards tenure. I come back to work super exhausted and super excited about the work I am privileged to be able to do. I&#8217;m very lucky to have both the money and the available time off to be able to attend conferences.</p>
<p>Not really sure of my point here, except to say WOOO SXSW!!!!!</p>
<p>(Expect a few more awkward blog posts while I get back into this whole blogging thing).</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2011/03/going-to-sxsw/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ALA Annual update</title>
		<link>http://nirak.net/2008/06/ala-annual-update/</link>
		<comments>http://nirak.net/2008/06/ala-annual-update/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 16:36:21 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[ala annual]]></category>
		<category><![CDATA[california]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[plans]]></category>
		<category><![CDATA[professional]]></category>

		<guid isPermaLink="false">http://www.nirak.net/?p=309</guid>
		<description><![CDATA[Colors of San Pedro by my hovercraft is full of eels The last few weeks have been a bit of a blur. Various house issues, preparing for vacation and ALA Annual, work, school, and life have been keeping me very &#8230; <a href="http://nirak.net/2008/06/ala-annual-update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Colors of San Pedro by my hovercraft is full of eels, on Flickr" href="http://www.flickr.com/photos/abhijit/2239599673/"><img src="http://farm3.static.flickr.com/2211/2239599673_22ebfacb89.jpg" alt="Colors of San Pedro" width="500" height="334" /></a></p>
<p><a href="http://www.flickr.com/photos/abhijit/2239599673/">Colors of San Pedro</a> by <a title="Link to my hovercraft is full of eels' photostream" href="http://www.flickr.com/photos/abhijit/"><strong>my hovercraft is full of eels</strong></a></p>
<p>The last few weeks have been a bit of a blur. Various house issues, preparing for vacation and ALA Annual, work, school, and life have been keeping me very busy. All my poor blogs are neglected. :(</p>
<p>I&#8217;m not going to post an ALA schedule yet, because I learned last year that it will just change anyway as ALA draws closer. I will probably post a few tentative plans next week, and will hopefully blog some sessions. Of course I will go to the <a href="http://jasonpuckett.net/2008/06/13/cory-doctorow-at-ala-annual/">sessions Cory Doctorow is at</a>.</p>
<p>As for social activities, I will go to the Scholarship Bash Saturday night, and then some of us are <a href="http://wikis.ala.org/annual2008/index.php/Rocky_Horror_Picture_Show_Information">trekking to San Pedro for the Rocky Horror Picture Show</a>. I will go to the Blog Salon and the NMRT Social (I&#8217;m sad they&#8217;re not in the same hotel this year) most likely.</p>
<p>I&#8217;m heading for vacation in California before Annual- so if you are there beforehand too and want to do something, email me (karin@nirak.net.) If you want my cell phone # to contact me during Annual, just email me.</p>
<p>I will likely be posting vacation related stuff to my blog at <a href="http://os-agnostic.com">os-agnostic</a>, so check there if you want to read any of that. I&#8217;m also going to bring a painting to LA so I can <a href="http://free-artwork.com">give away a painting during my trip</a> &#8211; hopefully to someone at the conference. It worked well at THATCamp.</p>
<p>I think that&#8217;s it. If you&#8217;re going to Annual, I&#8217;ll see you there, and if not, I hope I don&#8217;t annoy you too much with my conference postings and tweets. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2008/06/ala-annual-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>THAT Camp, Day 1</title>
		<link>http://nirak.net/2008/05/that-camp-day-1/</link>
		<comments>http://nirak.net/2008/05/that-camp-day-1/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 02:40:51 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[searching]]></category>
		<category><![CDATA[that camp]]></category>

		<guid isPermaLink="false">http://www.nirak.net/?p=305</guid>
		<description><![CDATA[Finally back for good in my hotel after day 1 of THAT Camp. I am exhausted and energized at the same time. The organizers have brought together an absolutely amazing group of people, and I am humbled by the sheer &#8230; <a href="http://nirak.net/2008/05/that-camp-day-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Finally back for good in my hotel after day 1 of <a href="http://thatcamp.org/">THAT Camp</a>. I am exhausted and energized at the same time. The organizers have brought together an absolutely amazing group of people, and I am humbled by the sheer brilliance present. I&#8217;m going to do a quick overview, but many of the topics discussed will show up in my blog for weeks to come.</p>
<p>First, though- the DC area is becoming a favorite destination of mine, even though I have only been here twice now. I spent 5 hours yesterday int he <a href="http://www.nga.gov/">National Gallery of Art</a>, and was, of course, awed the entire time. (The only annoying part was listening to people say &#8216;why is that art? I could do that!&#8217; over and over. ) Fairfax is lovely, despite the occasional disappearing sidewalks (seems people don&#8217;t walk long distances here very often?)</p>
<p>THAT Camp began with a great breakfast and a whole group meeting where we planned out the schedule for the day. Participants posted their presenting ideas to <a href="http://thatcamp.org/blog/">the blog</a> for a couple of weeks leading up to the unconference, so the task was a bit easier.</p>
<h3>Session 1 &#8211; Art</h3>
<p>The first session was a session on art- specifically digital art. There were only two others including me, <a href="http://thatcamp.org/camper/dmrieder/">David Rieder</a> and <a href="http://thatcamp.org/camper/sharum/">Susan Harum</a>. We had a great discussion of what digital art might look like and how it might be supported. David and Susan had many, many great links to share, and it was great to hear how other campuses are dealing with the emergence of digital art. I&#8217;d love to see more about this topic.</p>
<h3>Lunch!</h3>
<p>A fantastic lunch was accompanied by <a href="http://thatcamp.org/2008/05/dork-shorts/">Dork Shorts</a>- brief talks on technology topic. Presenters had 5 minutes to show off their site or idea. More good link goodness, although some of the sites were in production and not yet available to the public.</p>
<h3>Session 2 &#8211; Alternative search</h3>
<p>I started the session with a brief slide show that addressed some of the points I&#8217;ve made in my recent alternative search postings.</p>
<div id="__ss_439847" style="width:425px;text-align:left"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=alternative-searching-1212283908970920-8" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=alternative-searching-1212283908970920-8" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img style="border:0px none;margin-bottom:-5px" src="http://static.slideshare.net/swf/logo_embd.png" alt="SlideShare" /></a> | <a title="View Alternative Searching on SlideShare" href="http://www.slideshare.net/karindalziel/alternative-searching?src=embed">View</a> | <a href="http://www.slideshare.net/upload?src=embed">Upload your own</a></div>
</div>
<p>After that, I left it up to the group to talk about what we could do to make search better. I was thrilled that the group contained a number of people with much more experience with search than me, and we talked about technologies, what the users want, and how to make search better. <a href="http://thatcamp.org/camper/epistemographer/">Josh Greenburg</a> brought up the excellent point that some of what we think of as search problems are really user interface problems- so I am looking forward to attending the interface design tomorrow.</p>
<p>One of the developers of <a href="http://blacklight.betech.virginia.edu/catalog">Blacklight</a> (<a href="http://thatcamp.org/camper/bess/">Bess Sadler</a>), an open source OPAC enhancement, was there and the work that they have done is absolutely amazing. I particularly liked her ideas for allowing departments to customize search for different disciplines through an easy to use GUI interface. There were a lot of other great links mentioned, which, unfortunately I lost because of an errant keystroke.</p>
<h3>Session 3 &#8211; Making things</h3>
<p><a href="http://thatcamp.org/camper/williamjturkel/">Bill Turkle</a> lead two sessions on the <a href="http://www.arduino.cc/">Arduino</a>- I attended the second. I managed to make a light blink and alter a few programs, but what I am really excited about is getting an Arduino. I have never done anything with <a href="http://en.wikipedia.org/wiki/Physical_computing">physical computing</a> or electronics before, so it was a steep learning curve for me. I am the proud new owner of an Arduino, though, and I have several ideas of project I can&#8217;t wait to get started with.</p>
<h3>Session 4 &#8211; Creative Commons/Copyright</h3>
<p>I sort of led this session, too, through I felt a bit like an impostor because I am by no means an expert on copyright. I started with a discussion on <a href="http://creativecommons.org/">creative commons</a>, talked about why I use it, and what some of the advantages and disadvantages are. The group talked about some of the copyright issues they have had, and we tried to brainstorm some ways to get around them. I wish I had more answers for the frustrating issue of copyright. I believe in intellectual property, but also share the belief of many that the copyright system as it stands is as much of a hindrance as a help.</p>
<p>One of the frustrations the group expressed was the tendency of institutions to hold back higher resolution images from the web, opting instead to only allow very low resolution images to try and make money by selling higher resolution images. One solid idea we came up with is to try and collect studies that analyze the cost vs benefits of doing this and compile a list of advantages of making higher resolution images available and free to use. I&#8217;m going to work on this &#8211; I&#8217;m wondering if I can make it into an independent study project for school.</p>
<p>Andrea Ferguson talked a little bit about her experiences getting her MFA at the University at the University of South Florida, and I came away much more optimistic about Fine Art in Academia. I have been afraid that digital art was stifled many places, but many conversations have now led me to believe that that just isn&#8217;t so. Makes me want to go for an MFA even more.</p>
<h3>Recap and dinner</h3>
<p>At the end, the group met again and <a href="http://thatcamp.org/camper/epistemographer/">Josh Greenburg</a> made a few final remarks. Then many of us went to dinner at <a href="http://www.minervacuisine.com/">Minerva</a>, a fantastic Indian restaurant here in Fairfax. The dinner and the conversation were excellent.</p>
<p>I look forward to another great day tomorrow, though my brain feels about full already. I have a beautiful walk to CHNM tomorrow in the morning to look forward to, during which I can clear my thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2008/05/that-camp-day-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#039;m going to THAT Camp!</title>
		<link>http://nirak.net/2008/03/im-going-to-that-camp/</link>
		<comments>http://nirak.net/2008/03/im-going-to-that-camp/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 20:47:05 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://www.nirak.net/2008/03/26/im-going-to-that-camp/</guid>
		<description><![CDATA[I am very excited to announce (here, at least- already announced on Twitter) that I will be attending the Center for History and New Media&#8216;s unconference THAT Camp. Here&#8217;s the quick blurb, from the website: Short for â€œThe Humanities and &#8230; <a href="http://nirak.net/2008/03/im-going-to-that-camp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am very excited to announce (here, at least- already announced on Twitter) that I will be attending the <a href="http://chnm.gmu.edu/">Center for History and New Media</a>&#8216;s unconference <a href="http://thatcamp.org/">THAT Camp</a>.  Here&#8217;s the quick blurb, from the website:</p>
<blockquote><p>Short for â€œThe Humanities and Technology Campâ€, THATCamp is a BarCamp-style, user-generated â€œunconferenceâ€ on digital humanities. THATCamp is organized and hosted by the <a href="http://chnm.gmu.edu/">Center for History and New Media</a> at George Mason University, <a href="http://digitalcampus.tv/">Digital Campus</a>, and <a href="http://thatpodcast.org/">THATPodcast</a>.</p></blockquote>
<p>I have been listening to <a href="http://digitalcampus.tv/">Digital Campus</a> for a while (since the 2nd episode, I think) and am, of course, a big fan of <a href="http://www.zotero.org">Zotero</a>, so I&#8217;m thrilled to go to George Mason and hang with a bunch of super smart people. I&#8217;m hoping the smart will rub off a little on me.</p>
<p>I&#8217;m full of ideas for the unconference, but nothing concrete is forming in my brain yet. Luckily, THAT Camp will be after I have finished my spring semester but before I start my summer semester, so I will have some time to collect my thoughts, do a little research, and maybe make some more <a href="http://flickr.com/photos/nirak/sets/72157603784044836/">research LOL cats</a>, just for fun.</p>
<p>This will be the first conference/event I have gone to that is directly related to <a href="http://en.wikipedia.org/wiki/Digital_Humanities">digital humanities</a> (I have been to library conferences), and I am looking forward to talking about DH things with people outside of work.</p>
<p>I am also excited to be heading back to Washington D.C., though the only time I have to visit museums will be Friday after my plane gets in at 11ish. I&#8217;ll be running over to the <a href="http://www.nga.gov/">National Gallery of Art</a> as soon as the plane lands. Last time I did my whirlwind tour of the national mall museums, I didn&#8217;t get to spend much time in the NGA. Though I won&#8217;t be able to make it this trip (I tried to fly out later Monday night, but it didn&#8217;t work out) I WILL see the <a href="http://www.nbm.org/">National Building Museum</a> someday. (Jenny Levine has recommended this to me at least twice, so I must see it!)</p>
<p>On another note, if anyone knows of a cheap place to stay in/near Fairfax or has a couch I can crash on for the nights of May 30, May 31, and June 1, let me know. Alternately, if anyone else is going and wants to share a room, let me know. I can get a hotel, but I&#8217;m trying to save money where possible. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2008/03/im-going-to-that-camp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jumping the gun and finding the fun</title>
		<link>http://nirak.net/2008/03/jumping-the-gun-and-finding-the-fun/</link>
		<comments>http://nirak.net/2008/03/jumping-the-gun-and-finding-the-fun/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 01:10:36 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[School Stuff]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.nirak.net/2008/03/25/jumping-the-gun-and-finding-the-fun/</guid>
		<description><![CDATA[I have been pretty quiet here lately. The truth is, there has been a LOT on my mind- stuff about my future career, where I want to live, what concessions I am willing to make (including how much time I &#8230; <a href="http://nirak.net/2008/03/jumping-the-gun-and-finding-the-fun/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm1.static.flickr.com/214/470473810_a2fe7ce3dc_m.jpg" align="right" height="160" width="240" />I have been pretty quiet here lately. The truth is, there has been a LOT on my mind- stuff about my future career, where I want to live, what concessions I am willing to make (including how much time I am willing to spend away from my husband) and what exactly I want to do. So much is unsure, and I suppose I feel a little uncomfortable talking about things that I am unsure about- though I think for other library school students, this is exactly the kind of thing that is very useful to read about.</p>
<p>The other reason I have not posted about these feelings and thoughts is because it is hard to do so without naming names. Much of what I want in a job depends on where that job is, and that has to do with family, friends, and of course, my husband who is both my family and my best friend. (OK, trying not to sound too mushy, but he really is.) Also, the library community is small. It&#8217;s not hard to determine who I am talking about, even if I don&#8217;t name names. This has mede me super careful about what I post, especially lately.</p>
<p>So please forgive me if my posts come off sounding a little awkward and vague- it&#8217;s where my brain is right now.</p>
<p><img src="http://farm1.static.flickr.com/138/345782524_9069106f22_m.jpg" alt="Winter road" align="right" />I recently withdrew my name from a job that I really, really wanted. I think I had a good chance at getting the position, but it was just too far from home, in a place my husband would have had a hard time relocating. I knew this when I applied, of course. The plan was that I would spend the week in this other place and then come home on the weekends. It sounds OK on paper, and in planning, but when we actually sat down to figure out costs and logistics, it sort of fell apart. There were a lot of little things that, if taken alone, would have been fine, but all together would make the job unmanageable.</p>
<p>Then there was the fact that I am, after all, still in school- still carrying a full coarse load while working full time. Travel would mean cutting 5-6 hours out of my week when I have little time to spare. I can&#8217;t help but feel I should have considered all these aspects of the job before I applied, and I feel bad for not doing so. On the other hand, sometimes it takes a face to face confrontation with a possibility before it feels real. I am very grateful to the search committee of the school I applied to. It sounds like they are doing wonderful things and I am disappointed I will not be a part of it. They asked really great questions that really showed they are thinking about many of the same things I am, and it will be hard to come by a job that would allow me the opportunities this one would have.</p>
<p><img src="http://farm3.static.flickr.com/2174/2061335649_1b4b9daeb2_m.jpg" alt="Cheerful Personalities" align="right" />The whole experience has made me cautious about job applications. For a while now I have been adding more and more to my to do pile- applying for a job seemed like the logical next step. I realize now that I need to take a step back and reassess. Full time work and school is hard- when I add to that presenting and writing and conferences and serving as secretary for the NMRT of the NLA, I&#8217;m pretty much filled up to capacity.</p>
<p>At the same time all this was happening, or maybe because of it, I have found myself drifting back to art as a pastime. I sort of stopped making art after I finished my Bachelors in Fine Art. The preparation for the final show and my final classes were overwhelming (I was working near full time then, too). I was constantly making art, and that art was constantly evaluated and critiqued, and it got exhausting. I not only had to create, but I had to think very carefully and pointedly about what I was creating, how to explain it, how to defend it, and how to present it. The thought of making a living at as an artist started to take on an ominous tone- a life full of creating for someone else, and to base my living off that&#8230; well, let&#8217;s just say I&#8217;m glad I found librarianship as another option.</p>
<p><a href="http://www.flickr.com/photos/nirak/2342110418/" title="Blocks, paintings, glue and Ink by karindalziel, on Flickr"><img src="http://farm4.static.flickr.com/3108/2342110418_964e790f02_m.jpg" alt="Blocks, paintings, glue and Ink" align="right" height="160" width="240" /></a>So I&#8217;ve been painting again, and it feels good. It&#8217;s been a while since I&#8217;ve had a hobby completely outside of library stuff. Even the &#8220;fun&#8221; books I read last summer almost all had to do with some aspect of libraries- technology, management, etc. To get my artwork out there I&#8217;ve started a <a href="http://flickr.com/photos/nirak/sets/72157604141666256/">&#8220;free artwork&#8221; photoset in Flickr</a>- I will occasionally put up small paintings there for free (and I usually announce on Twitter). There is something immensely gratifying about giving things away for free.</p>
<p>I realize that when I push myself too hard, I end up wanting to turn away from the things I am most passionate about, so I am on a quest to regain some balance in my life. I was so sparky last semester- my thoughts seemed to mesh up with what I was learning in class and the blogosphere supported it all. Now my feed reader constantly taunts me with the little &#8220;1000+&#8221; unread posts signal. I&#8217;ve taken a laissez faire approach to that- not gonna weed or do anything, just read when I can. I feel like I&#8217;m constantly running to catch up, not sprinting ahead of the pack. I hope that this spring break I can emerge with new enthusiasm and vigor, and more purpose about what I want to do and how I can accomplish it.</p>
<p>Photos: <a href="http://flickr.com/photos/splorp/470473810/">splorp</a> <a href="http://flickr.com/photos/57402879@N00/345782524/">BugMan50</a> <a href="http://flickr.com/photos/jenna77/2061335649/">capturingJenn </a> (last one mine)</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2008/03/jumping-the-gun-and-finding-the-fun/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Do&#039;s and Do not&#039;s of professional social networking</title>
		<link>http://nirak.net/2008/02/dos-and-do-nots-of-professional-social-networking/</link>
		<comments>http://nirak.net/2008/02/dos-and-do-nots-of-professional-social-networking/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 21:42:36 +0000</pubDate>
		<dc:creator>karin</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[School Stuff]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.nirak.net/2008/02/07/dos-and-do-nots-of-professional-social-networking/</guid>
		<description><![CDATA[Yesterday I explored some of the advantages to using social networking in a professional capacity (including my personal experiences.) I got a good response &#8211; thanks everyone! I am pondering an article, but it has to roll around in my &#8230; <a href="http://nirak.net/2008/02/dos-and-do-nots-of-professional-social-networking/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I explored some of the advantages to <a href="http://www.nirak.net/2008/02/06/professional_social_networking/">using social networking in a professional capacity</a> (including my personal experiences.) I got a good response &#8211; thanks everyone! I am pondering an article, but it has to roll around in my head a bit first. I feel kind of weird analyzing my activities online like this because it sounds so technical- the truth is, I am making friends just as much as I am making &#8220;professional contacts.&#8221; That was one of the first signs for me that I was on the right career path- I found colleagues I could relate to, look up to, and really like.</p>
<p>Today, I&#8217;ll share a few do&#8217;s and do not&#8217;s I thought of- feel free to add more in the comments.</p>
<p><font color="#3366ff"><strong>Do:</strong></font> Learn how each social network works. There are different ways to use each service, and it is likely you won&#8217;t use all of the features on any of them. For instance, I am not very active in groups on Flickr, but I always look at my contacts&#8217; photos, comment where appropriate, and monitor my conversations. (Flickr makes this easy!)</p>
<p><font color="#ff6600"><strong>Don&#8217;t:</strong></font> Use networks to spam people. Individualized messages are great, form letter sounding messages are not so great.</p>
<p><font color="#3366ff"><strong>Do:</strong></font> Choose the networks that work for you. Twitter may not be your thing, and that&#8217;s fine. Find the <a href="http://en.wikipedia.org/wiki/List_of_social_networking_websites">networks that work for you</a> and use them. (Hint: if you like Scrabble, join Facebook and challenge somebody to a Scrabulous game.)</p>
<p><font color="#ff6600"><strong>Don&#8217;t:</strong></font> Join networks for the sole purpose of asking for a favor. Joining one day and then asking people if they know of any good jobs the next isn&#8217;t kosher. If you are going to use social networks, you have to be social- start early, and keep it up!</p>
<p><font color="#3366ff"><strong>Do:</strong></font> Put up pictures of yourself. I use an <a href="http://flickr.com/photos/nirak/758183881/">icon for my profile pic</a> (it is fairly distinctive) everywhere, but I also include another picture of myself if allowed. I also put my picture on my about page. People like to know who they are talking to, and it will increase the likelihood people will recognize you should you ever meet them.</p>
<p><font color="#ff6600"><strong>Don&#8217;t:</strong></font> Put up potentially embarrassing pictures of yourself. I know this should go without saying, but it bears repeating. If you are already on social networks, you might want to clean up your profile a bit before you start friending professional contacts. (e.g. get rid of pictures of yourself surrounded by beer cans.) There&#8217;s always the option of maintaining a separate identity- that always seemed like a lot of work to me, but it is certainly do-able.</p>
<p><font color="#3366ff"><strong>Do: </strong></font>Check your name in search engines. If you have a very common name, you might want to consider adding your middle initial or using a nick name to differentiate yourself from the other &#8220;Jane Smith&#8217;s&#8221; out there. If you do this, you have to be consistent and use it everywhere- resume, business card, website, social networks, etc.  If nothing else, make sure that your name + library (or whatever industry keyword you want) brings up something about you.</p>
<p><font color="#ff6600"><strong>Don&#8217;t:</strong></font> Fall for &#8220;<a href="http://en.wikipedia.org/wiki/Search_engine_optimization">Search Engine Optimization</a>&#8221; offers. If you stick with a well known blogging platform (like WordPress, Blogger, Movable Type, Drupal, etc.), enable name based URL&#8217;s, and especially if you buy your own domain name, your site will already be optimized. You can increase your ranking by commenting on others&#8217; blogs (real comments, not &#8220;mee toos&#8221;) linking from any other sites you own, and perhaps asking a few well known acquaintances to link to you, if appropriate. The absolute best thing you can do is develop content: i.e. write in your blog.</p>
<p><font color="#3366ff"><strong>Do:</strong></font><strong> </strong>Share your knowledge. Some might say that you don&#8217;t want to give everything away, but especially in the early part of your career you have to demonstrate that you have something to say before you can reasonably think of charging for your knowledge and skills.</p>
<p><font color="#ff6600"><strong>Don&#8217;t:</strong></font> Become locked into your opinion. It&#8217;s perfectly OK to revisit something you wrote about before and say you changed your mind. That&#8217;s not wishy washy- that&#8217;s showing the ability to think in the face of new evidence and make an informed decision.</p>
<p><font color="#3366ff"><strong>Do:</strong></font><strong> </strong>Carry business cards with your web address at all times. I&#8217;m a student, so I don&#8217;t have professional cards- I just <a href="http://www.nirak.net/2007/08/09/got-the-moo-cards/">ordered some Moo Cards</a> and use those.  The point is to make yourself findable whether you meet someone online or off.</p>
<p><font color="#ff6600"><strong>Don&#8217;t:</strong></font> Complain, gripe, be snarky, or otherwise be overly negative. I&#8217;m not saying everything has to be sunny and roses,  but try to put a rational face on things and look at the bright side whenever possible. Try offering a suggestion for change or research how other institutions handle similar situations. If you&#8217;re not sure, get a second opinion or sit on a post for a day.</p>
<p><font color="#3366ff"><strong>Do:</strong></font><strong>  </strong>Utilize a number of social networking sites in your &#8220;main&#8221; site. For instance, instead of uploading pictures to your private web space, put them on Flickr or another photo sharing site.  You can incorporate books you are reading into your site through <a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.librarything.com%2F&amp;ei=JAaqR9zhHYG2jgGDm_DnCw&amp;usg=AFQjCNFC1RJ683OMKNjFrEWb0Ksfkams3w&amp;sig2=WZ5coOHJJk1w4XcKcdQA4w">LibraryThing</a>, or show the blogs you are reading using a <a href="http://googlereader.blogspot.com/2007/11/attack-of-20ers.html">Google Reader widget</a>. Link back and forth to different services with wild abandon.<font color="#3366ff"></font></p>
<p><font color="#3366ff"><strong>Do:</strong></font><strong> </strong>Similar to above: Link early, link often. You might think that linking to another person&#8217;s website doesn&#8217;t really do anything, but it does. They might see that incoming link, and link back, or come visit your site.</p>
<p><font color="#ff6600"><strong>Don&#8217;t:</strong></font> Limit your networking to online. OK, this probably doesn&#8217;t belong on this page, but it&#8217;s important. Try to make it to local conferences, write articles for your state library association publication, give local presentations and join mentoring programs. These are just a few examples of ways you can get involved locally. Online networking is great, but meeting someone face to face really solidifies a relationship. And dress nice when you attend the conferences- you never know when you might get an on the spot job interview or pre-interview.</p>
<p><font color="#3366ff"><strong>Do:</strong></font><strong> </strong>Use <a href="http://creativecommons.org/">Creative Commons</a> licensing whenever possible.  You can get a <a href="http://creativecommons.org/license/">license for your work here</a>, and on some sites (like Flickr) you can set a license for the content you upload. I have most of my content under a CC By: license- which means anyone can use it, but they have to credit me. This does two things: it gives you more links back, and it just about guarantees your work will be spread more widely. If you are worried about stealing, think of it this way: If someone wants to steal your online content, they will. It&#8217;s happened to me. But some people will look for content they can use legally, and you want those people to find your content, because they are good about linking back. Besides, it&#8217;s just cool when you find one of your pictures on <a href="http://flickr.com/photos/nirak/2247161212/">someone else&#8217;s blog header</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nirak.net/2008/02/dos-and-do-nots-of-professional-social-networking/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

