<?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>Geronimo89.dk &#187; education</title>
	<atom:link href="http://geronimo89.dk/category/education/feed/" rel="self" type="application/rss+xml" />
	<link>http://geronimo89.dk</link>
	<description>A blog about me, my doings and everything I think deserves attention.</description>
	<lastBuildDate>Sun, 29 Jan 2012 12:02:21 +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>Specialisation report: AJAX+MVC</title>
		<link>http://geronimo89.dk/2011/11/02/specialisation-report-ajaxmvc/</link>
		<comments>http://geronimo89.dk/2011/11/02/specialisation-report-ajaxmvc/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 17:01:33 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[3rd semester]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Model View Controller]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=2287</guid>
		<description><![CDATA[This is my report for the 3rd semester specialisation at the Nordic Multimedia Academy. My coded twitter clone will be available when I release it for alpha. Computer programming is tremendous fun. Like music, it is a skill that derives from an unknown blend of innate talent and constant practice. Like drawing, it can be [...]]]></description>
			<content:encoded><![CDATA[<p>This is my report for the 3rd semester specialisation at the Nordic Multimedia Academy. My coded twitter clone will be available when I release it for alpha.</p>
<blockquote><p>Computer programming is tremendous fun. Like music, it is a skill that derives from an unknown blend of innate talent and constant practice. Like drawing, it can be shaped to a variety of ends – commercial, artistic, and pure entertainment. Programmers have a well-deserved reputation for working long hours, but are rarely credited with being driven by creative fevers. Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination, but because their imagination reveals worlds that others cannot see.</p></blockquote>
<p>from: Larry O&#8217;Brien and Bruce Eckel in Thinking in C#</p>
<h2>Introduction</h2>
<p>As the leading quote, this objective shall for me use principles that naturally further clean code and to split tasks for easy and fast cooperation and maintenance. To code is not that special nowadays as it was before, but to have a high standard and make your software understandable for others is a progressive trend through social coding and sites like <a href="http://github.com">github.com</a>, <a href="http://jsfiddle.net">jsfiddle.net</a> or <a href="http://cloud9.com">cloud9.com</a>.<br />
Creativity is important for every programmer. To lead this creativity into the right channels, without hindering the workflow, there are architectural guidelines like MVC. It&#8217;s short for Model-View-Controller, which I will explain at a later time.<br />
The user is by now used to, that pages are updated on the fly. New messages on facebook or google+ are shown immediately with red tags on the symbol, corresponding to the type of event. On twitter the timeline shows when and how many new tweets have been published since you&#8217;ve loaded the page. These features are realized through AJAX (Asynchronous JavaScript and XML). In plain English it means that some of the content of a website is exchanged through JavaScript. This makes the communication between server and client asynchronous and often aids better user interaction.</p>
<h2>Model View Controller</h2>
<blockquote><p>Good programmers use their brains, but good guidelines save us having to think out every case.</p></blockquote>
<p>-Francis Glassborow</p>
<p>The MVC architecture divides a program in three different units, that interact with each other in a specific way. These conventions are in the beginning sometimes seen as a little annoying, but I personally swiftly got used to them and appreciate this way of development. One of the most popular MVC frameworks, Ruby on Rails, runs on twitter.com.</p>
<p><img class="alignnone size-full wp-image-2297" title="mvc-01_670" src="http://geronimo89.dk/blog/wp-content/mvc-01_670.png" alt="mvc 01 670 Specialisation report: AJAX+MVC" width="670" height="670" /></p>
<h3>Model</h3>
<p>The Model is the part of the program dealing with data storage, reading and writing data to a database. This can be both table based or document based like Google’s BigTable or the CouchDB.</p>
<h3>View</h3>
<p>A View generates visible output for the user. It&#8217;s used to display information and also elements for interaction with the rest of the program.</p>
<h3>Controller</h3>
<p>As the name already states, the Controller controls the program. A Controller tells the Model which data to get or to write and the Views which to display.</p>
<h2>AJAX</h2>
<p>Asynchronous JavaScript and XML has majorly influenced the way complex online interfaces are built to aid the user in interacting, achieving goals faster and decreasing loading processes.<br />
Retrieving data when needed, instead of re-generating and re-transferring results with every click, saves both bandwidth and time. Since the development time of a software project usually is significantly smaller than the hours spent using it, it makes perfect sense investing time for development to save time and money on use.<br />
AJAX prevents us from hammering the refresh button, when we&#8217;re waiting for an email to arrive and using a webmail interface or show us which users are visiting the websites we are maintaining in realtime (smartly used in piwik).</p>
<h2>Used frameworks</h2>
<blockquote><p>The only people who have anything to fear from free software are those whose products are worth even less.</p></blockquote>
<p>-David Emery</p>
<h3>jQuery</h3>
<p>It&#8217;s the biggest state of the art JavaScript framework today, that is why it is often required by firms and through hundreds of tutorials and a great documentation, very easy to learn.</p>
<h3>CodeIgniter</h3>
<p>As jQuery, CodeIgniter is quite famous. The framework is developed by EllisLab, but everybody can contribute, fix bugs or add features through github. As it simplifies a lot of everyday tasks for developers and provides a strong and clean structure through the MVC architecture it has built a solid reputation through the past years.</p>
<h2>Famous Use Cases</h2>
<p>For me, the two most incredible use-cases of AJAX are the operations you either can&#8217;t or don&#8217;t want to do on the client side, therefore the data is either processed on the server side or just gotten from a database, with checking for authentication and so on.<br />
You could say: AJAX is only for those, who have too much traffic, they only save bandwidth with it. I beg to differ. It can also significantly increase the usability on your website. Waiting is boring and will scare your users away, so you try to give them updates and notifications as quickly and as uncomplicated as possible. The way to do that is AJAX.</p>
<h3>Twitter</h3>
<p>Twitter has quite elegant use of AJAX all over their page. The most obvious may be the new tweets button. When a new tweet appears in a timeline or in search of a tag, there is a little button on top of the page, that indicates when new tweets have been published.</p>
<p><img class="alignnone size-full wp-image-2298" title="1newtweet_670" src="http://geronimo89.dk/blog/wp-content/1newtweet_670.png" alt="1newtweet 670 Specialisation report: AJAX+MVC" width="670" height="356" /></p>
<p><img class="alignnone size-full wp-image-2299" title="1newtweet_expanded_670" src="http://geronimo89.dk/blog/wp-content/1newtweet_expanded_670.png" alt="1newtweet expanded 670 Specialisation report: AJAX+MVC" width="670" height="356" /></p>
<p>￼￼Why not just put them in there? Because users might not like it. Scrolling output is for running processes on Linux machines, that only geeks handle for monitoring.</p>
<p>What else is handled through AJAX, is user profiles. When you scroll through a list, your own timeline or a tag and click somebodies username, the profile is loaded in the right sidebar. Now, let&#8217;s say we have a list of ~100 people and 20 of them have tweeted recently, no profiles are loaded at first. When you click a username, the profile page of the according user appears, showing the recent 3 tweets. By using AJAX you save database (or cache) queries for 60 tweets, statistics for followers, following, amount of tweets and listings for 20. This already sounds like a good deal, right?</p>
<h3>Facebook￼</h3>
<p>You may have noticed, that the small red squares show up when you have new messages, notifications or invitations to events on facebook. I&#8217;ll not go deeper into this, because this is very similar to twitters, just that the updates are put in a small drop-down box, instead of being pushed into the main content area.</p>
<p><a href="http://jonthanmh.com/facebook"><img class="alignnone size-full wp-image-2300" title="fb_notifications_670" src="http://geronimo89.dk/blog/wp-content/fb_notifications_670.png" alt="fb notifications 670 Specialisation report: AJAX+MVC" width="670" height="174" /></a></p>
<p>What I think is more interesting is, that when you reach the bottom of a timeline, new content is loaded automatically.</p>
<p>By chopping the informations displayed into smaller chunks and loading them along the way your benefits by using it are:<br />
- less processing time on the server<br />
- less bandwidth consumption<br />
- less rendering time, because less information has to be processed by your browser</p>
<h2>MVC</h2>
<p>The Model View Controller architecture is used in the aspiring Ruby On Rails framework, which is used by for example Google, Twitter, amazon.com, Yahoo! and BBC. One of the most common PHP frameworks in that category is CodeIgniter which is used to power modelportalen.dk.<br />
If we look at the projects, their services are not the most simple to provide. The characteristics they share are heavy workload, the user expect them to have a high uptime and without errors at any given time. Also neither the maintenance nor the development of the above mentioned is a one-man show.</p>
<h3>How does MVC contribute to a collaborative development process?</h3>
<p>MVC does more than splitting the jobs into three parts. Current version control systems do more than just to check if a file has been changed. It automatically merges the newest lines together, and only if one line has the same line changed in two different ways, manual work has actually to be done.<br />
With an MVC architecture you would naturally divide your workload into two teams. The web designers / frontend developers would work on the Views, where the developers would stick to the controllers and models. Of course, many others are possible and complex projects require more planning, but it&#8217;s already easier and faster, than to hardcode output or write an extensive backend system for placing elements.<br />
Wordpress, in contrast, is a fully featured CMS, so the comparison might sound a little misplaced, but adding functionality to a website that is powered by WordPress usually happens through plugins and modifying the functions.php file within the theme folder. This offers a lot less flexibility to development team, than the above mentioned division.</p>
<h2>AJAX login example</h2>
<p>To start without combining the MVC and AJAX right away, this is a simple login form test in AJAX.</p>
<p>index.html</p>
<pre class="brush: xml; title: ; notranslate">

		AJAX login form

&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.5.1.min.js&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;js/ajaxlogin.js&quot;&gt;&lt;/script&gt;
&lt;/pre&gt;
&lt;form id=&quot;login_form&quot; method=&quot;post&quot;&gt;
User: &lt;input id=&quot;username&quot; type=&quot;text&quot; /&gt;

Password: &lt;input id=&quot;password&quot; type=&quot;password&quot; /&gt;

&lt;input type=&quot;submit&quot; value=&quot;Login&quot; /&gt;&lt;/form&gt;
&lt;pre&gt;
</pre>
<p>The only AJAX specific thing here, is the empty div at the bottom of the page and of course the included script files. The status div will be used to insert the information that the script gives back upon a users login attempt.<br />
ajaxlogin.js</p>
<pre class="brush: jscript; title: ; notranslate"> jQuery(document).ready(function(){
	$('#login_form').submit(function(){
		var unameval = $('#username').val();
		var pwval = $('#password').val();
		$.post('backend.php', { username: unameval, password: pwval },
		function(data){
			$('#status p').html(data);
		});
		return false;
	});
});
</pre>
<p>This is a straight forward post request, which returns the targeted scripts output and inserts it into the paragraph in the div with the id status. The return false prevents the submit button from actually doing something, because the JavaScript handles it already.</p>
<p>backend.php</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
$username = $_POST['username'];
$password = $_POST['password'];

if ($username == 'Zuka' &amp;&amp; $password == 'sukinsins'){
	print'Like a boss';
}
else {
	print'Y U FAIL AT LOGIN?';
}
</pre>
<p>Here we see a contrast to an MVC attempt, as this just is a dummy php file doing the checking, it&#8217;s okay to user print and echo, which you would not do in an MVC application, you would load a View.</p>
<h2>How does AJAX change the work of a programmer?</h2>
<blockquote><p>Controlling complexity is the essence of computer programming.</p></blockquote>
<p>-Brian Kernigan</p>
<p>AJAX changes the way of writing a web project and takes it to a little higher level. First of all, you have to make a decision if your project should be usable without JavaScript enabled (web crawlers usually don&#8217;t interpret JavaScript). That means that information should be available through alternative hard links, when JavaScript is not used.<br />
Second, you have to keep elements on the same page very modular and easily accessible in the DOM. That sometimes means more encapsulating elements and also writing scripts that only output specific parts of the page, the ones that either are loaded later on or refreshed in page during a visit.<br />
Third, you will write a whole lot JavaScript more than usual and have to take into account that you may need to re-write some parts of the JavaScript upon style changes, to keep the project consistent.<br />
Furthermore you may have to make some changes and process some of the JavaScript through PHP to use variables, constants or other server-side scripting features in your client-side code.<br />
An important thing to remember is to decide if content should be exchanged or refreshed seamlessly or if it should be clarified that something has changed on the site. Loading graphics can be essential to show the uneducated user, that something actually is happening. This can prevent confusion because the communication with the server is visualized. Also error messages upon fail are essential for AJAX powered pages:</p>
<p><img class="alignnone size-full wp-image-2301" title="fb_ajax_error" src="http://geronimo89.dk/blog/wp-content/fb_ajax_error.png" alt="fb ajax error Specialisation report: AJAX+MVC" width="605" height="70" /></p>
<h2>How does MVC change the work of a programmer?</h2>
<p>This is more up to the programmer how he/she adapts it. Also how extensively the division into the three parts is undertaken. Basically you CAN make some calculations on output in the View, but you shouldn&#8217;t. Also you should not make a Controller output Data directly, around a View, but make it a variable in a View. Data should be ready for display when they leave the Controller.<br />
The really big advantage of working with MVC is the teamwork. The requirements to the individual parts can be very specific, so misunderstandings can be minimized.<br />
When pulling off a project with, for example, a designer and a developer, the designer can send his requirements for the pages in a list and the developer makes sure these data sets are included when the View is loaded, so it can be ordered and styled in the output. This way the two can work both on what they&#8217;re best at.</p>
<h2>Conclusion</h2>
<p>Both using a solid architecture and enhancing user experience through faster interaction is something you have to take care of, to create competitive web projects.<br />
In the paper above I&#8217;ve pointed out what is so helpful about the technologies mentioned and why I use them.</p>
<h2>Sources</h2>
<ul>
<li>common sense (whatever that might refer to in our times)</li>
<li><a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller">http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller</a></li>
<li><a href="http://codeigniter.com">http://codeigniter.com</a></li>
<li><a href="http://jquery.com">http://jquery.com</a></li>
<li><a href="http://en.wikipedia.org/wiki/AJAX">http://en.wikipedia.org/wiki/AJAX</a></li>
<li><a href="http://twitter.com">http://twitter.com</a></li>
<li><a href="http://facebook.com">http://facebook.com</a></li>
</ul>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/08/29/little-web-clock/" rel="bookmark" class="crp_title">little web clock</a></li><li><a href="http://geronimo89.dk/2011/04/30/codeigniter-my-personal-ignition/" rel="bookmark" class="crp_title">CodeIgniter, my personal ignition</a></li><li><a href="http://geronimo89.dk/2008/06/08/flexible-dice/" rel="bookmark" class="crp_title">flexible dice</a></li><li><a href="http://geronimo89.dk/2010/05/12/batch-editing-html-files/" rel="bookmark" class="crp_title">Batch editing html or text files</a></li><li><a href="http://geronimo89.dk/2010/04/28/google-summer-of-code-2010/" rel="bookmark" class="crp_title">Google Summer of Code 2010</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/11/02/specialisation-report-ajaxmvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What should my specialism be?</title>
		<link>http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/</link>
		<comments>http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 14:40:38 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[specialism]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=2265</guid>
		<description><![CDATA[At NoMA we can choose what we want to specialise in. We have four weeks to dive into that topic and we have teachers support if we want it. I&#8217;m right now trying to figure out what I want to do. Any help is appreciated (please comment). I&#8217;d love to combine these weeks with either [...]]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://noma.nu">NoMA</a> we can choose what we want to specialise in. We have four weeks to dive into that topic and we have teachers support if we want it. I&#8217;m right now trying to figure out what I want to do. Any help is appreciated <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink What should my specialism be?" class='wp-smiley' title="What should my specialism be?" />  (please comment). I&#8217;d love to combine these weeks with either contributing code to an open source project or launching a free service, module or theme.</p>
<p>Here is a list of things I&#8217;d like to do during these weeks:</p>
<ol>
<li>(WordPress) code my first Plugin</li>
<li>(WordPress) code an awesome theme, public domain</li>
<li>(Drupal) write a module or fix bugs in some</li>
<li>(CodeIgniter/Active Records) create pastebin-like service (for translations)</li>
<li>(Diaspora) make improvements to the user interface</li>
<li>(social media) set goals and reach them with 2-3 facebook pages and 2-3 twitter accounts</li>
<li>(nothing) Not doing any of this, handing in a finished project and working on my firm instead</li>
<li>(video) make some motion graphics (maybe mixed with some real footage)</li>
<li>(music) finish writing my first album, teaming up with people for vocals and music and produce it</li>
<li>(photography) make some awesome online presentation web-code</li>
</ol>
<div>What do you thing?</div>
<div>EDIT: added a few points</div>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/11/08/so-many-projects/" rel="bookmark" class="crp_title">so many projects</a></li><li><a href="http://geronimo89.dk/2011/09/24/a-good-moon-rising/" rel="bookmark" class="crp_title">a good moon rising</a></li><li><a href="http://geronimo89.dk/2010/12/04/stealing-code-the-right-way/" rel="bookmark" class="crp_title">Protected: stealing code the right way</a></li><li><a href="http://geronimo89.dk/2011/11/15/freakish-due-until-friday-deadlines/" rel="bookmark" class="crp_title">Freakish due until Friday deadlines</a></li><li><a href="http://geronimo89.dk/2011/05/07/not-dead-just-working/" rel="bookmark" class="crp_title">Not dead, just working</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>a good moon rising</title>
		<link>http://geronimo89.dk/2011/09/24/a-good-moon-rising/</link>
		<comments>http://geronimo89.dk/2011/09/24/a-good-moon-rising/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 14:34:57 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[geek tool]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=2252</guid>
		<description><![CDATA[Currently a lot is happening, so I also have more to blog about. I&#8217;m trying to keep things from piling up, which isn&#8217;t easy at the moment. I&#8217;m on some interesting projects and the MeRox website has relaunched! The design (which I have not yet implemented in all its details) was made by Eduards Balodis. [...]]]></description>
			<content:encoded><![CDATA[<p>Currently a lot is happening, so I also have more to blog about. I&#8217;m trying to keep things from piling up, which isn&#8217;t easy at the moment. I&#8217;m on some interesting projects and the <a href="http://merox.dk">MeRox website</a> has relaunched! The design (which I have not yet implemented in all its details) was made by <a href="http://iamed.co.cc">Eduards Balodis</a>. The WordPress theme is done by me and it was fun doing it. Furthermore my own business is coming up, so I will have tons of stuff to blog about, when I&#8217;m waiting for finished projects to upload <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink a good moon rising" class='wp-smiley' title="a good moon rising" />  I can&#8217;t tell too much yet, but one of the future projects will probably be based on <a href="http://drupal.org">drupal</a>, which I&#8217;m very much looking forward too. I&#8217;ve gotten quite a nice peek at it, realising my <a href="http://jonathanmh.com">portfolio</a> with it already. Apart from that on my to-do list:</p>
<ul>
<li>a little long term photo project, nothing fancy, but still a personal project, I&#8217;d like to do</li>
<li>updating my portfolio, changing informational hierarchy, summing things up for people without much time on their hands, presenting my most interesting cases</li>
<li>running more twitter accounts, I&#8217;ll probably be partly in charge of 1-2 more (social media geekery)</li>
<li>write tutorial about my Adobe After Effects + Adobe Premiere Workflow like I used it in <a title="Video experience" href="http://geronimo89.dk/2011/09/09/video-experience/">my last video</a></li>
<li>shoot worlds larget catwalk as a photographer</li>
<li>portrait shooting coming up</li>
<li>compile and submit some playlists (music is a social thing, you know?)</li>
</ul>
<p>To lift this post a little to a visual level, here&#8217;s a screenshot of my MacOS desktop right now. Picture was shot on the way to Latvia and the nice time and date display is made with <a href="http://projects.tynsoe.org/en/geektool/">geek tool</a> <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink a good moon rising" class='wp-smiley' title="a good moon rising" /> </p>
<p><img class="alignnone size-full wp-image-2254" title="my_desk" src="http://geronimo89.dk/blog/wp-content/my_desk.png" alt="my desk a good moon rising" width="670" height="419" /></p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/06/01/updates-on-decreasing-to-do-list/" rel="bookmark" class="crp_title">Updates on decreasing to do list</a></li><li><a href="http://geronimo89.dk/2011/05/28/how-to-twitter-day-2-why/" rel="bookmark" class="crp_title">How to Twitter: Day #2 Why?</a></li><li><a href="http://geronimo89.dk/2011/08/28/endsummer/" rel="bookmark" class="crp_title">end($summer)</a></li><li><a href="http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/" rel="bookmark" class="crp_title">What should my specialism be?</a></li><li><a href="http://geronimo89.dk/2011/08/13/status-august-13th-2011/" rel="bookmark" class="crp_title">Status August 13th 2011</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/09/24/a-good-moon-rising/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Video experience</title>
		<link>http://geronimo89.dk/2011/09/09/video-experience/</link>
		<comments>http://geronimo89.dk/2011/09/09/video-experience/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 20:17:02 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[David Fratto]]></category>
		<category><![CDATA[NoMA film festival]]></category>
		<category><![CDATA[video project]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=2227</guid>
		<description><![CDATA[You know when they say there is nothing more important than experience? That&#8217;s so true. Trying to shoot video with three very inexperienced people is a lot of fun and I think in the end our bloopers folder is going to be a lot bigger than the actual footage that is going to be used. [...]]]></description>
			<content:encoded><![CDATA[<p>You know when they say there is nothing more important than experience? That&#8217;s so true. Trying to shoot video with three very inexperienced people is a lot of fun and I think in the end our bloopers folder is going to be a lot bigger than the actual footage that is going to be used. That&#8217;s not a big deal, considering the video is going to be 30-60 seconds and we shot for several hours. Well, preparation, white-balance and similar practical elements of the shoot were consuming more time than the actual filming, because I went for a very fast cutting style. Luckily <a href="http://trondjk.dk">Trond</a> with his keen eye and <a href="http://kclausen.dk">Kenneth</a> with his endless pragmatic mindset were there to accompany me, watch me fail and gather some footage.</p>
<p>The other video shoots were not going that smoothly, but delivered good footage in the end and they also were a lot of fun.<br />
The most advanced light setup had Kenneth, with a silhouette flashing lamp, a dark room that first gets lit up when the second actor enters the room. For the lamps used a bunch of thanks to Ragno/Mette from <a href="http://merox.dk">MeRox Studio</a>.</p>
<p>To sum up the shoots I was involved in:<br />
- jumped into one that lasted half the night with very experimental lightning and from these hours only a time-lapse of by passing cars was used.<br />
- played the evil nature polluting guy, wearing my top hat + voice over in <a href="http://www.youtube.com/watch?v=KFXaLoywUgg">Adinas video</a><br />
- handled lightning and camera angles at <a href="http://www.youtube.com/watch?v=Kq4ompkyPt0&amp;feature=BFa&amp;list=PLD9ABBA01ED5F18D6">Kenneths</a> primary shoot<br />
- played the shizophrenic guy in <a href="http://www.youtube.com/watch?v=lam3_nBCPA8&amp;list=PLD9ABBA01ED5F18D6&amp;index=27">Tronds video</a><br />
- played a freezing guy and a guy that gets stroked and scratched in <a href="http://www.youtube.com/watch?v=OljFfaXzAsE&amp;list=PLD9ABBA01ED5F18D6&amp;index=1">Tanitas video</a></p>
<p>Thanks to my girlfriend without whom this project would not have risen at all, also thanks to everybody who supported me, gave me input and tought me about the used software, without this had never been possible.</p>
<p>Finally yesterday the NoMA film festival was hosted and I want to thank everybody who made it possible, helped out, made print-material and helped others to finish their videos. It was a blast.</p>
<p>So after all the talking, here my video is:</p>
<div class="iframe-wrapper">
  <iframe src="http://player.vimeo.com/video/28830983" frameborder="0" style="height:377px;width:670px;">Please upgrade your browser</iframe>
</div>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/09/23/noma-film-festival-2011-fall-favourites/" rel="bookmark" class="crp_title">noma film festival 2011 fall favourites</a></li><li><a href="http://geronimo89.dk/2011/04/29/friday-feature-3-angeline-gragasin/" rel="bookmark" class="crp_title">Friday Feature #3: Angeline Gragasin</a></li><li><a href="http://geronimo89.dk/2007/09/19/student-tasered-for-asking-question/" rel="bookmark" class="crp_title">student tasered for asking question</a></li><li><a href="http://geronimo89.dk/2011/02/05/pretty-video-hosting-vimeo/" rel="bookmark" class="crp_title">pretty video hosting: vimeo</a></li><li><a href="http://geronimo89.dk/2011/09/24/a-good-moon-rising/" rel="bookmark" class="crp_title">a good moon rising</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/09/09/video-experience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>David Fratto at NoMA day 2</title>
		<link>http://geronimo89.dk/2011/08/30/david-fratto-at-noma-day-2/</link>
		<comments>http://geronimo89.dk/2011/08/30/david-fratto-at-noma-day-2/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 16:44:55 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[David Fratto]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=2224</guid>
		<description><![CDATA[Here my notes for today: Shooting Interviews shooting two people -&#62; equal headroom, equal lookspace choose interesting background, out of focus Talking to camera-&#62; direct, reporter Talking slightly off camera -&#62; indirect Make the interviewed feel comfortable, ask easy questions until they are. If questions are extracted from footage, ask them to incorporate the question. [...]]]></description>
			<content:encoded><![CDATA[<p>Here my notes for today:</p>
<h3>Shooting Interviews</h3>
<p>shooting two people -&gt; equal headroom, equal lookspace</p>
<p>choose interesting background, out of focus</p>
<p>Talking to camera-&gt; direct, reporter<br />
Talking slightly off camera -&gt; indirect</p>
<p>Make the interviewed feel comfortable, ask easy questions until they are.</p>
<p>If questions are extracted from footage, ask them to incorporate the question.</p>
<h3>Editing:</h3>
<p>3 way colour correction:</p>
<p>- make sure fleshtones look natural unless desired otherwise by context</p>
<p>audio gain:<br />
- control volume</p>
<p>adjust speed<br />
- slow motion (intensify moments)</p>
<p>Tips on storyboarding:</p>
<p>note camera movement and sketch objects/characters<br />
think about POV, perspective, blur</p>
<h3>Vocabulary of today:</h3>
<ul>
<li>POV = point of view</li>
<li>DOF = depth of field</li>
</ul>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/08/29/summary-of-day-one-with-david-fratto-at-noma/" rel="bookmark" class="crp_title">Summary of day one with David Fratto at NoMA</a></li><li><a href="http://geronimo89.dk/2012/01/28/more-gear-more-pictures/" rel="bookmark" class="crp_title">More gear, more pictures</a></li><li><a href="http://geronimo89.dk/2010/08/29/shooting-in-the-rain/" rel="bookmark" class="crp_title">shooting in the rain</a></li><li><a href="http://geronimo89.dk/2011/05/27/how-to-twitter-day-1-vocabulary-2/" rel="bookmark" class="crp_title">How to Twitter: Day #1 Vocabulary</a></li><li><a href="http://geronimo89.dk/2011/04/29/friday-feature-3-angeline-gragasin/" rel="bookmark" class="crp_title">Friday Feature #3: Angeline Gragasin</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/08/30/david-fratto-at-noma-day-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New NoMA website</title>
		<link>http://geronimo89.dk/2011/04/12/new-noma-website/</link>
		<comments>http://geronimo89.dk/2011/04/12/new-noma-website/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 08:01:43 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[webcritic]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1944</guid>
		<description><![CDATA[I really appreciate, that my academy is remaking the website, anyways, there is room for improvement in following areas: design consistency semantics readability Design Consistency: In the menu on the left, there are rounded boxes and dropshadows, nowhere else, the background image varies for widget boxes on the right and the overall background. The style [...]]]></description>
			<content:encoded><![CDATA[<p>I really appreciate, that <a href="http://noma.nu">my academy</a> is remaking the website, anyways, there is room for improvement in following areas:</p>
<ol>
<li>design consistency</li>
<li>semantics</li>
<li>readability</li>
</ol>
<h3>Design Consistency:</h3>
<p>In the menu on the left, there are rounded boxes and dropshadows, nowhere else, the background image varies for widget boxes on the right and the overall background. The style of the icons (compare top right to social media) and also the headlines to the right vary a lot. Some of them are type, some are images.</p>
<h3>Semantics:</h3>
<p>The whole left main navigation is one picture. It is not optimizeable for search engines and uses an image map. No HTML5 elements are used at all, which would also improve machine readability. Headlines are not in &lt;h1&gt; to &lt;h6&gt; tags.</p>
<h3>Readabilty:</h3>
<p>The font for the headlines is very thick and not easy to read, especially not when it gets below 30px. In the lower corner there is even some &#8220;webfont&#8221; logo, I recommend checking out <a href="http://fontsquirrel.com">fontsquirrel.com</a>. The background image is very noisy and too intense for good readability.</p>
<h3>Conclusion:</h3>
<p>I&#8217;m not mad about that my portfolio is not featured, I just point out the things that really struck me. I hope my critique is perceived in the respectful way it is meant to be.</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/27/free-fonts-and-free-knowledge-about-them/" rel="bookmark" class="crp_title">Free Fonts and Free Knowledge about them</a></li><li><a href="http://geronimo89.dk/2011/03/04/html5-workshop/" rel="bookmark" class="crp_title">HTML5 Workshop</a></li><li><a href="http://geronimo89.dk/2008/08/27/css-box-with-graphic-borders/" rel="bookmark" class="crp_title">CSS box, with graphic borders</a></li><li><a href="http://geronimo89.dk/2011/12/06/that-guy-on-the-bus/" rel="bookmark" class="crp_title">That guy on the bus</a></li><li><a href="http://geronimo89.dk/2010/08/29/little-web-clock/" rel="bookmark" class="crp_title">little web clock</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/04/12/new-noma-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Visiting Lego in Billund</title>
		<link>http://geronimo89.dk/2011/04/06/visiting-lego-in-billund/</link>
		<comments>http://geronimo89.dk/2011/04/06/visiting-lego-in-billund/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 21:45:11 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Lego]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1941</guid>
		<description><![CDATA[The visit at Lego was really interesting and informative. We heard about the history, were given an insight how Lego is trying to expand and keep up with new media and heard about the web development team. Plus we got to play with the Lego bricks! Visiting the machinery that build toys of my childhood [...]]]></description>
			<content:encoded><![CDATA[<p>The visit at Lego was really interesting and informative. We heard about the history, were given an insight how Lego is trying to expand and keep up with new media and heard about the web development team. Plus we got to play with the Lego bricks! Visiting the machinery that build toys of my childhood was also a huge moment, to see the degree of automisation and look at the small figures that were brought alive by my phantasies these years ago.</p>
<p>Okay, here you go, photos: (notice the Lego logo out of small Lego figures <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Visiting Lego in Billund" class='wp-smiley' title="Visiting Lego in Billund" /> )</p>

<div class="ngg-galleryoverview" id="ngg-gallery-16-1941">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-145" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://geronimo89.dk/blog/wp-content/gallery/2011-04-06-lego/img_7013_smaller.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="img_7013_smaller" alt="thumbs img 7013 smaller Visiting Lego in Billund" src="http://geronimo89.dk/blog/wp-content/gallery/2011-04-06-lego/thumbs/thumbs_img_7013_smaller.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-146" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://geronimo89.dk/blog/wp-content/gallery/2011-04-06-lego/img_7027_smaller.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="img_7027_smaller" alt="thumbs img 7027 smaller Visiting Lego in Billund" src="http://geronimo89.dk/blog/wp-content/gallery/2011-04-06-lego/thumbs/thumbs_img_7027_smaller.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-147" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://geronimo89.dk/blog/wp-content/gallery/2011-04-06-lego/img_7033_smaller.jpg" title=" " class="thickbox" rel="set_16" >
								<img title="img_7033_smaller" alt="thumbs img 7033 smaller Visiting Lego in Billund" src="http://geronimo89.dk/blog/wp-content/gallery/2011-04-06-lego/thumbs/thumbs_img_7033_smaller.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2008/06/15/holy-crap/" rel="bookmark" class="crp_title">Holy crap!</a></li><li><a href="http://geronimo89.dk/2006/10/14/8/" rel="bookmark" class="crp_title">autumn holiday</a></li><li><a href="http://geronimo89.dk/2006/09/03/busyness/" rel="bookmark" class="crp_title">busyness</a></li><li><a href="http://geronimo89.dk/2010/05/28/i-still-love-spambots/" rel="bookmark" class="crp_title">I still love spambots</a></li><li><a href="http://geronimo89.dk/2008/10/05/lxde-lightweight-and-sexy/" rel="bookmark" class="crp_title">LXDE, lightweight and sexy</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/04/06/visiting-lego-in-billund/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>NoMA Real Life Feedback</title>
		<link>http://geronimo89.dk/2011/03/23/noma-real-life-feedback/</link>
		<comments>http://geronimo89.dk/2011/03/23/noma-real-life-feedback/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 20:41:47 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[real life]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1933</guid>
		<description><![CDATA[The presentations were of very mixed quality. Most firms were well prepared, some minor glitches occured. Some set very strict guidelines and gave us a concept that made us all howl to the gods of good design and beg for burning sulfur and lightning. There was not even time for evaluating the different objectives, because [...]]]></description>
			<content:encoded><![CDATA[<p>The presentations were of very mixed quality. Most firms were well prepared, some minor glitches occured. Some set very strict guidelines and gave us a concept that made us all howl to the gods of good design and beg for burning sulfur and lightning.</p>
<p>There was not even time for evaluating the different objectives, because the application lists were up all the time and limited, so some projects were filled up almost immediatly. When we argued, that we couldn&#8217;t even listen to all companies and consider we got a plain: &#8220;Yes, you can.&#8221;, from one of teachers. We argued: &#8220;But what about $project_X?&#8221; and got: &#8220;Oh you can&#8217;t take that.&#8221;. We were very puzzled by that.<br />
One of the customers changed the deadline of a sub-task to a week before deadling (which is a lot, considering we were given 14 days) and that is just not a very nice treatment of people who are trying to deliver some results that are worth being in their portfolios.<br />
Should we get used to incoherent informations from customers right away? <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink NoMA Real Life Feedback" class='wp-smiley' title="NoMA Real Life Feedback" /><br />
Apart from the changing demands and information it&#8217;s been a good real life project so far though, but there&#8217;s always room for improvement <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink NoMA Real Life Feedback" class='wp-smiley' title="NoMA Real Life Feedback" /> </p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/09/09/video-experience/" rel="bookmark" class="crp_title">Video experience</a></li><li><a href="http://geronimo89.dk/2011/09/24/a-good-moon-rising/" rel="bookmark" class="crp_title">a good moon rising</a></li><li><a href="http://geronimo89.dk/2011/02/05/pretty-video-hosting-vimeo/" rel="bookmark" class="crp_title">pretty video hosting: vimeo</a></li><li><a href="http://geronimo89.dk/2010/08/24/looking-ahead/" rel="bookmark" class="crp_title">Looking ahead</a></li><li><a href="http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/" rel="bookmark" class="crp_title">What should my specialism be?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/03/23/noma-real-life-feedback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Surveillance of students</title>
		<link>http://geronimo89.dk/2011/03/17/surveillance-of-students/</link>
		<comments>http://geronimo89.dk/2011/03/17/surveillance-of-students/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 23:03:05 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1924</guid>
		<description><![CDATA[As mentioned before I&#8217;m studying at NoMA and recently one of my teachers literally bragged about, that they could see, who accesses which documents on our online ressource for material: fronter.com. I see this as a violation of my privacy, because I just could have copied documents from another student and it is really nobodies [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned before I&#8217;m studying at <a href="http://noma.nu">NoMA</a> and recently one of my teachers literally bragged about, that they could see, who accesses which documents on our online ressource for material: <a href="http://fronter.com">fronter.com</a>.</p>
<p>I see this as a violation of my privacy, because I just could have copied documents from another student and it is really nobodies business when I download which document. I refuse to use the service until this catastrophic state is removed. I was not informed about this, when I signed up for the service, which is an abuse of my trust.</p>
<p>Share this entry if you agree.</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/" rel="bookmark" class="crp_title">What should my specialism be?</a></li><li><a href="http://geronimo89.dk/2010/08/30/day-1-noma/" rel="bookmark" class="crp_title">Day 1 @ NoMA</a></li><li><a href="http://geronimo89.dk/2011/12/06/a-year-ago/" rel="bookmark" class="crp_title">A year ago</a></li><li><a href="http://geronimo89.dk/2010/03/27/document-freedom-day/" rel="bookmark" class="crp_title">Document Freedom Day</a></li><li><a href="http://geronimo89.dk/2011/08/24/need-for-progress/" rel="bookmark" class="crp_title">need for progress</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/03/17/surveillance-of-students/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HTML5 Workshop</title>
		<link>http://geronimo89.dk/2011/03/04/html5-workshop/</link>
		<comments>http://geronimo89.dk/2011/03/04/html5-workshop/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 16:09:31 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[hgroup]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Jeremy Keith]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[semantic]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1905</guid>
		<description><![CDATA[Monday and Tuesday we had some great lessons with our external teacher Jeremy Keith from clear left. He stripped the lessons down to the changes in elements and semantics of the web and specifically HTML5. We did some exercises on document outlines and how &#60;section&#62; and &#60;hgroup&#62; influence them. Also the theories behind HTML5 as a living [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://www.w3.org/html/logo/downloads/HTML5_Logo_128.png" alt="HTML5 Logo 128 HTML5 Workshop" width="128" height="128" title="HTML5 Workshop" /><br />
Monday and Tuesday we had some great lessons with our external teacher <a href="http://clearleft.com/is/jeremykeith/">Jeremy Keith</a> from <a href="http://clearleft.com/">clear left</a>. He stripped the lessons down to the changes in elements and semantics of the web and specifically HTML5.</p>
<p>We did some exercises on document outlines and how &lt;section&gt; and &lt;hgroup&gt; influence them. Also the theories behind HTML5 as a living standard (as proposed by the <a href="http://www.whatwg.org/">whatWG</a> and HTML5 as a standard as formerly shaped by the <a href="http://www.w3.org/">w3c</a> were discussed. We had a complete workshop how to use HTML5 with its new semantics right now and how to provide complete backward compability.</p>
<p>I&#8217;ll get into that in another post, because my time-shedule is a little tight right now.</p>
<p>Thank you very much Jeremy for clarifying and also taking a look at our portfolios for improvement!</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/02/03/first-animation-trials/" rel="bookmark" class="crp_title">first animation trials</a></li><li><a href="http://geronimo89.dk/2011/04/12/new-noma-website/" rel="bookmark" class="crp_title">New NoMA website</a></li><li><a href="http://geronimo89.dk/2010/09/14/adobe-likes-html5-and-svg/" rel="bookmark" class="crp_title">Adobe likes HTML5 and SVG</a></li><li><a href="http://geronimo89.dk/2010/06/27/html5-browsertest-und-demos/" rel="bookmark" class="crp_title">HTML5, Browsertest und Demos</a></li><li><a href="http://geronimo89.dk/2010/08/24/looking-ahead/" rel="bookmark" class="crp_title">Looking ahead</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/03/04/html5-workshop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Corona commercial project</title>
		<link>http://geronimo89.dk/2011/02/14/corona-commercial-project/</link>
		<comments>http://geronimo89.dk/2011/02/14/corona-commercial-project/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 10:54:31 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Corona]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1899</guid>
		<description><![CDATA[At NoMA we this week are assigned to create an animated commercial for Corona. The clip will be 30-60 seconds and surely uploaded to my portfolio Following a little compilation of Corona TV commercials. Related Posts:Danceable musicArtificial beautificationMMORPGs social componentDurian project trailer out!Lust und Laster]]></description>
			<content:encoded><![CDATA[<p>At NoMA we this week are assigned to create an animated commercial for <a href="http://www.corona.com/">Corona</a>. The clip will be 30-60 seconds and surely uploaded to my portfolio <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Corona commercial project" class='wp-smiley' title="Corona commercial project" /> </p>
<p>Following a little compilation of Corona TV commercials.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="480" 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://www.youtube.com/v/XToHkp3mVZ8?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="480" src="http://www.youtube.com/v/XToHkp3mVZ8?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/03/26/danceable-music/" rel="bookmark" class="crp_title">Danceable music</a></li><li><a href="http://geronimo89.dk/2010/05/14/artificial-beautification/" rel="bookmark" class="crp_title">Artificial beautification</a></li><li><a href="http://geronimo89.dk/2010/09/10/mmorpgs-social-component/" rel="bookmark" class="crp_title">MMORPGs social component</a></li><li><a href="http://geronimo89.dk/2010/05/17/durian-project-trailer-out/" rel="bookmark" class="crp_title">Durian project trailer out!</a></li><li><a href="http://geronimo89.dk/2010/05/03/lust-und-laster/" rel="bookmark" class="crp_title">Lust und Laster</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/02/14/corona-commercial-project/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>first animation trials</title>
		<link>http://geronimo89.dk/2011/02/03/first-animation-trials/</link>
		<comments>http://geronimo89.dk/2011/02/03/first-animation-trials/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 13:07:28 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[After Effects]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[Tequila]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1838</guid>
		<description><![CDATA[As promised I&#8217;ll show my first trials on the field of animation now. The first was an assignment for school, the second is just what happens when you go out to have a drink with me. [vimeo clip_id="19363030" width="570" height="314" html5="1"] (If your browser does not support html5 video, try the direct link) This was [...]]]></description>
			<content:encoded><![CDATA[<p>As promised I&#8217;ll show my first trials on the field of animation now. The first was an assignment for school, the second is just what happens when you go out to have a drink with me. <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink first animation trials" class='wp-smiley' title="first animation trials" /> </p>
<p>[vimeo clip_id="19363030" width="570" height="314" html5="1"]<br />
(If your browser does not support <a href="http://www.html5video.org/">html5 video</a>, try the direct link)</p>
<p>This was my first assignment at school, it was only supposed to be 10 seconds, but I wanted to try to play with the sound effects a little.</p>
<p>[vimeo clip_id="19519089" width="570" height="314" html5="1"]<br />
(If your browser does not support <a href="http://www.html5video.org/">html5 video</a>, try the direct link)</p>
<p>In this I wanted to time the different still images according to the music, please tell me if I failed <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink first animation trials" class='wp-smiley' title="first animation trials" /> </p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/02/05/pretty-video-hosting-vimeo/" rel="bookmark" class="crp_title">pretty video hosting: vimeo</a></li><li><a href="http://geronimo89.dk/2011/03/04/html5-workshop/" rel="bookmark" class="crp_title">HTML5 Workshop</a></li><li><a href="http://geronimo89.dk/2009/03/22/the-origin/" rel="bookmark" class="crp_title">the origin</a></li><li><a href="http://geronimo89.dk/2011/01/25/more-motion-in-my-design/" rel="bookmark" class="crp_title">more motion in my design</a></li><li><a href="http://geronimo89.dk/2011/04/29/friday-feature-3-angeline-gragasin/" rel="bookmark" class="crp_title">Friday Feature #3: Angeline Gragasin</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/02/03/first-animation-trials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>more motion in my design</title>
		<link>http://geronimo89.dk/2011/01/25/more-motion-in-my-design/</link>
		<comments>http://geronimo89.dk/2011/01/25/more-motion-in-my-design/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 13:07:14 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[After Effects]]></category>
		<category><![CDATA[showreel]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1832</guid>
		<description><![CDATA[I&#8217;ve started on working with Adobe After Effects and I have some interesting ideas I want to bring to life. As mentioned on my twitter account, I have seen a couple of showreels on cromoart.de which really got me and showed me once again what I can do in the future. One of the showreels [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1833" title="after effects" src="http://geronimo89.dk/blog/wp-content/after-effects.png" alt="after effects more motion in my design" width="385" height="229" /></p>
<p>I&#8217;ve started on working with Adobe After Effects and I have some interesting ideas I want to bring to life. As mentioned <a href="http://twitter.com/#!/geronimo89">on my twitter account</a>, I have seen a couple of showreels on <a href="http://www.cromoart.de/wordpress/2011/01/21-inspiring-showreels/">cromoart.de</a> which really got me and showed me once again what I can do in the future.</p>
<p>One of the showreels featured on the site above I&#8217;ll link here so you get a little blood on your teeth <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink more motion in my design" class='wp-smiley' title="more motion in my design" /><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="300" 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://vimeo.com/moogaloop.swf?clip_id=8260129&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="600" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=8260129&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/8260129">North Kingdom Showreel 2009</a> from <a href="http://vimeo.com/user2679116">Designchapel</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/05/14/your-choice/" rel="bookmark" class="crp_title">Your choice</a></li><li><a href="http://geronimo89.dk/2010/07/05/japan-a-time-lapse-fairytale/" rel="bookmark" class="crp_title">Japan, a time lapse fairytale</a></li><li><a href="http://geronimo89.dk/2010/05/17/berlin-ein-kurzes-portrait/" rel="bookmark" class="crp_title">Berlin, ein kurzes Portrait</a></li><li><a href="http://geronimo89.dk/2009/03/22/the-origin/" rel="bookmark" class="crp_title">the origin</a></li><li><a href="http://geronimo89.dk/2011/01/21/friday-feature-konstantin-alexandroff/" rel="bookmark" class="crp_title">Friday Feature: Konstantin Alexandroff</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2011/01/25/more-motion-in-my-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my portfolio and report</title>
		<link>http://geronimo89.dk/2010/12/20/my-portfolio-and-report/</link>
		<comments>http://geronimo89.dk/2010/12/20/my-portfolio-and-report/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 23:38:12 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[Dansk]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[jmh-visual]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1748</guid>
		<description><![CDATA[[de]Zum wiederholten Male: Schularbeiten. Letzten Freitag bis 12:00 hatten wir Zeit um unser Portfolio samt Bericht darüber mit ca 24.000 Anschlägen abzugeben. Hier möchte ich nun einmal zeigen was ich bis jetzt fertig gebracht habe (Ja, es kommt mehr Inhalt und dort öfter vorbei zu schauen wird sich lohnen.;)) Achja, dieses Blog wird NICHT STERBEN! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jmh-visual.com"><img class="alignnone size-full wp-image-1753" title="jmh-visual" src="http://geronimo89.dk/blog/wp-content/jmh-visual.png" alt="jmh visual my portfolio and report" width="600" height="345" /></a></p>
<p>[de]Zum wiederholten Male: Schularbeiten. Letzten Freitag bis 12:00 hatten wir Zeit um unser Portfolio samt Bericht darüber mit ca 24.000 Anschlägen abzugeben. Hier möchte ich nun einmal zeigen was ich bis jetzt fertig gebracht habe (Ja, es kommt mehr Inhalt und dort öfter vorbei zu schauen wird sich lohnen.;)) Achja, dieses Blog wird <strong>NICHT STERBEN!</strong> Hier wird es weiter die ganzen Posts geben die nicht auf mein Portfolio gehören.[/de]</p>
<p>[en]Again, schoolwork. Last Friday until 12:00 we had to hand in our portfolio and a report with about 24.000 strokes. Here I want to show everybody what I did so far (I&#8217;ll of course add more content and it would pay off to either follow or take a look once a while <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink my portfolio and report" class='wp-smiley' title="my portfolio and report" /> ). I also want to tell you, that this blog will <strong>NOT DIE!</strong> I will keep this running and as you have seen before, not all the posts here would do so great on my portfolio.[/en]</p>
<div id="_mcePaste">[da]Again, schoolwork. Last Friday until 12:00 we had to hand in our portfolio and a report with about 24.000 strokes. Here I want to show everybody what I did so far (I&#8217;ll of course add more content and it would pay off to either follow or take a look once a while <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink my portfolio and report" class='wp-smiley' title="my portfolio and report" /> ). I also want to tell you, that this blog will NOT DIE! I will keep this running and as you have seen before, not all the posts here would do so great on my portfolio.[/da]</div>
<h2><a href="http://jmh-visual.com">http://jmh-visual.com</a></h2>
<p>[de]Hier ist es nun, das Dokument, das zeigt, dass ich nicht nur Webseiten erstellen sondern dabei auch ein Konzept im Kopf haben kann:[/de]</p>
<p>[en]Now the document that shows, that I can&#8217;t only do web sites, but also have a detailed concept in mind for it:[/en]</p>
<p>[da]Now the document that shows, that I can&#8217;t only do web sites, but also have a detailed concept in mind for it:[/da]</p>
<p><a href="http://geronimo89.dk/blog/wp-content/jmh-visual_report.pdf"><img class="alignnone size-full wp-image-1761" title="report_1sem_2010" src="http://geronimo89.dk/blog/wp-content/report_1sem_2010.png" alt="report 1sem 2010 my portfolio and report" width="600" height="466" /></a></p>
<p><a href="http://geronimo89.dk/blog/wp-content/jmh-visual_report.pdf">jmh-visual_report</a></p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/07/04/postwork-portfolio-als-pdf/" rel="bookmark" class="crp_title">Postwork Portfolio als PDF</a></li><li><a href="http://geronimo89.dk/2010/12/02/portfolio-inspirational-post/" rel="bookmark" class="crp_title">Portfolio inspirational post</a></li><li><a href="http://geronimo89.dk/2010/11/25/jmh-or-something/" rel="bookmark" class="crp_title">jmh, or something?</a></li><li><a href="http://geronimo89.dk/2011/08/13/status-august-13th-2011/" rel="bookmark" class="crp_title">Status August 13th 2011</a></li><li><a href="http://geronimo89.dk/2010/12/20/call-for-links/" rel="bookmark" class="crp_title">call for links</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/12/20/my-portfolio-and-report/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protected: stealing code the right way</title>
		<link>http://geronimo89.dk/2010/12/04/stealing-code-the-right-way/</link>
		<comments>http://geronimo89.dk/2010/12/04/stealing-code-the-right-way/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 15:19:17 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1731</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://geronimo89.dk/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-1731">Password:<br />
<input name="post_password" id="pwbox-1731" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/" rel="bookmark" class="crp_title">What should my specialism be?</a></li><li><a href="http://geronimo89.dk/2008/08/27/css-box-with-graphic-borders/" rel="bookmark" class="crp_title">CSS box, with graphic borders</a></li><li><a href="http://geronimo89.dk/2010/04/28/google-summer-of-code-2010/" rel="bookmark" class="crp_title">Google Summer of Code 2010</a></li><li><a href="http://geronimo89.dk/2010/05/28/i-still-love-spambots/" rel="bookmark" class="crp_title">I still love spambots</a></li><li><a href="http://geronimo89.dk/2006/10/31/coding-projects/" rel="bookmark" class="crp_title">coding projects</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/12/04/stealing-code-the-right-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>room with a view</title>
		<link>http://geronimo89.dk/2010/12/03/room-with-a-view/</link>
		<comments>http://geronimo89.dk/2010/12/03/room-with-a-view/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 17:14:10 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1727</guid>
		<description><![CDATA[Work on my final exam project has started Related Posts:exam: doneLatvija sneak peakcolour theoryDay 3, not at NoMAno business like snow business]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1728" title="room_with_a_view_600" src="http://geronimo89.dk/blog/wp-content/room_with_a_view_600.jpg" alt="room with a view 600 room with a view" width="600" height="382" /></p>
<p>Work on my final exam project has started</p>
<p><img class="alignnone size-full wp-image-1729" title="vim_synopsis" src="http://geronimo89.dk/blog/wp-content/vim_synopsis.png" alt="vim synopsis room with a view" width="600" height="382" /></p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2011/06/10/exam-done/" rel="bookmark" class="crp_title">exam: done</a></li><li><a href="http://geronimo89.dk/2011/07/03/latvija-sneak-peak/" rel="bookmark" class="crp_title">Latvija sneak peak</a></li><li><a href="http://geronimo89.dk/2010/09/12/colour-theory/" rel="bookmark" class="crp_title">colour theory</a></li><li><a href="http://geronimo89.dk/2010/09/01/day-3-not-at-noma/" rel="bookmark" class="crp_title">Day 3, not at NoMA</a></li><li><a href="http://geronimo89.dk/2010/11/30/no-business-like-snow-business/" rel="bookmark" class="crp_title">no business like snow business</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/12/03/room-with-a-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portfolio inspirational post</title>
		<link>http://geronimo89.dk/2010/12/02/portfolio-inspirational-post/</link>
		<comments>http://geronimo89.dk/2010/12/02/portfolio-inspirational-post/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 09:26:21 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[Dansk]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1718</guid>
		<description><![CDATA[[de]Portfolio, den Trenchcoat aufreißen in der Öffentlichkeit, zeigen was man hat. Hier ein paar Links wie, wo, warum und wer es gut gemacht hat:[/de] [en]A portfolio, flashing with your trenchcoat in public, showing what you have. Here a few links how, where, why and who did it well:[/en] [da]Et portfolio, rive trenchcoaten åben i offentligheden, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1722" title="folder icon-01" src="http://geronimo89.dk/blog/wp-content/folder-icon-01.png" alt="folder icon 01 Portfolio inspirational post" width="600" height="565" /></p>
<p>[de]Portfolio, den Trenchcoat aufreißen in der Öffentlichkeit, zeigen was man hat. Hier ein paar Links wie, wo, warum und wer es gut gemacht hat:[/de]</p>
<p>[en]A portfolio, flashing with your trenchcoat in public, showing what you have. Here a few links how, where, why and who did it well:[/en]</p>
<p>[da]Et portfolio, rive trenchcoaten åben i offentligheden, at vise hvad man har. Her et par links hvordan, hvor, hvorfor og hvem gjorde det godt:[/da]</p>
<h2>Abduzeedo</h2>
<ul>
<li><a href="http://abduzeedo.com/creating-graphic-portfolio-without-client">Creating a Graphic Portfolio Without a Client</a></li>
<li><a href="http://abduzeedo.com/10-impresive-portfolioblog-websites">10 Impressive Portfolio/Blog Websites</a></li>
</ul>
<h2>Smashing Magazine</h2>
<ul>
<li><a href="http://www.smashingmagazine.com/2008/11/26/50-beautiful-and-creative-portfolio-designs/">50 Beautiful And Creative Portfolio Designs</a></li>
<li><a href="http://www.smashingmagazine.com/2009/07/30/50-fresh-portfolio-websites-for-your-inspiration/">50 Fresh Portfolio Websites for Your Inspiration</a></li>
<li><a href="http://www.smashingmagazine.com/2009/02/26/10-steps-to-the-perfect-portfolio-website/">10 Steps To The Perfect Portfolio Website</a></li>
</ul>
<h2>deviantART</h2>
<ul>
<li><a href="http://browse.deviantart.com/designs/web/?q=portfolio">massive amount of portfolio designs</a></li>
</ul>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/07/04/postwork-portfolio-als-pdf/" rel="bookmark" class="crp_title">Postwork Portfolio als PDF</a></li><li><a href="http://geronimo89.dk/2011/08/13/status-august-13th-2011/" rel="bookmark" class="crp_title">Status August 13th 2011</a></li><li><a href="http://geronimo89.dk/2010/12/20/my-portfolio-and-report/" rel="bookmark" class="crp_title">my portfolio and report</a></li><li><a href="http://geronimo89.dk/2009/07/20/outstanding-sketchbook-portfolio-neo-innov-fr/" rel="bookmark" class="crp_title">outstanding sketchbook portfolio: neo-innov.fr</a></li><li><a href="http://geronimo89.dk/2010/09/14/msn-worms-go-on/" rel="bookmark" class="crp_title">msn worms go on</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/12/02/portfolio-inspirational-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash! AHA!</title>
		<link>http://geronimo89.dk/2010/11/23/flash-aha/</link>
		<comments>http://geronimo89.dk/2010/11/23/flash-aha/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 18:17:20 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[Dansk]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1678</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_portfolio-show_1230472030"
			class="flashmovie"
			width="600"
			height="480">
	<param name="movie" value="http://geronimo89.dk/blog/wp-content/portfolio-show.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://geronimo89.dk/blog/wp-content/portfolio-show.swf"
			name="fm_portfolio-show_1230472030"
			width="600"
			height="480">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> [de]Wie schon zu früherem Zeitpunkt erwähnt, bin ich durch mein Studium gezwungen mich mit Flash zu beschäftigen. Die Hausaufgabe war ein paar unserer Werke vorzustellen. Dies ist hiermit erledigt und ich schließe die Applikation Adobe Flash CS5 erstmal wieder angeekelt.[/de] [en]As mentioned before, I am forced to [...]]]></description>
			<content:encoded><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_portfolio-show_824790382"
			class="flashmovie"
			width="600"
			height="480">
	<param name="movie" value="http://geronimo89.dk/blog/wp-content/portfolio-show.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://geronimo89.dk/blog/wp-content/portfolio-show.swf"
			name="fm_portfolio-show_824790382"
			width="600"
			height="480">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="get flash player Flash! AHA!"  title="Flash! AHA!" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>[de]Wie schon zu früherem Zeitpunkt erwähnt, bin ich durch mein Studium gezwungen mich mit Flash zu beschäftigen. Die Hausaufgabe war ein paar unserer Werke vorzustellen. Dies ist hiermit erledigt und ich schließe die Applikation Adobe Flash CS5 erstmal wieder angeekelt.[/de]</p>
<p>[en]As mentioned before, I am forced to learn Flash in my studies. My homework was to present some of my works. This is done and I close this application, Adobe Flash CS5, disgustedly.[/en]</p>
<p>[da]Som jeg har nævnt før skal jeg lære Flash pga. mine studier. Min hjemmeopgave var at præsentere et par af mine værker. Det er gjort og jeg kan lukke applikationen Adobe Flash CS5 foreløbigt.[/da]</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/14/adobe-likes-html5-and-svg/" rel="bookmark" class="crp_title">Adobe likes HTML5 and SVG</a></li><li><a href="http://geronimo89.dk/2011/01/25/more-motion-in-my-design/" rel="bookmark" class="crp_title">more motion in my design</a></li><li><a href="http://geronimo89.dk/2010/09/15/what-really-makes-me-throw-up-about-apple-and-adobe/" rel="bookmark" class="crp_title">What really makes me throw up about Apple and Adobe</a></li><li><a href="http://geronimo89.dk/2010/03/26/danceable-music/" rel="bookmark" class="crp_title">Danceable music</a></li><li><a href="http://geronimo89.dk/2010/05/17/durian-project-trailer-out/" rel="bookmark" class="crp_title">Durian project trailer out!</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/11/23/flash-aha/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>assignment dump</title>
		<link>http://geronimo89.dk/2010/11/18/assignment-dump/</link>
		<comments>http://geronimo89.dk/2010/11/18/assignment-dump/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 14:18:57 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[retouch]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1674</guid>
		<description><![CDATA[Photographer: mjranum@deviantart, Stock [de]Das kleine Mädel hält für eine Halloweenpartyeinladung her, die andere Aufgabe war ein Typografiedesign zum Thema saurer Regen.[/de] [en]The little girl serves for a halloween party invitation, second task was a typographic design with acid rain as the topic.[/en] [da]Pigen tjener som eye-catcher til en Halloweenparty invitation, den anden opgave var et typografisk [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mjranum-stock.deviantart.com/art/Student-Witch-5-67204899"><img class="alignnone size-full wp-image-1676" title="student_witch_03" src="http://geronimo89.dk/blog/wp-content/student_witch_03.jpg" alt="student witch 03 assignment dump" width="600" height="939" /></a></p>
<p>Photographer: <a href="http://mjranum.deviantart.com/">mjranum@deviantart</a>, <a href="http://mjranum-stock.deviantart.com/art/Student-Witch-5-67204899">Stock</a></p>
<p><a href="http://geronimo89.deviantart.com/art/acid-rain-186589495"><img class="alignnone size-full wp-image-1675" title="acid rain_smaller" src="http://geronimo89.dk/blog/wp-content/acid-rain_smaller.png" alt="acid rain smaller assignment dump" width="600" height="849" /></a></p>
<p>[de]Das kleine Mädel hält für eine Halloweenpartyeinladung her, die andere Aufgabe war ein Typografiedesign zum Thema saurer Regen.[/de]</p>
<p>[en]The little girl serves for a halloween party invitation, second task was a typographic design with acid rain as the topic.[/en]</p>
<p>[da]Pigen tjener som eye-catcher til en Halloweenparty invitation, den anden opgave var et typografisk design til sur regn.[/da]</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/17/vector-posters/" rel="bookmark" class="crp_title">vector posters</a></li><li><a href="http://geronimo89.dk/2010/09/01/day-3-not-at-noma/" rel="bookmark" class="crp_title">Day 3, not at NoMA</a></li><li><a href="http://geronimo89.dk/2010/08/29/shooting-in-the-rain/" rel="bookmark" class="crp_title">shooting in the rain</a></li><li><a href="http://geronimo89.dk/2010/05/22/click/" rel="bookmark" class="crp_title">click</a></li><li><a href="http://geronimo89.dk/2010/05/07/homophobia/" rel="bookmark" class="crp_title">Homophobia</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/11/18/assignment-dump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NoMA real life 2010</title>
		<link>http://geronimo89.dk/2010/11/13/noma-real-life-2010/</link>
		<comments>http://geronimo89.dk/2010/11/13/noma-real-life-2010/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 14:03:53 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[Dansk]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[NoMA real life]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1658</guid>
		<description><![CDATA[[de] In den vergangenen zwei Wochen durften wir uns wie schon erwähnt, wirklichen Projekten widmen, die von Kunden verwendet werden durften. Meine Gruppe hat sich für die Erstellung einer Webseite für ein Gestüt entschieden. Darüber hinaus haben wir verschiedene Logos erarbeitet, da das bisherige Logo etwas veraltet ist und von einem Mitglied des Familienunternehmens gestaltet [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1661" title="horse website screenshot" src="http://geronimo89.dk/blog/wp-content/horse-website-screenshot.png" alt="horse website screenshot NoMA real life 2010" width="600" height="367" /></p>
<p>[de]</p>
<p>In den vergangenen zwei Wochen durften wir uns wie schon erwähnt, wirklichen Projekten widmen, die von Kunden verwendet werden durften. Meine Gruppe hat sich für die Erstellung einer Webseite für ein Gestüt entschieden. Darüber hinaus haben wir verschiedene Logos erarbeitet, da das bisherige Logo etwas veraltet ist und von einem Mitglied des Familienunternehmens gestaltet wurde. Vom Kunden gewünscht waren:</p>
<ul>
<li>einfacher Umgang mit Inhalten</li>
<li>einfacher Wechsel zwischen Sprachen (Dänisch, Deutsch, Englisch)</li>
<li>Bildergalerie</li>
</ul>
<p>Wir entschieden uns für eine WordPressinstallation mit den Plugins <a href="http://wordpress.org/extend/plugins/mlanguage/">mlanguage</a> für die Sprachfeatures und <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGen</a> für die Galerie. Meine Aufgabe war hauptsächlich das Design an WordPress anzupassen und das System einzurichten.</p>
<p>Vielen Dank meiner Gruppe an dieser Stelle, werde euch verlinken <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile NoMA real life 2010" class='wp-smiley' title="NoMA real life 2010" /> </p>
<p>[/de]</p>
<p>[en]</p>
<p>In the past two weeks we had the chance, as mentioned, to work on a real project, that could be used by the customer. My group decided to make a website for a horse stud family business. Further we presented logos from which one actually will be used as it looks now. The customer wanted:</p>
<ul>
<li>easy to manage content</li>
<li>easy switching between languages</li>
<li>image gallery</li>
</ul>
<p>We decided to use wordpress with the plugins <a href="http://wordpress.org/extend/plugins/mlanguage/">mlanguage</a> for the multi-language support and <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGen</a> for the gallery. My task mostly was to code the design for wordpress and set up the system.</p>
<p>Thanks big time to my group at this point, you&#8217;ll be linked <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile NoMA real life 2010" class='wp-smiley' title="NoMA real life 2010" /> </p>
<p>[/en]</p>
<p>[da]</p>
<p>I de sidste to uger har vi haft chancen at, som tidligere sagt, arbejde på et reelt projekt, som kunne bruges af kunden. Min gruppe besluttede sig for at lave en webside til et stutteri. Udover det præsenterede vi nogle foreslag til et ny logo og en af dem skal også bruges, som det ser ud nu. Kunden ville gerne have:</p>
<ul>
<li>en nem måde at håndtere indhold</li>
<li>enkelt måde at ændre sproget</li>
<li>billedgalleri</li>
</ul>
<p>Vi installerede wordpress og brugte <a href="http://wordpress.org/extend/plugins/mlanguage/">mlanguage</a> til at få oversættelser på plads og <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGen</a> som galleri. Min opgave var primært at tilpasse designet til wordpress og indrette systemet.</p>
<p>Mange tak til min gruppe, i bliver linket <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile NoMA real life 2010" class='wp-smiley' title="NoMA real life 2010" /> </p>
<p>[/da]</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/12/01/blogging-multilingual-part-2/" rel="bookmark" class="crp_title">blogging multilingual part 2</a></li><li><a href="http://geronimo89.dk/2010/11/09/status-and-sneak-peaks-for-november-2010/" rel="bookmark" class="crp_title">Status and sneak peeks for november 2010</a></li><li><a href="http://geronimo89.dk/2009/10/21/bilder-in-posts-wieder-da/" rel="bookmark" class="crp_title">Bilder in Posts wieder da</a></li><li><a href="http://geronimo89.dk/2010/06/06/user-agents-may-2010/" rel="bookmark" class="crp_title">User agents: May 2010</a></li><li><a href="http://geronimo89.dk/2010/12/26/a-late-wish/" rel="bookmark" class="crp_title">a late wish</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/11/13/noma-real-life-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Status and sneak peeks for november 2010</title>
		<link>http://geronimo89.dk/2010/11/09/status-and-sneak-peaks-for-november-2010/</link>
		<comments>http://geronimo89.dk/2010/11/09/status-and-sneak-peaks-for-november-2010/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 21:08:46 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[Dansk]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[bar]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[MeRox]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[Tina Dickow]]></category>
		<category><![CDATA[Tina Dico]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1620</guid>
		<description><![CDATA[[de]Die Bars in Kolding haben leckeres Bier und die Uni hat nette Menschen.[/de] [en]The bars in Kolding have tasty beers and the college has nice people.[/en] [da]Barene i Kolding har lækre øller, skolen har flinke mennesker.[/da] [de]MEINE Tickets für Tina Dico am 17. November [/de] [en]MY tickets for Tina Dico the 17th of November [/en] [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1625" title="barnight" src="http://geronimo89.dk/blog/wp-content/barnight.jpg" alt="barnight Status and sneak peeks for november 2010" width="500" height="333" /></p>
<p>[de]Die Bars in Kolding haben leckeres Bier und die Uni hat nette Menschen.[/de]</p>
<p>[en]The bars in Kolding have tasty beers and the college has nice people.[/en]</p>
<p>[da]Barene i Kolding har lækre øller, skolen har flinke mennesker.[/da]</p>
<p><img class="alignnone size-full wp-image-1626" title="tickets-tina-dickow" src="http://geronimo89.dk/blog/wp-content/tickets-tina-dickow.jpg" alt="tickets tina dickow Status and sneak peeks for november 2010" width="500" height="333" /></p>
<p>[de]MEINE Tickets für Tina Dico am 17. November <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Status and sneak peeks for november 2010" class='wp-smiley' title="Status and sneak peeks for november 2010" /> [/de]</p>
<p>[en]MY tickets for Tina Dico the 17th of November <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Status and sneak peeks for november 2010" class='wp-smiley' title="Status and sneak peeks for november 2010" /> [/en]</p>
<p>[da]MINE billetter til Tina Dickow den 17. November <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Status and sneak peeks for november 2010" class='wp-smiley' title="Status and sneak peeks for november 2010" /> [/da]</p>
<p>[de]Vergangenen Sonntag (7. November) ging das <a href="http://merox.dk/index.php?section=fotoevent">Fotoevent</a> von <a href="http://bit.ly/9HshAR">MeRox Studio</a> (als Teil dessen ich mich seit heute auch bezeichnen darf), über die Bühne. Bilder davon werden folgen, sobald retuschiert. Samstag kam <a href="http://blog.halefa.com/">Halefa</a> auch schon vorbei um sich tatkräftig zu beteiligen. Abgesehen von dem großen Ereignis arbeite ich im Moment an einigen Projekten, unter anderem an einer Webseite für die Uni innerhalb eines Real-Life Projektes, bei dem wir eine Webseite für einen wirklichen Kunden erstellen dürfen, <del>gegen einen hohen Sold</del>. Abgesehen von einem Eintrag über das erwähnte Event, werde ich selbstverständlich die Arbeit meiner Gruppe vorstellen, tolle neue WordPress Plugins und natürlich viele viele Fotos. Eine letzte Sache noch, über die ich mich gefreut habe, dass eine junge Künstlerin von deviantART mich interviewt hat: <a href="http://www.youtube.com/watch?v=SYs4AHcPRY8">Videolink</a>.[/de]</p>
<p>[en]Last sunday (7th of November) the <a href="http://merox.dk/index.php?section=fotoevent">photoevent</a> of <a href="http://bit.ly/9HshAR">MeRox Studio</a> (as of I from today also can announce myself a member), happened. Pictures will be online as soon as retouched and approved. Saturday night <a href="http://blog.halefa.com/">Halefa</a> visited, helped and shot a lot. Apart from that big event I work on several projects, among them a group project where we are supposed to do a website for a real customer for <del>no money</del>. Further the next posts will be covering nice wordpress plugins, a lot of photos and of course my groups work. Last, but not least, a young deviant interviewed me about my work so far lately: <a href="http://www.youtube.com/watch?v=SYs4AHcPRY8">video link</a>.[/en]</p>
<div>
<div>
<p>[da]Sidste søndag (7. November) løb <a href="http://merox.dk/index.php?section=fotoevent">Fotoeventet</a> af <a href="http://bit.ly/9HshAR">MeRox Studio</a> (som jeg siden idag også kan kalde mig en del af), af staplen. Billeder følger så snart de er godkendt og redigeret. Lørdag kom <a href="http://blog.halefa.com/">Halefa</a> over, hjalp, snakkede og fotograferede. Udover det arbejder jeg på flere projekter, for eksempel et med en gruppe fra NoMA, på en webside for en rigtig kunde som vi bare <del>ikke får penge</del> for. Mine næste indlæg kommer til at handle om koncertet, flere wordpress plugins, fotografi og min gruppes webside. Til sidst vil jeg også lige nævne at en ung kunstner fra deviantART har interviewed mig om mine værker så vidt: <a href="http://www.youtube.com/watch?v=SYs4AHcPRY8">videolink</a>.[/da]</p>
</div>
</div>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/11/13/noma-real-life-2010/" rel="bookmark" class="crp_title">NoMA real life 2010</a></li><li><a href="http://geronimo89.dk/2010/11/18/tina-dico-live-in-kolding-2010/" rel="bookmark" class="crp_title">Tina Dico live in Kolding 2010</a></li><li><a href="http://geronimo89.dk/2011/12/31/sweetheart-and-princess/" rel="bookmark" class="crp_title">sweetheart and princess</a></li><li><a href="http://geronimo89.dk/2011/09/09/video-experience/" rel="bookmark" class="crp_title">Video experience</a></li><li><a href="http://geronimo89.dk/2010/12/01/blogging-multilingual-part-2/" rel="bookmark" class="crp_title">blogging multilingual part 2</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/11/09/status-and-sneak-peaks-for-november-2010/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Working on graphic projects in groups</title>
		<link>http://geronimo89.dk/2010/10/02/working-on-graphic-projects-in-groups/</link>
		<comments>http://geronimo89.dk/2010/10/02/working-on-graphic-projects-in-groups/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 15:29:39 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[team]]></category>
		<category><![CDATA[teamwork]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1492</guid>
		<description><![CDATA[I recently had a little discussion about an image retouching job and exchange of a PSD (photoshop source file), that&#8217;s why I decided to post this. So when working on projects and in groups, you should set common rules or guidelines for source files. I&#8217;ll give you an example for the case of photography, because [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a little discussion about an image retouching job and exchange of a PSD (photoshop source file), that&#8217;s why I decided to post this. So when working on projects and in groups, you should set common rules or guidelines for source files. I&#8217;ll give you an example for the case of photography, because that&#8217;s what I mainly am working on.</p>
<h2>Example rules for a team:</h2>
<ul>
<li>import raw files without editing it</li>
<li>edit non-destructive</li>
<li>make copies of layers if you can&#8217;t apply an adjustment non destructively</li>
<li>name layers so your group understands them without any doubt what happened in this step of workflow</li>
<li>create layer groups for already correctly aligned elements or elements of same type</li>
<li>export on compatibility mode for the least recent version of Photoshop used by anyone used on the project</li>
<li>don&#8217;t crop the image, used guides and slices</li>
</ul>
<p>Define these rules when you start the project and make clear to everybody, that it&#8217;s their responsibility to follow these and if they don&#8217;t, they might put either deadline or quality at risk.</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2008/08/27/css-box-with-graphic-borders/" rel="bookmark" class="crp_title">CSS box, with graphic borders</a></li><li><a href="http://geronimo89.dk/2011/09/27/what-should-my-specialism-be/" rel="bookmark" class="crp_title">What should my specialism be?</a></li><li><a href="http://geronimo89.dk/2007/05/28/4-hourslmmsmoonlight/" rel="bookmark" class="crp_title">4 hours+lmms+moonlight</a></li><li><a href="http://geronimo89.dk/2010/09/27/copy-exif-data/" rel="bookmark" class="crp_title">copy exif data</a></li><li><a href="http://geronimo89.dk/2010/05/12/batch-editing-html-files/" rel="bookmark" class="crp_title">Batch editing html or text files</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/10/02/working-on-graphic-projects-in-groups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML class 1: The Beginning</title>
		<link>http://geronimo89.dk/2010/09/29/1482/</link>
		<comments>http://geronimo89.dk/2010/09/29/1482/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 14:36:08 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1482</guid>
		<description><![CDATA[Thanks to Miss Ragno from Merox.dk as our host for the first little web class we had together and of course everybody that participated.&#62; I want to put up a quick sum-up what we did for everybody that is interested or who couldn&#8217;t come. Concept and Technique Concept Technique Sender You or your client Webserver [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to Miss Ragno from <a href="http://bit.ly/9HshAR">Merox.dk</a> as our host for the first little web class we had together and of course everybody that participated.&gt;<br />
I want to put up a quick sum-up what we did for everybody that is interested or who couldn&#8217;t come.</p>
<h2>Concept and Technique</h2>
<table border="0" width="400">
<tbody>
<tr>
<th scope="col"></th>
<th scope="col">Concept</th>
<th scope="col">Technique</th>
</tr>
<tr>
<th scope="row">Sender</th>
<td>You or your client</td>
<td>Webserver</td>
</tr>
<tr>
<th scope="row">Message</th>
<td>Do / buy something</td>
<td>HTML</td>
</tr>
<tr>
<th scope="row">Receiver</th>
<td>User</td>
<td>Browser</td>
</tr>
</tbody>
</table>
<h3>Clean Code</h3>
<p>What you should think of when starting to write a website is that you should use native html elements if possible, like h1, h2, blockquote and so on. Also very important that you devide content and style.<br />
Bad:</p>
<pre class="brush: xml; title: ; notranslate">&lt;body background=&quot;#ff0000&quot;&gt;</pre>
<p>good:</p>
<blockquote><p>&lt;body&gt; and additionally in .css file: body {background:#ff0000;}</p></blockquote>
<h3>Comments</h3>
<p>Comments are extremely supportive when it comes to coding and learning at once, here the comment markup for HTML and CSS comments:</p>
<blockquote><p>&lt;!&#8211; navigation section, this is a HTML comment &#8211;&gt;</p>
<p>/* multi row comments in CSS<br />
for example: this not working in IE */</p></blockquote>
<h3>Validation</h3>
<p>Validation is useful to get used to common guidelines. It&#8217;s not the ultimate solution, but sticking to the W3C rules is a good starting point. You can always add a browser switch for single browsers after that. (Eyeballing IE here)<br />
Links for validation:</p>
<ul>
<li>HTML: <a href="http://validator.w3.org/">http://validator.w3.org/</a></li>
<li>CSS: <a href="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator/</a></li>
</ul>
<p>Also very important: remember your <a href="http://www.w3schools.com/tags/tag_DOCTYPE.asp">Doctype</a>! (HTML5 not listed)</p>
<h3>Sketches</h3>
<p><img class="alignnone size-full wp-image-1483" title="webdesign sketch" src="http://geronimo89.dk/blog/wp-content/webdesign-sketch.png" alt="webdesign sketch HTML class 1: The Beginning" width="325" height="375" /></p>
<p>Make sketches, in hand or digitally, just very roughly to define elements and layout. This will help you not to overload the page and stay focussed on your goal along the process.</p>
<h3>Inspiration</h3>
<p>Gathering inspiration is not really a big deal when it comes to web design. Check out the <a href="http://browse.deviantart.com/designs/web/">category for Web Interfaces on deviantART</a> for example.</p>
<h2>Resources</h2>
<h3>Editors</h3>
<p><img class="alignnone size-full wp-image-1484" title="text wrangler syntax highlightning screenshot" src="http://geronimo89.dk/blog/wp-content/text-wrangler-syntax-highlightning-screenshot.png" alt="text wrangler syntax highlightning screenshot HTML class 1: The Beginning" width="569" height="364" /></p>
<p>Important when you choose your editor is that it supports syntax highlightning.<br />
I recommend <a href="http://notepad-plus-plus.org/">Notepad++</a> for Windows and <a href="http://www.apple.com/downloads/macosx/productivity_tools/textwrangler.html">Text Wrangler</a> for Mac OS. Linux users: You know where to go, your packet manager gives you tons of possibilities.</p>
<h3>Browser Extensions</h3>
<p>Really useful, they help you debug, increase your workflow (and some of them actually look pretty sexy <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink HTML class 1: The Beginning" class='wp-smiley' title="HTML class 1: The Beginning" /> ).<br />
My beginner recommendations:</p>
<ul>
<li><a href="http://getfirebug.com">Firebug</a> (Firefox only)</li>
<li>Window Resizer, <a href="https://addons.mozilla.org/en-US/firefox/addon/1985/">Firefox version</a> / <a href="https://chrome.google.com/extensions/detail/kkelicaakdanhinjdeammmilcgefonfh">Chrome version</a></li>
<li>Web Developer, <a href="https://addons.mozilla.org/en-US/firefox/addon/60/">Firefox version</a> / <a href="https://chrome.google.com/extensions/detail/bfbameneiokkgbdmiekhjnmfkcnldhhm">Chrome version</a></li>
</ul>
<h3>Tutorials</h3>
<p>Examples for great websites that have massive collections of tutorials and knowledge:</p>
<ul>
<li><a href="http://net.tutsplus.com">net.tutsplus.com</a></li>
<li><a href="http://www.smashingmagazine.com/">smashing magazine</a></li>
</ul>
<h3>CSS References</h3>
<p>Just a must-have for looking up how things are done and what can be done with different elements.</p>
<ul>
<li>CSS3.info:
<ul>
<li><a href="http://www.css3.info/">http://www.css3.info/</a></li>
</ul>
</li>
<li>W3Schools:
<ul>
<li><a href="http://www.w3schools.com/css/css_reference.asp">http://www.w3schools.com/css/css_reference.asp</a></li>
</ul>
</li>
<li>CSS-Ref.com
<ul>
<li><a href="http://www.css-ref.com/">http://www.css-ref.com/</a></li>
</ul>
</li>
</ul>
<h2>Vocabulary:</h2>
<ul>
<li>HTML = HyperText Markup Language</li>
<li>CSS = Cascading Style Sheets</li>
</ul>
<p>Thank you for reading! Leave a comment with wishes for future lessons and general feedback please!</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/06/19/testing-chromium-for-real-day-1/" rel="bookmark" class="crp_title">Testing Chromium for real: day 1</a></li><li><a href="http://geronimo89.dk/2010/10/02/css3-close-up-transition/" rel="bookmark" class="crp_title">CSS3 Close Up: transition</a></li><li><a href="http://geronimo89.dk/2008/08/27/css-box-with-graphic-borders/" rel="bookmark" class="crp_title">CSS box, with graphic borders</a></li><li><a href="http://geronimo89.dk/2010/09/19/more-fun-chrome-chromium-extensions/" rel="bookmark" class="crp_title">more fun chrome / chromium extensions</a></li><li><a href="http://geronimo89.dk/2010/06/21/testing-chromium-for-real-day-3/" rel="bookmark" class="crp_title">Testing Chromium for real: day 3</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/09/29/1482/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>more typography</title>
		<link>http://geronimo89.dk/2010/09/20/more-typography/</link>
		<comments>http://geronimo89.dk/2010/09/20/more-typography/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 18:17:31 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1429</guid>
		<description><![CDATA[Yeah, I couldn&#8217;t help it. Some more fall out of my typography class beneath. First a little poster with a little critic about our set destination in life: The second work is very (as in extremely or obsessively) minimalistic, focussed on used space (and the fonts): Related Posts:vector postersFree Fonts and Free Knowledge about themDay [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah, I couldn&#8217;t help it. Some more fall out of my typography class beneath.</p>
<p>First a little poster with a little critic about our set destination in life:</p>
<p><a href="http://geronimo89.deviantart.com/art/fuck-this-life-179779973"><img class="alignnone size-full wp-image-1430" title="fuck this life-01_500" src="http://geronimo89.dk/blog/wp-content/fuck-this-life-01_500.png" alt="fuck this life 01 500 more typography" width="500" height="707" /></a></p>
<p>The second work is very (as in extremely or obsessively) minimalistic, focussed on used space (and the fonts):</p>
<p><a href="http://geronimo89.deviantart.com/art/hope-less-179934302"><img class="alignnone size-full wp-image-1431" title="hopeless_500" src="http://geronimo89.dk/blog/wp-content/hopeless_500.png" alt="hopeless 500 more typography" width="500" height="354" /></a></p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/17/vector-posters/" rel="bookmark" class="crp_title">vector posters</a></li><li><a href="http://geronimo89.dk/2010/09/27/free-fonts-and-free-knowledge-about-them/" rel="bookmark" class="crp_title">Free Fonts and Free Knowledge about them</a></li><li><a href="http://geronimo89.dk/2010/09/01/day-3-not-at-noma/" rel="bookmark" class="crp_title">Day 3, not at NoMA</a></li><li><a href="http://geronimo89.dk/2010/10/10/haarige-raupen-in-danemark/" rel="bookmark" class="crp_title">Haarige Raupen in Dänemark</a></li><li><a href="http://geronimo89.dk/2010/05/22/click/" rel="bookmark" class="crp_title">click</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/09/20/more-typography/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Being late and having an expensive trip</title>
		<link>http://geronimo89.dk/2010/09/15/being-late-and-having-an-expensive-trip/</link>
		<comments>http://geronimo89.dk/2010/09/15/being-late-and-having-an-expensive-trip/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 10:36:34 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[David Fratto]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1374</guid>
		<description><![CDATA[You know, public transportation sucks big time in Denmark. You think there&#8217;s a bus that&#8217;s going hourly and then you notice, that it&#8217;s only every second hour. You trip and stumble into the cliché of sitting in a bakery, drinking coffee and typing on your MacBook Pro. So not cool! Then you get to the [...]]]></description>
			<content:encoded><![CDATA[<p>You know, public transportation sucks big time in Denmark. You think there&#8217;s a bus that&#8217;s going hourly and then you notice, that it&#8217;s only every second hour. You trip and stumble into the cliché of sitting in a bakery, drinking coffee and typing on your MacBook Pro. So not cool! Then you get to the bus you waited on an hour and you pay 111DKR (15€) for getting to your university, no discount for students, sorry.</p>
<p>At least you get some emails done during the 2h journey, too bad you&#8217;re going to be late for your class.</p>
<p>I bet I&#8217;d be off better with riding a BIKE. Well, fortunately I&#8217;ve received an offer about a flat in Kolding and I can move in in about one month.</p>
<p>Another thing that is kind of strange, is that the number of visitors on my blog has gone up, but I receive no comments from them at all, so either what I write is really boring or they all silently agree. My aggressive but truthful post about Adobe and Apple yesterday should be something people either should comment on or just claim that I am retorted to talk bad about their loved companies (come on Apple fanboys!).</p>
<p>Maybe they all think I don&#8217;t give a shit about what they think about my posts, which in a way is correct, because I&#8217;m not very unstable in my views, but in another way, I would like feedback and I also would like to read some other points of view. As I am not a well-selling star author, not a lot of people comment my posts. Maybe I should just add a huge pop-up saying: COMMENT IF YOU GIVE A FUCK. A simple JS code for something like that would be:</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
alert(&#8220;COMMENT IF YOU GIVE A FUCK!&#8221;);<br />
&lt;/script&gt;</p></blockquote>
<p>So, top event today: <a href="http://www.mediaposse.com/">David Fratto</a>, he held an awesome, non-stop two hours motivation speech including many nice metaphors, supplying someone anybody can look up to to my fellow students.</p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/21/should-i-blog/" rel="bookmark" class="crp_title">Should I blog?</a></li><li><a href="http://geronimo89.dk/2008/06/20/sex-and-the-city/" rel="bookmark" class="crp_title">Sex and the city</a></li><li><a href="http://geronimo89.dk/2010/08/29/little-web-clock/" rel="bookmark" class="crp_title">little web clock</a></li><li><a href="http://geronimo89.dk/2010/05/16/browser-update-for-a-better-web/" rel="bookmark" class="crp_title">Browser Update, for a better web</a></li><li><a href="http://geronimo89.dk/2010/08/24/looking-ahead/" rel="bookmark" class="crp_title">Looking ahead</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/09/15/being-late-and-having-an-expensive-trip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What really makes me throw up about Apple and Adobe</title>
		<link>http://geronimo89.dk/2010/09/15/what-really-makes-me-throw-up-about-apple-and-adobe/</link>
		<comments>http://geronimo89.dk/2010/09/15/what-really-makes-me-throw-up-about-apple-and-adobe/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 22:41:50 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[software patents]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1370</guid>
		<description><![CDATA[Not liking, even though I use them Right now, there&#8217;s a big change in my daily life and that is using Apple and Adobe. I&#8217;ve used their technologies before, I was given an iPod (I installed Linux on) and I used PDF (which I either viewed or created with open source software). Now I am [...]]]></description>
			<content:encoded><![CDATA[<h2><img class="alignnone size-full wp-image-1372" title="cookies" src="http://geronimo89.dk/blog/wp-content/cookies.png" alt="cookies What really makes me throw up about Apple and Adobe" width="474" height="600" /></h2>
<h2>Not liking, even though I use them</h2>
<p>Right now, there&#8217;s a big change in my daily life and that is using <a href="http://apple.com">Apple</a> and <a href="http://adobe.com">Adobe</a>. I&#8217;ve used their technologies before, I was given an iPod (I installed Linux on) and I used PDF (which I either viewed or created with open source software). Now I am studying multimedia design and I&#8217;m using Adobes Creative Suite CS5 on my MacBook Pro. This is pretty tough for someone who actively chose to use Linux and open source software nearly exclusively.</p>
<h2>So why the hell do you use it now?</h2>
<p>Because I have accepted, that it&#8217;s industry standard and the market for designers on open platforms is pico (expression for small).</p>
<h2>What&#8217;s so bad about them anyways?</h2>
<p>They drive their monopolistic strategy out on people who have not done anything to deserve it. Apple <a href="http://bits.blogs.nytimes.com/2009/02/13/could-you-go-to-jail-for-jailbreaking-your-iphone/">sues programmers</a> (keyword: jailbreak) who extend their hardware and wants the user to have no control over the product they buy. They want you to use it the way they want. They&#8217;re stepping back a little from that philosophy now, but only a tiny bit <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink What really makes me throw up about Apple and Adobe" class='wp-smiley' title="What really makes me throw up about Apple and Adobe" /> </p>
<p>Adobe holds its cold embrace around the internet, since they started implementing proprietary formats like Flash (I know, it started with Macromedia until they got bought).</p>
<p>Software patents in general are a big part of my antipathy.</p>
<h2>What are <a href="http://en.wikipedia.org/wiki/Software_patent_debate">software patents</a>?</h2>
<p>Software patents are a way to make money on nothing for big firms. They proclaim the right to be the exclusive distributor of a certain feature in software. A popular case of this is Microsoft claiming a patent on the double-click. You may say: Why not if they did invent it? Because it&#8217;s not complex enough. Imagine programs as math formulars, you can&#8217;t claim patents on them either. Example: I claim the Patent for PI and you had to buy licenses from me to calculate circles. Example two: I&#8217;m the first to grill spare-ribs with honey-parmesano marinade and I would sue you for trying the same, doesn&#8217;t sound reasonable, does it?</p>
<h2>What would applying software patents mean if they were approved?</h2>
<p>That you rarely could use any piece of software any longer. Just imagine that double-click thing. Which program does not support that? Further developers of important pieces of software that pretty much keep our modern infrastructure running would be sued and maybe drop their work, examples: PHP, MySQL, Apache.</p>
<h2>Are you kidding me? There would be no facebook, Firefox, VLC or OpenOffice.org?</h2>
<p>No.</p>
<h2>What&#8217;s different about open source software?</h2>
<p>Open source software is based upon the thought of receiving and giving back. It works quite well for a lot of companies, before you start asking how they make money with that. They often don&#8217;t sell the software itself, but support contracts. Examples on that: <a href="http://www.novell.com">Novell</a>, <a href="http://www.redhat.com/">Red Hat</a>. An important keyword here is the GPL, the General Public License. It states, what is released under it, is free and if you use or enhance it, that also should be free. Over 5 years ago I switched to Linux and used Windows when I wanted to play games that were not developed for Linux. Switching back to proprietary software for me is quite a deal, because it means being tied down to 2 platforms and a few Adobe products.</p>
<h2>What can I do against software patents?</h2>
<p>There are various sites on the internet, but if you&#8217;re living in the EU, you should sign the petition at <a href="http://stopsoftwarepatents.eu/">stopsoftwarepatents.eu</a></p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/14/adobe-likes-html5-and-svg/" rel="bookmark" class="crp_title">Adobe likes HTML5 and SVG</a></li><li><a href="http://geronimo89.dk/2010/06/12/lesenswert-advanced-photoshop/" rel="bookmark" class="crp_title">lesenswert: Advanced Photoshop</a></li><li><a href="http://geronimo89.dk/2007/07/30/blender-visualise-your-imagination/" rel="bookmark" class="crp_title">Blender, visualise your imagination</a></li><li><a href="http://geronimo89.dk/2010/05/16/browser-update-for-a-better-web/" rel="bookmark" class="crp_title">Browser Update, for a better web</a></li><li><a href="http://geronimo89.dk/2008/11/17/my-linux-journey-so-far/" rel="bookmark" class="crp_title">My Linux journey so far</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/09/15/what-really-makes-me-throw-up-about-apple-and-adobe/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>basic html forms</title>
		<link>http://geronimo89.dk/2010/09/14/basic-html-forms/</link>
		<comments>http://geronimo89.dk/2010/09/14/basic-html-forms/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 07:59:10 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[NoMA]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1353</guid>
		<description><![CDATA[What I&#8217;ve learned about homework in Integration is, that I really should keep stuff that I already have done and document it! I just finished an exercise about basic html forms. It was about alignment, the semantics of forms and how to style forms with html and css. My file may act a little as a reference [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://geronimo89.dk/demonstrations/web/html_forms/forms.html"><img class="alignnone size-full wp-image-1354" title="forms" src="http://geronimo89.dk/blog/wp-content/forms.png" alt="forms basic html forms" width="509" height="221" /></a></p>
<p>What I&#8217;ve learned about homework in Integration is, that I really should keep stuff that I already have done and document it! I just finished an exercise about basic html forms. It was about alignment, the semantics of forms and how to style forms with html and css. My file may act a little as a reference because I have included the common form elements in their correct structure, like usual fields, password fields, radio buttons, checkboxes and drop down menu.</p>
<p>While looking around on the web a little, I have some good ideas for future forms <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile basic html forms" class='wp-smiley' title="basic html forms" />  I find mine really boring now.</p>
<ul>
<li><a href="http://geronimo89.dk/demonstrations/web/html_forms/forms.html">Show basic html forms demo</a></li>
</ul>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2008/08/27/css-box-with-graphic-borders/" rel="bookmark" class="crp_title">CSS box, with graphic borders</a></li><li><a href="http://geronimo89.dk/2010/05/12/basic-practice/" rel="bookmark" class="crp_title">basic practice</a></li><li><a href="http://geronimo89.dk/2010/05/12/up-for-today/" rel="bookmark" class="crp_title">Up for today</a></li><li><a href="http://geronimo89.dk/2010/10/02/css3-close-up-transition/" rel="bookmark" class="crp_title">CSS3 Close Up: transition</a></li><li><a href="http://geronimo89.dk/2010/05/12/batch-editing-html-files/" rel="bookmark" class="crp_title">Batch editing html or text files</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/09/14/basic-html-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stuff and I&#8217;ve got a new baby!</title>
		<link>http://geronimo89.dk/2010/09/07/stuff-and-ive-got-a-new-baby/</link>
		<comments>http://geronimo89.dk/2010/09/07/stuff-and-ive-got-a-new-baby/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 16:49:26 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[Olympus]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1316</guid>
		<description><![CDATA[Great days right now, I&#8217;m having really cool time at the academy where I actually have time to experiment with creative stuff in my Design classes. The introduction camp with most of the students was a blast including some team oriented tasks and for me a lot of good talks in Danish and English. Today [...]]]></description>
			<content:encoded><![CDATA[<p>Great days right now, I&#8217;m having really cool time at the academy where I actually have time to experiment with creative stuff in my Design classes.<br />
The introduction camp with most of the students was a blast including some team oriented tasks and for me a lot of good talks in Danish and English.<br />
Today I had Communication for the first time, it&#8217;s totally relevant and will be one of my favorite classes I guess. It&#8217;s a lot of theory, but brutally important theory. Feels like part 5 of what we started back in school once. We&#8217;re just starting and having about different communication models, what is happening with the message and who you are targeting with it.<br />
Yesterday I received a wonderful gift, an Olympus iS-2000 automatic analogue camera with built in 35-135mm zoom lens. It&#8217;s a blast to try this beautiful camera! First thing I did is flipping a new film in. I&#8217;m so looking forward to try it out for portrait and some still life photography! (M. I owe you big time)</p>
<p><img class="alignnone size-full wp-image-1317" title="olympus" src="http://geronimo89.dk/blog/wp-content/olympus.jpg" alt="olympus Stuff and Ive got a new baby!" width="500" height="333" /><br />
I&#8217;m also planning my next photo-shoot right now, but the weather has to play nice on me to work it out. You&#8217;ll probably see the pictures when they are available <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Stuff and Ive got a new baby!" class='wp-smiley' title="Stuff and Ive got a new baby!" /> </p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/08/24/looking-ahead/" rel="bookmark" class="crp_title">Looking ahead</a></li><li><a href="http://geronimo89.dk/2010/08/30/day-1-noma/" rel="bookmark" class="crp_title">Day 1 @ NoMA</a></li><li><a href="http://geronimo89.dk/2010/08/29/shooting-in-the-rain/" rel="bookmark" class="crp_title">shooting in the rain</a></li><li><a href="http://geronimo89.dk/2011/06/10/exam-done/" rel="bookmark" class="crp_title">exam: done</a></li><li><a href="http://geronimo89.dk/2011/09/24/a-good-moon-rising/" rel="bookmark" class="crp_title">a good moon rising</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/09/07/stuff-and-ive-got-a-new-baby/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Day 3, not at NoMA</title>
		<link>http://geronimo89.dk/2010/09/01/day-3-not-at-noma/</link>
		<comments>http://geronimo89.dk/2010/09/01/day-3-not-at-noma/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 16:10:21 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[creativity]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[shooting]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1288</guid>
		<description><![CDATA[(This is me, still wearing the make-up from the shooting today, had to put a little goth element in it ) Today I slept over a little and we were doing HTML basics, so I skipped my class and went straight to my photoshoot for my first assignment in my design class. I&#8217;m very thankful [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1289" title="Photo on 2010-09-01 at 15" src="http://geronimo89.dk/blog/wp-content/Photo-on-2010-09-01-at-15.jpg" alt="Photo on 2010 09 01 at 15 Day 3, not at NoMA" width="400" height="300" /></p>
<p>(This is me, still wearing the make-up from the shooting today, had to put a little goth element in it <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Day 3, not at NoMA" class='wp-smiley' title="Day 3, not at NoMA" /> )</p>
<p>Today I slept over a little and we were doing HTML basics, so I skipped my class and went straight to my photoshoot for my first assignment in my design class. I&#8217;m very thankful that <a href="http://madamfeather.deviantart.com">Xenia</a> gave me a hand and took the photos for me. Afterwards of course the post-work, melting the photographies together using layer masks and adding the elements for the rest of the cover. I&#8217;m getting along with Photoshop pretty well, but it&#8217;s a little hard to get along with the keybindings, that differ a lot from the GIMP.</p>
<p>Click the image to see them full-size on deviantART:</p>
<p><a href="http://geronimo89.deviantart.com/art/hitchhiking-through-reality-177657376"><img class="alignnone size-full wp-image-1291" title="me_visual_curve_500" src="http://geronimo89.dk/blog/wp-content/me_visual_curve_500.jpg" alt="me visual curve 500 Day 3, not at NoMA" width="500" height="333" /></a></p>
<p><a href="http://geronimo89.deviantart.com/art/DVDhitchhiking-through-reality-177657648"><img class="alignnone size-full wp-image-1290" title="DVD-visual_me_500" src="http://geronimo89.dk/blog/wp-content/DVD-visual_me_500.jpg" alt="DVD visual me 500 Day 3, not at NoMA" width="500" height="342" /></a></p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/17/vector-posters/" rel="bookmark" class="crp_title">vector posters</a></li><li><a href="http://geronimo89.dk/2010/10/10/haarige-raupen-in-danemark/" rel="bookmark" class="crp_title">Haarige Raupen in Dänemark</a></li><li><a href="http://geronimo89.dk/2010/08/24/looking-ahead/" rel="bookmark" class="crp_title">Looking ahead</a></li><li><a href="http://geronimo89.dk/2010/11/18/assignment-dump/" rel="bookmark" class="crp_title">assignment dump</a></li><li><a href="http://geronimo89.dk/2010/05/22/click/" rel="bookmark" class="crp_title">click</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/09/01/day-3-not-at-noma/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Day 2, Adobe Adventure Land Suite</title>
		<link>http://geronimo89.dk/2010/08/31/day-2-adobe-adventure-land-suite/</link>
		<comments>http://geronimo89.dk/2010/08/31/day-2-adobe-adventure-land-suite/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 12:36:44 +0000</pubDate>
		<dc:creator>Jonathan Hethey</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[NoMA]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://geronimo89.dk/?p=1280</guid>
		<description><![CDATA[Today we started using Photoshop and doing some simple tasks with it. It wasn&#8217;t that hard, but a little disturbing that my books have not arrived yet. Most people around had their troubles making the Mac do what they wanted it too pretty humorous. Wel also got our first assignment today, and I&#8217;m totally excited [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1282" title="PS_CS5" src="http://geronimo89.dk/blog/wp-content/PS_CS5.png" alt="PS CS5 Day 2, Adobe Adventure Land Suite" width="400" height="400" /></p>
<p>Today we started using Photoshop and doing some simple tasks with it. It wasn&#8217;t that hard, but a little disturbing that my books have not arrived yet. Most people around had their troubles making the Mac do what they wanted it too <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Day 2, Adobe Adventure Land Suite" class='wp-smiley' title="Day 2, Adobe Adventure Land Suite" />  pretty humorous. Wel also got our first assignment today, and I&#8217;m totally excited about realising it <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Day 2, Adobe Adventure Land Suite" class='wp-smiley' title="Day 2, Adobe Adventure Land Suite" />  Really have to jump into the Adobe stuff to at least be able to do what I so far learned in Gimp, Inkscape, Scribus, Blender and various more. I&#8217;ll install Gimp, just in case something is bugging me too much. So far &#8220;how to do $keyword in Photoshop CS5&#8243; is my favourite google query. The woman (actually it&#8217;s not to bring the gender up for discussion, just to give further details) teaching us in Design is really kind, she&#8217;s just very busy and I guess I came up with some very deep or tricky questions today, but she&#8217;s helping anyways. It&#8217;s her first year, so I hope I soon can assist helping the people not really into this right now.</p>
<p>I also got my tablet working with some drivers that actually shouldn&#8217;t be used with it. I use a Trust TB-6300 and got <a href="http://www.trust.com/products/productdrivers.aspx?artnr=15908">these</a> drivers for a &#8220;Slimline Design Tablet for Mac&#8221;. Well, who am I to care, it works <img src='http://geronimo89.dk/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Day 2, Adobe Adventure Land Suite" class='wp-smiley' title="Day 2, Adobe Adventure Land Suite" /> </p>
<div id="crp_related"><h4>Related Posts:</h3><ul><li><a href="http://geronimo89.dk/2010/09/01/day-3-not-at-noma/" rel="bookmark" class="crp_title">Day 3, not at NoMA</a></li><li><a href="http://geronimo89.dk/2010/06/03/linux-und-das-tablet/" rel="bookmark" class="crp_title">Linux und das Tablet</a></li><li><a href="http://geronimo89.dk/2008/07/01/linux-mint/" rel="bookmark" class="crp_title">Linux Mint</a></li><li><a href="http://geronimo89.dk/2010/08/24/looking-ahead/" rel="bookmark" class="crp_title">Looking ahead</a></li><li><a href="http://geronimo89.dk/2009/04/15/getting-busier/" rel="bookmark" class="crp_title">getting busier</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://geronimo89.dk/2010/08/31/day-2-adobe-adventure-land-suite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

