<?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>Hinnerup Net &#187; Blandet</title>
	<atom:link href="http://www.hinnerup.net/permanent/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hinnerup.net</link>
	<description></description>
	<lastBuildDate>Thu, 19 Jan 2012 12:35:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Stolte gazeller</title>
		<link>http://www.hinnerup.net/en/permanent/2011/11/02/stolte-gazeller/</link>
		<comments>http://www.hinnerup.net/en/permanent/2011/11/02/stolte-gazeller/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 08:14:33 +0000</pubDate>
		<dc:creator>Tobias Hinnerup</dc:creator>
				<category><![CDATA[Blandet]]></category>

		<guid isPermaLink="false">http://www.hinnerup.net/?p=1559</guid>
		<description><![CDATA[Erhvervsavisen Børsen har kåret Hinnerup Net A/S som Gazellevirksomhed &#8211; på baggrund af en dokumenteret sund og bæredygtig udvikling i virksomheden over en længere periode. Særlig i en tid hvor &#8220;finanskrise&#8221; er blevet et hverdagsord, er det naturligvis noget vi i høj grad er stolte af, og som vi håber at kunne leve op til [...]]]></description>
			<content:encoded><![CDATA[<p><a style="float: right;" href="http://www.hinnerup.net/wp-content/uploads/2011/11/Gazelle2011.png"><img src="http://www.hinnerup.net/wp-content/uploads/2011/11/Gazelle2011.png" alt="" title="Gazelle2011" width="132" height="100" class="alignright size-full wp-image-1562" /></a>Erhvervsavisen Børsen har kåret Hinnerup Net A/S som Gazellevirksomhed &#8211; på baggrund af en dokumenteret sund og bæredygtig udvikling i virksomheden over en længere periode.</p>
<p>Særlig i en tid hvor &#8220;finanskrise&#8221; er blevet et hverdagsord, er det naturligvis noget vi i høj grad er stolte af, og som vi håber at kunne leve op til også fremadrettet. </p>
<p>Vi tager det som en cadeau til vores medarbejdere, kunder og øvrige samarbejdspartnere, der har båret vores strategi om langsigtede samarbejder, baseret på exceptionelle kompetencer ud i livet &#8211; med overbevisende success.</p>
<p>Med det som afsæt, forventer vi også fremadrettet at kunne understøtte og videreudvikle den base af viden og færdigheder inden for vores virkefelt der har bragt os hertil. Vi glæder os til også de næste mange år at være en værdifuld støtte og foretrukken samarbejdspartner for vores kunder.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerup.net/en/permanent/2011/11/02/stolte-gazeller/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS3 and Intellisense for CSS3</title>
		<link>http://www.hinnerup.net/en/permanent/2010/09/14/css3-og-intellisense-til-css3/</link>
		<comments>http://www.hinnerup.net/en/permanent/2010/09/14/css3-og-intellisense-til-css3/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 13:22:43 +0000</pubDate>
		<dc:creator>Lars Støttrup</dc:creator>
				<category><![CDATA[Blandet]]></category>
		<category><![CDATA[Gode råd]]></category>
		<category><![CDATA[Programmering]]></category>

		<guid isPermaLink="false">http://www.hinnerup.net/?p=1043</guid>
		<description><![CDATA[This post will focus on CSS3, and later how to get Visual Studio to recognize CSS3 attributes. The CSS3 attributes we will focus on will be: border-radius and box-shadow. CSS3 isn&#8217;t finalized yet, so it&#8217;s always a good idea to use browser specific tags, such as &#8220;-o-box-shadow, -moz-box-shadow, -webkit-box-shadow&#8221;. These will be use in the [...]]]></description>
			<content:encoded><![CDATA[<p>This post will focus on CSS3, and later how to get Visual Studio to recognize CSS3 attributes.<br />
The CSS3 attributes we will focus on will be: border-radius and box-shadow.<br />
CSS3 isn&#8217;t finalized yet, so it&#8217;s always a good idea to use browser specific tags, such as &#8220;-o-box-shadow, -moz-box-shadow, -webkit-box-shadow&#8221;.<br />
These will be use in the rest of this post, but not be part of the code-examples.<br />
<em>Note: As of writing this article, Internet Explorer doesn&#8217;t support CSS3 at all, yet.</em></p>
<p>Lets begin with a simple unstyled button:</p>
<input type="button" value="Button" />
<p>Lets start by rounding the corners using the border-radius attribute:</p>
<pre lang="css">.button1
{
   border-radius: 6px / 4px;
   /* alternativ: border-radius: 6px 6px 6px 6px / 4px 4px 4px 4px */
}</pre>
<input style="padding:4px; border-radius: 6px / 4px; -o-border-radius: 6px / 4px; -moz-border-radius: 6px / 4px; -webkit-border-radius: 6px / 4px;" type="button" value="Knap" />
<p>The syntax for &#8220;border-radius&#8221; is similar to the other &#8220;border&#8221;-attributes. The edge in each corner is &#8220;pulled&#8221; down over an invisible circle, which has the defined radius. If you, as I have chosen here, use &#8220;/&#8221; then the circle will have 2 radii, and thus become oval.<br />
The complete syntax can be found <a href="http://www.w3.org/TR/css3-background/#the-border-radius">here</a>.</p>
<p>Lets try &#8220;box-shadow&#8221;:</p>
<pre lang="css">.button2
{
   background-color:#606EA6;
   border:1px solid #3B4466;
   color:#FFFFFF;
   box-shadow:0 3px 3px #8CA0F2 inset, 0 -5px 2px #3B4466 inset, 2px 2px 3px black;
}</pre>
<input style="padding:4px; background-color: #606ea6; border: 1px solid #3B4466; color: #ffffff; box-shadow: 0 3px 3px #8CA0F2 inset, 0 -5px 2px #3B4466 inset, 2px 2px 3px black; -o-box-shadow: 0 3px 3px #8CA0F2 inset, 0 -5px 2px #3B4466 inset, 2px 2px 3px black; -moz-box-shadow: 0 3px 3px #8CA0F2 inset, 0 -5px 2px #3B4466 inset, 2px 2px 3px black; -webkit-box-shadow: 0 3px 3px #8CA0F2 inset, 0 -5px 2px #3B4466 inset, 2px 2px 3px black; border-radius: 6px / 4px; -o-border-radius: 6px / 4px; -moz-border-radius: 6px / 4px; -webkit-border-radius: 6px / 4px;" type="button" value="Knap" />
<p>The &#8220;box-shadow&#8221; attribute allows an unlimited amount of shadows, as long as they are comma-separated. On the button above, we thus add 3 shadows. The first 2 parameters define horizontal/vertical placement of the shadow; third param defines how strong a blur effect the shadow should have, where 0 is &#8220;no blur&#8221;. Then the color is defined, and &#8220;inset&#8221; (can be left out) defines that the shadow should be inside the element, as opposed to the outside.</p>
<p>So how do we get Visual Studio to recognize these new attributes?<br />
<em>(If you are not comfortable messing with the Windows registry, you might wanna skip this step.)</em><br />
Visual Studio keeps the existing templates in your Visual Studio installation folder, in the subfolder: \Common7\Packages\1033\schemas\CSS<br />
Take a copy of css21.xml and call the new file css3draft.xml. Open the file and find a section called &#8220;Edges Properties&#8221;.</p>
<p>Insert 2 new nodes with the following:</p>
<pre lang="xml">
<cssmd:property-def _locID="box-shadow" _locAttrData="description,syntax" type="composite"
            description="Attaches one or more drop-shadows to the box"
            syntax="inset? &amp;&amp; [ length{2,4} &amp;&amp; color? ] [ , inset? &amp;&amp; [ length{2,4} &amp;&amp; color? ]*" />

<cssmd:property-def _locID="border-radius" _locAttrData="description,syntax" type="composite"
            description="Defines the radii of a quarter ellipse that defines the shape of the corners of the outer border edge of an element"
            syntax="[ length | percentage ]{1,4} [ / [ length | percentage ]{1,4} ]?" />
</pre>
<p>These define our 2 new CSS3 attributes.</p>
<p>Run regedit.exe and search through HKEY_LOCAL_MACHINE for a key (and only keys!) with the GUID: {A764E895-518D-11d2-9A89-00C04F79EFC3}<br />
You have found the correct GUID if it has a subkey by the name &#8220;Schemas&#8221; (and still remain in the HKEY_LOCAL_MACHINE tree).<br />
This subkey probably contains keys named &#8220;Schemas 1&#8243; up to &#8220;Schema 4&#8243;<br />
Make a key by the name &#8220;Schema 5&#8243; and two strings with the names &#8220;File&#8221; and &#8220;Friendly Name&#8221;.<br />
Set &#8220;File&#8221; to css3draft.xml and &#8220;Friendly Name&#8221; to whatever you want, for example &#8220;CSS 3 Draft&#8221;.</p>
<p>The styles menubar in Visual Studio will now have an extra value in it&#8217;s drop-down list of CSS schemas.<br />
<img src="http://www.hinnerup.net/wp-content/uploads/2010/09/2010-09-14_1459.png" alt="Visual Studio Style Menu Bar" title="Visual Studio Style Menu Bar" width="306" height="29" class="alignnone size-full wp-image-1110" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerup.net/en/permanent/2010/09/14/css3-og-intellisense-til-css3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Glædelig Jul og Godt Nytår</title>
		<link>http://www.hinnerup.net/en/permanent/2009/12/24/gl%c3%a6delig-jul-og-godt-nytar/</link>
		<comments>http://www.hinnerup.net/en/permanent/2009/12/24/gl%c3%a6delig-jul-og-godt-nytar/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 12:55:09 +0000</pubDate>
		<dc:creator>Tobias Hinnerup</dc:creator>
				<category><![CDATA[Blandet]]></category>

		<guid isPermaLink="false">http://www.hinnerup.net/?p=747</guid>
		<description><![CDATA[Hinnerup Net ønsker alle vore kunder og samarbejdspartnere en glædelig jul og et godt nytår. Herfra tak for året der går på hæld, med alle de bedste ønsker for de næstkommende.]]></description>
			<content:encoded><![CDATA[<p>Hinnerup Net ønsker alle vore kunder og samarbejdspartnere en glædelig jul og et godt nytår.</p>
<p>Herfra tak for året der går på hæld, med alle de bedste ønsker for de næstkommende.</p>
<p><a href="http://www.hinnerup.net/wp-content/uploads/2009/12/DSCN0291.JPG"><img src="http://www.hinnerup.net/wp-content/uploads/2009/12/DSCN0291-300x225.jpg" alt="Chokolade og guf hører til!" title="Ønsker om Glædelig Jul fra Hinnerup Net" width="475" class="size-medium wp-image-750" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerup.net/en/permanent/2009/12/24/gl%c3%a6delig-jul-og-godt-nytar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

