<?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>neography</title>
	<atom:link href="http://neography.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://neography.com</link>
	<description>Alex Giron's Personal Web Site</description>
	<lastBuildDate>Mon, 03 Feb 2014 17:06:21 -0500</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.3</generator>
	<item>
		<title>Enter Canvas</title>
		<link>http://neography.com/journal/canvas/</link>
				<pubDate>Wed, 27 Jun 2012 15:59:49 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=837</guid>
				<description><![CDATA[Introducing Washington, DC's largest co-working community; designed for creatives, freelancers, independents and start-ups to be an inspiring environment in which to work and collaborate.]]></description>
								<content:encoded><![CDATA[<p class="lead">Just over a month and a half ago <a href="http://twitter.com/martymadrid">Martin</a> and myself launched a new venture called <a href="http://canvas.co" title="Canvas Cowork">Canvas</a>, a beautiful co-working space designed for cre­at­ive types.</p>

<p>
<img src="http://neography.com/_base/uploads/canvas_cowork1.jpg" alt="Canvas Cowork">
</p>

<p>In the five and a half years of running an agency (<a href="http://nclud.com" title="nclud">nclud</a>) we learned the importance of having the right environment for creatives; we understand how much of an impact the right space can make in the creative process.</p>

<p>We designed nclud’s HQ all by ourselves, we modified the floor plans, picked all finishes, paint, furniture, decor, all of it. We designed a workplace every one of us was proud to call our ‘office’.</p>

<p>There is just something about walking into work every morning and feeling like you are in the right place, a space that ‘feels’ creative.</p>

<p>This feeling is something wanted to mimic for the creative community in DC. Freelancers, independents startups, all should have a space they are proud to work from.</p>

<p>We also want to change how people look at DC, it’s not just about goverment jobs and contractors, DC has amazing creative talent and we want everyone to notice this.</p>

<p>Canvas will become not just a place to work from, but a place where the community meets, where events happen, a hub for creatives.</p>

<p>We want canvas to have the same success nclud has had. We’re following the same formula and we hope it works one more time.</p>

<p>We called it canvas because a canvas is where a creative begins and where eventually a masterpiece is created.</p>

<p>
<img src="http://neography.com/_base/uploads/canvas_logo.png" alt="Canvas Logo">
</p>

<p>
<img src="http://neography.com/_base/uploads/canvas_cowork2.jpg" alt="Canvas Cowork">
<img src="http://neography.com/_base/uploads/canvas_cowork3.jpg" alt="Canvas Cowork">
<img src="http://neography.com/_base/uploads/canvas_cowork4.jpg" alt="Canvas Cowork">
<img src="http://neography.com/_base/uploads/canvas_cowork5.jpg" alt="Canvas Cowork">
</p>

<p><a href="http://www.flickr.com/photos/giron/sets/72157630287553412/">View more photographs of the canvas space</a>.</p>
<p>Learn more about canvas at <a href="http://canvas.co" title="Canvas Cowork">http://canvas.co/work</a></p>]]></content:encoded>
										</item>
		<item>
		<title>Design is Resize</title>
		<link>http://neography.com/journal/design-is-resize/</link>
				<pubDate>Thu, 29 Mar 2012 23:02:37 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=787</guid>
				<description><![CDATA[A fun little experiment with Media Queries, Typography &#038; CSS3 Transitions.]]></description>
								<content:encoded><![CDATA[<p class="lead">A fun little experiment with Media Queries, Typography &amp; CSS3 Transitions.</p>

<p>Inspired by <a href="http://arleym.com/">Arley McBlain</a>’s site and his clever use of CSS Media Queries, I set out to explore the posibilites using this technique. In my first try I wanted to use simple CSS transitions to create a compelling piece. The result is a good one, but the possibilites of what can be done are endless.</p>

<h2>Go on… Click &amp; resize your window.</h2>

<p><a class="image" href="http://neography.com/experiment/mediaquery/"><img src="http://neography.com/_base/uploads/designis_11.png" alt="Our Solar System"></a></p>
<p><a class="image" href="http://neography.com/experiment/mediaquery/"><img src="http://neography.com/_base/uploads/designis_22.png" alt="Our Solar System"></a></p>
<p><a class="image" href="http://neography.com/experiment/mediaquery/"><img src="http://neography.com/_base/uploads/designis_3.png" alt="Our Solar System"></a></p>

<p><a href="http://typekit.com">Typekit</a> is used for all the different typefaces, a bit of CSS3 Transforms, background transitions and bam. Done.</p>

<h2>Simple Code</h2>

<p>Here’s an example of how I’m making the switch from one word to the next:</p>

<code><pre>
@media screen and (min-width:580px) {
li.t2{color: rgba(0, 0, 0, 0);
-webkit-transform: rotateX(0deg)
}}
@media screen and (min-width:580px) {
li.t3{color: rgba(0, 0, 0, 1);
-webkit-transform: rotateX(0deg);
font-size:140%;
}
body {background: #8fc447;}
}
</pre></code>

<p>Pretty basic, when the browser window reaches a certain size, in this case 580px it hides one word, displays the next one and it applies font-size changes, background changes and rotations.</p>

<p>This experiment works best when viewed in Safari, but it should work just fine in other browsers.</p>

<p>So there it is, a simple experiment, but I’m excited at the possibilites.</p>]]></content:encoded>
										</item>
		<item>
		<title>iPhone 4S Video Shoot</title>
		<link>http://neography.com/journal/iphone-4s-video-shoot/</link>
				<comments>http://neography.com/journal/iphone-4s-video-shoot/#comments</comments>
				<pubDate>Tue, 18 Oct 2011 14:42:36 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=737</guid>
				<description><![CDATA[A sweet and short video made from a compilation of video clips taken around the Washington, DC metro area.]]></description>
								<content:encoded><![CDATA[<p class="lead">A sweet and short video made from a compilation of video clips taken around the Washington, DC metro area.</p>

<p>Got Inspired by this video <a href="http://vimeo.com/30578363">http://vimeo.com/​30578363</a> and decided to shoot some short clips around the <a href="http://nclud.com">studio</a> and on the streets of DC/Metro using my shinny new iPhone 4S.</p>

<iframe src="http://player.vimeo.com/video/30727550?byline=0&amp;portrait=0&amp;color=ffffff" width="620" height="349" frameborder="0" webkitallowfullscreen allowfullscreen></iframe>

<p>
Spent an hour or so editing the clips on iMovie. The result is not as smooth as I’d like it to be, but it’s my first time shooting with a 4S and I must say I’m impressed with the quality. 
</p>

<p><img src="http://neography.com/_base/uploads/iphone-shoot.jpg" alt="iPhone 4S Video Shoot" title="iPhone 4S Video Shoot"></p>

<p><img src="http://neography.com/_base/uploads/imovie.png" alt="iMovie Video Edit" title="iMovie Video Edit"></p>

<p>I will definitely be trying this again! Next time I’ll have a plan.</p>]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/iphone-4s-video-shoot/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
							</item>
		<item>
		<title>Fluid + DesignersMX = Bliss</title>
		<link>http://neography.com/journal/fluid-designersmx-bliss/</link>
				<comments>http://neography.com/journal/fluid-designersmx-bliss/#comments</comments>
				<pubDate>Thu, 12 May 2011 20:51:43 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=664</guid>
				<description><![CDATA[I've enjoyed every bit of Designers.MX since it launched, their iPhone optimized web site is fenomenal, however the desktop experience wasn't ideal for me, so I set out to find a solution for this.]]></description>
								<content:encoded><![CDATA[<p class="lead">I’ve enjoyed every bit of <a href="http://designers.mx/">Designers.MX</a> since it launched, their iPhone optimized web site is fenomenal, however the desktop experience (for browsing listening to music) wasn’t ideal for me, so I set out to find a solution for this.</p>

<p>First, if you haven’t checked out <a href="http://designers.mx/">Designers.MX</a> yet I suggest you head over there now. They have wonderful mixes with beautifully designed covers by fellow designers, a match made in heaven! Truly fantastic. I even contributed <a href="http://designers.mx/musica/">my own mix</a>.</p>

<p>
Before I tell you how to set up your DesignersMX Desktop App, let me show you what it looks like:
</p>

<p><img src="http://neography.com/_base/uploads/dm4.png" alt="DesignersMX App" title="DesignersMX App"></p>

<p>We are basically taking advantage of the beautifully optimized mobile experience and serving it on the desktop as an app. Isn’t it awesome?</p>

<h2>Set Up Your Designers.MX Desktop App:</h2>

<p>
Download and install <a href="http://fluidapp.com/">Fluid</a> (Older Version with all features at <a href="http://fluid.en.softonic.com/mac">http://fluid.en.softonic.com/mac</a>), launch it and set the URL field to <a href="http://designers.mx/">http://designers.mx/</a>, Give it a name (I chose DesignersMX) and Click “Create”.
</p>
<p><img src="http://neography.com/_base/uploads/dm1.png" alt="Fluid App" title="Fluid App"></p>

<p>Once you receive the success message, launch the app. Go to the App’s menu, set the User Agent to “Mobile Safari” and refresh (Command+R).</p>
<p><img src="http://neography.com/_base/uploads/dm7.png" alt="Fluid User Agent Menu" title="Fluid User Agent Menu"><img src="http://neography.com/_base/uploads/dm8.png" alt="User Agent" title="User Agent"></p>
<p>You should be able to see the mobile optimized version of DesignersMX at this point. Adjust the window to the width/height you prefer.</p>
<p><img src="http://neography.com/_base/uploads/dm9.png" alt="Mobile Optimized" title="Mobile Optimized"></p>

<p>Go to the preferences menu.</p>
<p><img src="http://neography.com/_base/uploads/dm2.png" alt="Fluid Preferences" title="Fluid Preferences"></p>

<p>
Click on appearance and change window style to “HUD (Black) and re-start the app.
</p>
<p><img src="http://neography.com/_base/uploads/dm3.png" alt="Fluid Appearance " title="Fluid Appearance "></p>

<p>The window chrome now matches the color scheme of the site:</p>
<p><img src="http://neography.com/_base/uploads/dm6.png" alt="DesignersMX Floating Window" title="DesignersMX Floating Window"></p>

<p>At this point you already have a nice DesignersMX app. If you prefer having a floating window on your desktop you are done… However if you are like me and prefer menu bar icons follow the next step.</p>

<p>Go to the app’s menu, select “Convert To MenuExtra SSB” and click ok.</p>
<p><img src="http://neography.com/_base/uploads/dm11.png" alt="MenuExtra SSB" title="MenuExtra SSB"></p>

<p>The app should restart and you should now see a menu bar icon on your toolbar like so:</p>
<p><img src="http://neography.com/_base/uploads/dm12.png" alt="Menu Bar Icon" title="Menu Bar Icon"></p>

<p><strong>Voilà!</strong></p>

<p>You now have a beautiful Designers.MX Desktop App.</p>
<p>Thanks go to <a href="http://cameronmoll.com/">Cameron Moll</a> for providing the soundtrack while I wrote this blog post, to <a href="designers.mx?phpMyAdmin=tBDCVJgn2MMe1EVlynMXDeH80M3">Designers.MX </a> for providing an awesome service and to all those that have contributed awesome mixes and covers.</p>

<p>Cheers all, enjoy!</p>]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/fluid-designersmx-bliss/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
							</item>
		<item>
		<title>Our Solar System in CSS3</title>
		<link>http://neography.com/journal/our-solar-system-in-css3/</link>
				<comments>http://neography.com/journal/our-solar-system-in-css3/#comments</comments>
				<pubDate>Tue, 18 May 2010 20:55:12 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=589</guid>
				<description><![CDATA[This is an attempt to recreate our solar system using CSS3 features such as border-radius, transforms &#038; animations. The result is surprising and quite interesting.]]></description>
								<content:encoded><![CDATA[<p class="lead">This is an attempt to recreate our solar system using CSS3 features such as border-radius, transforms and animations. The result is surprising and quite interesting.</p>

<p>These past few months I’ve been exploring CSS3, trying to learn some of it’s new features and getting a feel for which browsers support it. A few weeks back I put out my first experiment exploring <a href="http://neography.com/journal/css-transforms-font-face-experiment/">@font-face and transforms</a>. This time, I set out to experiment with border-radius, and what I thought was going to be a boring little project turned out to be quite interesting.</p>

<h2>Our Solar System in Modern Browsers</h2>

<p><a class="image" href="http://neography.com/experiment/circles/solarsystem/"><img src="http://neography.com/_base/uploads/solar_system.jpg" alt="Our Solar System"></a></p>

<p><a href="http://neography.com/experiment/circles/solarsystem/">Take a look for yourself</a>, using only CSS and HTML I managed to create a small simulation of our solar system.</p>

<p>For a better experience please view it on Safari, under chrome the animations lag for some reason.</p>

<h2>The Details</h2>

<p>Orbits and planets are all created using border-radius, while the animation is done via ‑webkit animation properties and transform. Below are examples of the code used.</p>

<h3>border-radius</h3>
<code><pre>
ul.solarsystem li.sun {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
</pre></code>

<h3>Animations &amp; Transforms</h3>
<code><pre>
ul.solarsystem li {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:orbit;
}
ul.solarsystem li.earth span {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:moon;
}
ul.solarsystem li.mercury {-webkit-animation-duration:5s;}
ul.solarsystem li.venus {-webkit-animation-duration:8s;}
ul.solarsystem li.earth {-webkit-animation-duration:12s;}
ul.solarsystem li.earth span {-webkit-animation-duration:2s;}
ul.solarsystem li.mars {-webkit-animation-duration:20s;}
ul.solarsystem li.asteroids_meteorids {-webkit-animation-duration:50s;}
ul.solarsystem li.jupiter {-webkit-animation-duration:30s;}
ul.solarsystem li.saturn {-webkit-animation-duration:60s;}
ul.solarsystem li.uranus {-webkit-animation-duration:70s;}
ul.solarsystem li.neptune {-webkit-animation-duration:100s;}
ul.solarsystem li.pluto {-webkit-animation-duration:120s;}

@-webkit-keyframes orbit { 
from { -webkit-transform:rotate(0deg) } 
to { -webkit-transform:rotate(360deg) } }
</pre></code>

<p>Animations and transitions will only work on ‑webkit browsers, other modern browsers will display a static version of the solar system rendered using border-radius, with the exception of IE of course.</p>

<h2>Internet Explorer’s Parallel Flat Universe:</h2>
<p><img src="http://neography.com/_base/uploads/solar_system_ie.jpg" alt="Our Solar System in IE"></p>

<p>Yep, in the eyes of Internet Explorer our universe is flat and boring.</p>

<p>So there you have it, I think it’s pretty impressive what we can accomplish with a few lines of CSS these days.</p>

<p>Oh, and yes… I kept Pluto ;-)</p>]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/our-solar-system-in-css3/feed/</wfw:commentRss>
		<slash:comments>68</slash:comments>
							</item>
		<item>
		<title>On Collecting Visual Inspiration</title>
		<link>http://neography.com/journal/on-collecting-visual-inspiration/</link>
				<comments>http://neography.com/journal/on-collecting-visual-inspiration/#comments</comments>
				<pubDate>Mon, 26 Apr 2010 19:00:50 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=565</guid>
				<description><![CDATA[Like many designers out there I like collecting images of good graphic design, but I have a problem with current image bookmarking services. So I decided to set up my own system.]]></description>
								<content:encoded><![CDATA[<p class="lead">Like many designers out there I like collecting images of good graphic design, but I have a problem with current image bookmarking services. So I decided to set up my own system.</p>

<p>Who doesn’t love looking at clean, simple, beautiful graphic design? I’m obsessed with discovering great talent and great design. Ever since I can remember wanting to be a designer I’ve collected and/or cataloged bits of designs I find inspiring and useful. Like many of you however, I’ve struggled to find the perfect solution for my image bookmarking needs.</p>

<p>Over the last few years I’ve been using web based services for my design bookmarking, and  while there are some good solutions out there, non are perfect for me.</p>

<h2>The Problem with Current Solutions</h2>

<p>My biggest issue with current image bookmarking services is their lack of simplicity, both from a design perspective and the features they offer. All of these services <a href="http://ffffound.com/">ffffound</a>, <a href="http://imgspark.com/">imgspark</a>, <a href="http://vi.sualize.us/">vi.sualize</a>, <a href="http://emberapp.com/">emberapp</a>, while good solutions for most, are just not what I’m looking for.</p>

<p>I want a service that let’s me focus on the images themselves and not it’s related content/metadata. I don’t want to see how many people liked a specific image, or if it has other related images, or how many tags it has etc. I’m there to consume the visuals, the image!.</p>

<h2>A Note on Dropular</h2>

<p><a href="http://dropular.net/">Dropular</a> is an image bookmarking service that showed promise, it had a simple interface and a very elegant solution for bookmarking images via a simple bookmarklet. I started using the service last year and I finally felt I had found the perfect solution. That is, until they destroyed any confidence I had in them. Not only did they shut down for several months promising a new and improved service, but ended up launching a completely useless website. I respect the people behind dropular, but they really let me down.</p>

<p>After the dropular fiasco, I figured it was time to find my own solution.</p>

<h2>Enter Visual Bits</h2>

<p><a href="http://visual.neography.com/"><img src="http://neography.com/_base/uploads/visualbits.jpg" alt="Visual Bits."></a></p>

<p><a href="http://visual.neography.com/">Visual Bits</a> is my own personal image bookmarking website. I had one goal in mind when setting it up, it needed to be simple, it needed to feel simple.</p>

<p>The site is powered by <a href="tumblr.com/?phpMyAdmin=tBDCVJgn2MMe1EVlynMXDeH80M3">tumblr</a> and it’s using a custom tumblr theme I designed that basically eliminates any other piece of data associated with the image and leaves the image and source intact. No related images, no tags, no followers, no “likes”, etc.</p>

<p>It’s perfect.</p>]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/on-collecting-visual-inspiration/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
							</item>
		<item>
		<title>CSS3 Transforms &#038; @font-face Experiment</title>
		<link>http://neography.com/journal/css-transforms-font-face-experiment/</link>
				<comments>http://neography.com/journal/css-transforms-font-face-experiment/#comments</comments>
				<pubDate>Wed, 31 Mar 2010 17:19:41 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=474</guid>
				<description><![CDATA[The first of what I hope are number of experiments I plan on working on over the next few months, all in an effort to get acquainted with some of the new CSS3 features out in the wild that seem to be gaining some traction.]]></description>
								<content:encoded><![CDATA[<p class="lead">This is the first of what I hope are number of experiments I plan on working on over the next few months, all in an effort to get acquainted with some of the new CSS3 features out in the wild that seem to be gaining some traction.</p>

<p>The last few months have been pretty exciting, with all the talk about new <a href="http://www.css3.info/preview/">CSS3 features</a> and how browsers are adding support for them, it’s a great time to be a designer for the web. It’s a lot easier these days to experiment with <a href="http://www.fontsquirrel.com/">different typefaces</a>, layouts and techniques previously not available.</p>

<h2>Take a look at the image below:</h2>

<p><a class="image" href="http://neography.com/experiment/type1/"><img src="http://neography.com/_base/uploads/all_humans.jpg" alt="All Humans"></a></p>

<p>No, it’s not a poster. It’s a web page completely designed using basic CSS and new CSS3 techniques. Pretty impressive right?</p>

<h2>How’s it done?</h2>

<p>Pretty easy actually, I used basic CSS positioning and some of the newer CSS3 features to put it together. Below are a few samples of the code so you can get an idea:</p>

<h3>@font-face</h3>
<code><pre>
@font-face {
	font-family: 'ChunkFiveRegular';
	src: url('Chunkfive.eot');
	src: local('ChunkFive'),local('ChunkFive'),
	    url('Chunkfive.woff') format('woff'),
	    url('Chunkfive.ttf') format('truetype'),
	    url('Chunkfive.svg#ChunkFive') format('svg');
}
</pre></code>

<h3>Transforms</h3>

<code><pre>
-webkit-transform: rotate(1deg);
-moz-transform: rotate(1deg);
-o-transform: rotate(1deg);
</pre></code>

<h3>Text-Shadows &amp; Box Shadows</h3>

<code><pre>
text-shadow: 2px 8px #b5c1b8, -1px -1px #fff;
box-shadow: 4px 6px #b5c1b8;
</pre></code>

<p>The font used is called <a href="http://www.theleagueofmoveabletype.com/fonts/4-chunk">Chunk</a>, a nice bold slab serif. The text is an excerpt from the <a href="http://en.wikipedia.org/wiki/Universal_Declaration_of_Human_Rights">Universal Declaration of Human Rights</a>.</p>

<h2>Works in these browsers</h2>
<ul>
<li>Firefox 3.6</li>
<li>Safari 4</li>
<li>Chrome 5</li>
<li>Opera 10</li>
</ul>

<p><em>IE can suck it.</em></p>

<p>So there it is. Nothing out of this world, however I think it shows the potential of CSS specifically the potential in using new CSS3 features.</p>

<p>In the <a href="http://twitter.com/mattbrett/status/11324649890">words</a> of <a href="http://mattbrett.com/">Matt Brett</a>:</p>

<blockquote><p><span class="open-quote">“</span>if you showed me that 10 years ago, my head would have exploded!<span class="close-quote">”</span></p></blockquote>

<p>Indeed. We’ve come a long way.</p>

]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/css-transforms-font-face-experiment/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
							</item>
		<item>
		<title>Design Quotes Display</title>
		<link>http://neography.com/journal/design-quotes-display-screensaver/</link>
				<comments>http://neography.com/journal/design-quotes-display-screensaver/#comments</comments>
				<pubDate>Mon, 01 Feb 2010 22:13:54 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=383</guid>
				<description><![CDATA[Bring inspiring, insightful and thought provoking design quotes to your workplace, home or anywhere you have a computer.]]></description>
								<content:encoded><![CDATA[<p class="lead">Bring inspiring, insightful and thought provoking design quotes to your workplace, home or anywhere you have a computer.</p>

<p>They say that as a designer you should surround yourself with things that inspire you, whether they are books, posters, music, magazines etc.</p>

<p>A few days ago while going about my daily browsing and came across a beautiful quote:</p>

<blockquote>
<p><span class="open-quote">“</span>Design is an opportunity to continue telling the story, not just to sum everything up.<span class="close-quote">”</span></p>
<p class="by">— Tate Linden</p>
</blockquote>

<p>I  quickly found myself searching for more quotes about design, there are tons of really good ones out there. After a while I started thinking, wouldn’t it be great if we could display these quotes on our computers in fullscreen mode? maybe as a screensaver or an interactive slideshow?</p>

<p>I’m all about surrounding myself with things that inspire me, things that help set a mood and get you thinking. Over at the <a href="http://nclud.com">nclud studio</a> we have a set of LCD screens where we display client work during meetings or sometimes use to play Mario Kart. When not in use the screensavers come on and I figured, let me setup a system that allows us to display these inspiring quotes in full screen mode, as a screensaver. What better to get you in the mood when designing than reading design quotes from some of the great minds of past times and our time?</p>

<h2>Enter Design Quotes</h2>

<p>Head over to <a href="http://neography.com/designquotes/">http://neography.com/designquotes/</a> and take a look for yourself.</p>

<p><a class="image" href="http://neography.com/designquotes/"><img src="http://neography.com/_base/uploads/dquotes2.png" alt="Design Quotes ScreenSaver"></a></p>

<p>It is a web page where quotes appear one after another at random, I accumulated just under 200 quotes and with the help of a WP plugin and a bit of jQuery I was able to put the visualzation together.</p>

<h2>How to set it up as a screensaver</h2>

<p>Mac users can use <a href="http://edotstudios.com/products">IdleWeb</a>, a nice little app that allows you to set up any webpage as your screensaver. Just make sure you set it up in “kiosk” mode within the screensaver options.</p>

<ul>
<li>Download IdleWeb: <a href="http://edotstudios.s3.amazonaws.com/downloads/idleweb21.zip">IdleWeb 2.1</a></li>
<li>If you are not on Snow Leopard yet, you can download an older version here: <a href="http://www.edot-studios.com/downloads/idleweb20.zip">IdleWeb 2.0</a> or use <a href="http://www.brock-family.org/gavin/macosx/websaver.html">WebSaver</a>.</li>
</ul>

<p>There are <a href=" http://www.google.com/search?hl=en&amp;q=display+web+page+as+screensaver&amp;aq=0s&amp;aqi=g-s1&amp;oq=display+webpage+as+scr">similar options</a> for windows users, although I haven’t tested any of them.</p>

<p>Another option is to use browser plugins to set the browser window in fullscreen mode, again I haven’t tried yet, but I’m sure it’ll work just fine.</p>

<p>So there you have it, enjoy and if you have any comments or suggestions feel free to let me know.</p>]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/design-quotes-display-screensaver/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
							</item>
		<item>
		<title>Enter Neography</title>
		<link>http://neography.com/journal/enter-neography/</link>
				<comments>http://neography.com/journal/enter-neography/#comments</comments>
				<pubDate>Thu, 28 Jan 2010 20:10:44 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=341</guid>
				<description><![CDATA[After years of not jumping onto the blogging scene, I've decided to give it a try.]]></description>
								<content:encoded><![CDATA[<p class="lead">Time to have a web presence, improve my writing skills and share my work. After years of not having my own personal website, I’ve decided to give it a try.</p>

<p>That’s right, as if I didn’t  have enough websites to keep updated, I’ve decided to start my own personal blog in an effort to share some of my thoughts and at the same time try to improve my not so hot writing skills. In addition, this website will serve as a hub for all things me, a place to share all my daily findings, my work, photographs, etc.</p>

<h2>Before You Judge</h2>

<p>I’ve been working on this site for over a year. Shameful, I know, it’s what I get for not setting a deadline. At the end of 2009 I decided I had to get the site up in January of 2010, so here we are. I had to get this out there before another year went by.</p>

<p>The site isn’t 100% complete. There are sections of the site which are unfinished and still need improvement, the markup and CSS will possibly be re-written, so please look at it as a living thing that will be constantly changing as I go.</p>

<p>Stay tuned, it will get interesting around here in the next few months.</p>

<p>In the mean time, have a look around, and if you have any feedback, feel free to <a href="http://neography.com/contact">send me a note</a> or leave a comment below.</p>

<p>Thanks!</p>]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/enter-neography/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
							</item>
		<item>
		<title>Lorem &#038; ipsum sitting in a tree</title>
		<link>http://neography.com/journal/one-pixel-can-save-the-world/</link>
				<comments>http://neography.com/journal/one-pixel-can-save-the-world/#comments</comments>
				<pubDate>Fri, 04 Dec 2009 01:05:46 +0000</pubDate>
		<dc:creator><![CDATA[Alex Giron]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neography.com/?p=6</guid>
				<description><![CDATA[<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>]]></description>
								<content:encoded><![CDATA[<p class="lead">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>

<p>Allentesque metus egestas sit sit accumsan in luctus, id tortor ornare <a href="http://google.com">commodo tincidunt</a> est. netus Praesent ante. Donec facilisis lacus sed, senectus tortor eget volutpat. vitae, Donec Quisque dui eros eleifend elit feugiat malesuada pharetra. egestas. eu porttitor, Aenean facilisis. eget, cursus Mauris ac erat et sit et sit sagittis felis. eu ullamcorper mi habitant et Aliquam faucibus, morbi eros <a href="http://google.com">placerat condimentum</a> egestas amet, ac wisi. vulputate quam, tempus pulvinar libero tristique fames turpis dui.</p>

<h2>Introduction</h2>
<p>Donec pede justo, fringilla vel, aliquet nec, <strong>vulputate eget</strong>, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus.</p>

<ol>
	<li>vulputate eget, arcu</li>
	<li>In enim justo, rhoncus ut</li>
	<li>imperdiet</li>
	<li>venenatis vitae</li>
	<li>Nullam dictum felis eu pede</li>
</ol>

<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>

<h2>Design In The Details</h2>
<p>Quisque dui eros eleifend elit feugiat malesuada pharetra. egestas. eu porttitor, Aenean facilisis. eget, cursus Mauris ac erat et sit et sit sagittis felis. eu ullamcorper mi habitant et Aliquam faucibus, morbi eros <a href="http://google.com">placerat condimentum</a> egestas amet, ac wisi. vulputate quam, tempus pulvinar libero tristique fames turpis dui. neque ultricies Ut enim vitae turpis wisi, enim neque semper. condimentum, Vestibulum orci, rutrum est sapien quam erat. amet, tempor augue, tincidunt mi, ipsum quis, leo. Nam non amet Aenean dapibus, Vestibulum magna vitae, amet ultricies fermentum, eu erat Pellentesque metus egestas sit sit accumsan in luctus, id tortor ornare commodo tincidunt est. netus Praesent ante. Donec facilisis lacus sed, senectus tortor eget volutpat. vitae, Donec </p>

<ul>
	<li>vulputate eget, arcu</li>
	<li>In enim justo, rhoncus ut</li>
	<li>imperdiet</li>
	<li>venenatis vitae</li>
	<li>Nullam dictum felis eu pede</li>
</ul>

<p> Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus.</p>

<p> Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus.</p>]]></content:encoded>
							<wfw:commentRss>http://neography.com/journal/one-pixel-can-save-the-world/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
							</item>
	</channel>
</rss>
