<?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>darice.org &#187; Websites</title>
	<atom:link href="http://www.darice.org/category/websites/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darice.org</link>
	<description>A weblog about everything</description>
	<lastBuildDate>Mon, 19 Jul 2010 15:30:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>@font-face made easy</title>
		<link>http://www.darice.org/2010/01/24/font-face-made-easy/</link>
		<comments>http://www.darice.org/2010/01/24/font-face-made-easy/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 19:14:38 +0000</pubDate>
		<dc:creator>Darice de Cuba</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://www.darice.org/?p=1087</guid>
		<description><![CDATA[Update Well turns out the CSS code given before doesn&#8217;t work with IE. The problem with IE that I could figure so far is that it needs to have local src. @font-face { font-family: 'MyFont'; src: url('fonts/MyFont.eot'); src: local('My Font'), local('MyFont'), url('fonts/MyFont.ttf') format('truetype'); } Without the &#8220;local&#8221; font-face won&#8217;t work in IE. /&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;/ I&#8217;m working [...]]]></description>
			<content:encoded><![CDATA[<h3>Update</h3>

<p>Well turns out the CSS code given before doesn&#8217;t work with IE. The problem with IE that I could figure so far is that it needs to have local src.</p>

<p><code>@font-face {
    font-family: 'MyFont';
    src: url('fonts/MyFont.eot');
    src: local('My Font'), local('MyFont'), url('fonts/MyFont.ttf') format('truetype');
}</code></p>

<p>Without the &#8220;local&#8221; font-face won&#8217;t work in IE.</p>

<p>/&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;/</p>

<p>I&#8217;m working on a client website that requires a custom font on the navigation menu&#8217;s and headers. The font came in the old Apple format, PostScript type. The easiest way to use this would be using sIFR or Cufon. But I am partial to those methods due that they require Flash and/or JavaScript.</p>

<p>To use font-face I need a TrueType(.ttf) file for Gecko and Webkit browers and Embedded OpenType(.eot) for Internet Explorer.</p>

<p>First thing I did was a Google search to find out how to convert PostScript type font. This can be done by opening your Terminal, navigate to the location of the font you want to convert and run the following command:
<code>
cat "MyFont/..namedfork/rsrc" > "MyFont.dfont"</code></p>

<p>This will convert the PostScript to dfont.</p>

<p>Through Googling I found a free <a href="http://onlinefontconverter.com/">online converter</a> where you can upload your dfont file and convert it to TrueType(.ttf). You can convert to eot. also but the file it generated didn&#8217;t work for me. Instead I used the command line tool  <a href="http://code.google.com/p/ttf2eot/">TTF2EOT</a> I found via Jonathan Snook&#8217;s <a href="http://snook.ca/archives/html_and_css/becoming-a-font-embedding-master">Font Embed article</a>.</p>

<p>So now I had a .ttf and an eot. file. Next was a working CSS. I used the following CSS code:</p>

<p><code>@font-face {
    font-family: 'MyFont';
    src: url('fonts/MyFont.eot');
    src: url('fonts/MyFont.ttf') format('truetype');
}</code><em>wrong code, see above update</em></p>

<p>Good practice shows you have to use the local: method too in case users have the font on their computer. But in this case the chance is of that is neglect able. So I opted to keep the code to a minimum.</p>

<p>The simplicity of font-face makes me really want there to be a license solution for web fonts that doesn&#8217;t require an intermediate. I&#8217;m not a browser tech, but of if there could be a way to to protect the font files from direct download or an encryption method, that already would go a long way to protecting licensed fonts.</p>

<p>But as long as there isn&#8217;t I will use free fonts and in commercial situations <a href="http://typekit.com/">Typekit</a> will have to do, that is if they have the font in their library.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darice.org/2010/01/24/font-face-made-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storage Nine web hosting</title>
		<link>http://www.darice.org/2009/09/14/storage-nine-web-hosting/</link>
		<comments>http://www.darice.org/2009/09/14/storage-nine-web-hosting/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 21:31:38 +0000</pubDate>
		<dc:creator>Darice de Cuba</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[feed a fever]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.darice.org/?p=866</guid>
		<description><![CDATA[For some time already I wanted my own dedicated server, but it would be just a waist of money to get one for this weblog. Also in most cases of working on websites for clients I have to mail their hosting support to fix several things. Did you know that what used to be TextDrive [...]]]></description>
			<content:encoded><![CDATA[<p>For some time already I wanted my own dedicated server, but it would be just a waist of money to get one for this weblog. Also in most cases of working on websites for clients I have to mail their hosting support to fix several things. Did you know that what used to be TextDrive hosting, now Joyent and soon some other company, still has the same unusable admin panel to handle email creation, database, etc. For more then four years already.</p>

<p>Support is something difficult to guarantee, it depends who handles your support more then what the company promises. When I send in a support ticket I always make sure to specify the problem, what I already tried to do to fix it, etc. So it&#8217;s obvious that I know my stuff. Yet a lot of time I get replies assuming I&#8217;m a noob.</p>

<p>In any case I just wanted full control and want to provide the same for others. So together with someone else we got a dv server(rage) from Media Temple. Yesterday it went online so this week when my new website design is done I&#8217;ll be moving this weblog to its new home.</p>

<p>The price range for the packages is based on the market on Aruba and the Netherlands. Also it&#8217;s not the intention to stuff the server full with websites risking it to random sites slowing it down or affecting it in any other way. I&#8217;ll be doing the support myself together with my server partner. Also I&#8217;ll be focusing on clients with no tech knowledge so I&#8217;m the one who will be doing the basic things like creating databases, emails, etc.</p>

<p>So in account of all the above I came with <a href="http://storagenine.com/">Storage Nine</a>. I think of it of web hosting services with a personal touch. In any case it will be for website clients I already have, and small to middle business who need website or/and an email server.</p>

<p>And as an extra because Google tells me a lot of people look for it: a specific package to <a href="http://storagenine.com">host your Feed a Fever app</a>. I run my own Fever install on the server and it runs well, it passed the compatibility test without problems. I&#8217;ll be doing a write up shortly about how I moved my installation from one host to the other.</p>

<p>So to sum it up I&#8217;ll continue my freelance services and now web hosting under <a href="http://storagenine.com/">Storage Nine</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darice.org/2009/09/14/storage-nine-web-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello CSS3</title>
		<link>http://www.darice.org/2009/04/18/hello-css3/</link>
		<comments>http://www.darice.org/2009/04/18/hello-css3/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 20:03:42 +0000</pubDate>
		<dc:creator>Darice de Cuba</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.darice.org/?p=493</guid>
		<description><![CDATA[Yesterday finally inspiration hit me and in four hours I photoshopped and coded a new design for this website. I was messing already a month ago with a new design but I always want too much and to complicated. Then I thought keep graphics to a minimum, keep it simple. So I did what usually [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday finally inspiration hit me and in four hours I photoshopped and coded a new design for this website. I was messing already a month ago with a new design but I always want too much and to complicated. Then I thought keep graphics to a minimum, keep it simple.</p>

<p>So I did what usually delivers my best design, I started from a <a href="http://www.flickr.com/photos/darice/114062702/in/set-1664581" class="pic" />photo</a>. I used the sky color for the background, and other hues of blue for the text. Then I tried a contrasting color, I wanted green first but wasn&#8217;t real happy with it and then I decided why not yellow. You don&#8217;t see a lot of yellow on websites.</p>

<p>For the bold text I went with Courier New, because it is the same font the text of my tattoo is in. And Helvetica for the smaller text. Because Helvetica is cool. And white was just the logical color to go with.</p>

<p>Considering I was keeping graphics at a minimum I still wanted some nice effects, enter CSS3. Here is where <a href="http://www.css3.info/preview/rounded-border/">CSS3.info</a> came in handy. I know IE7 and lesser don&#8217;t support it but I don&#8217;t even care for IE6 in connection with my personal website, I leave that headache for work. And people who have IE7 are way more likely to upgrade to IE8.</p>

<p>For the Twitter status and Flickr preview I&#8217;m using Garrett Murray&#8217;s <a href="http://github.com/garrettmurray/js_twitter_flickr/tree/master">js_twitter_flickr</a>. He also uses some CSS3 selectors like <code>text-overflow: ellipsis;</code></p>

<p>Hopefully now with IE8 being released the likes of Dan Cederholm, Andy Budd and Eric Meyer will release books fully dedicated to CSS3. That&#8217;s is if they haven&#8217;t already, I have to check Amazon for the latest. Meanwhile I&#8217;m anciously waiting for <a href="http://www.fivesimplesteps.co.uk/">A Practical Guide to Designing for the Web</a> to be delivered.</p>

<p>But summing up, after a year and 4 months I have a fresh new design, in my favorite color blue. The WordPress template is clean and validates. Which I couldn&#8217;t say of the previous template.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darice.org/2009/04/18/hello-css3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Books I read recently and some thoughts</title>
		<link>http://www.darice.org/2009/02/09/books-i-read-recently-and-some-thoughts/</link>
		<comments>http://www.darice.org/2009/02/09/books-i-read-recently-and-some-thoughts/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 12:05:07 +0000</pubDate>
		<dc:creator>Darice de Cuba</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.darice.org/?p=458</guid>
		<description><![CDATA[Last week I spend reading Don&#8217;t make me think by Steve Krug. It was for work that I decided to purchase the book and I&#8217;m glad I did. It isn&#8217;t often you get such good books in content and writing. Now that I read it I see websites from a whole different point of view. [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I spend reading <a href="http://www.amazon.com/exec/obidos/ASIN/0321344758">Don&#8217;t make me think</a> by <a href="http://www.sensible.com/buythebook.html">Steve Krug</a>. It was for work that I decided to purchase the book and I&#8217;m glad I did. It isn&#8217;t often you get such good books in content and writing. Now that I read it I see websites from a whole different point of view.</p>

<p>I was always aware my own weblog isn&#8217;t the best usability wise, but then my weblog is not focused in making money or providing valuable information. It&#8217;s my personal playground and outlet on the internet. But now that I&#8217;m working to better my usability knowledge I&#8217;m thinking about a new design more user focused&#8230;it&#8217;s just I quite like my current design.</p>

<p>I recently also purchased <a href="http://fivesimplesteps.co.uk/">Five Simple Steps</a> by Mark Boulton.</p>

<blockquote>A simple approach to applying graphic design to modern web design.</blockquote>

<p>I read the first two chapters and it promises to be a good read. I&#8217;m not completly inept at designing but I&#8217;m more of a coder. So I hope this book will give me some new insight on how to aproach design. While I do like that I&#8217;m able to do both design(at certain level) and code(front and server side). Sometimes it would be great if I could be a guru on one of them. But I&#8217;m more a jack of all master of none. But I have nothing to complain considering it was in year 2000 that I learned what HTML is, seems like ages ago.</p>

<p>Reading these books also made me think, why there isn&#8217;t any book in those format available for SQL. What I have seen a few times in the field is that lots of people are real strong at PHP or ASP. But the the databases lacks a lot. If it wasn&#8217;t for college I wouldn&#8217;t be good at databases at all. But there we had written and practice exam on relational databases and SQL. It was a prety hard course which forced me to really delve into it.</p>

<p>So now out of habit I will spend a few hours mapping out a database, thinking of all possible relations and possible sitauations. This way I minimize the chance of having to rehaul the database if a script is adjusted dramatically in the future. But on SQL queries a book would be handy, with real life examples using apps like WordPress, or some other popular application.</p>

<p>I&#8217;ll be keeping an eye out for more useful books like these. Like &#8220;Don&#8217;t make me think&#8221; has been out for years already and just now came to my attention how such a good book it is. So sometimes the good ones slip under the radar. If you know any book I might like let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darice.org/2009/02/09/books-i-read-recently-and-some-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11 things about websites</title>
		<link>http://www.darice.org/2005/06/16/11-things-about-websites/</link>
		<comments>http://www.darice.org/2005/06/16/11-things-about-websites/#comments</comments>
		<pubDate>Thu, 16 Jun 2005 20:20:52 +0000</pubDate>
		<dc:creator>Darice de Cuba</dc:creator>
				<category><![CDATA[Oldies]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.darice.org/?p=307</guid>
		<description><![CDATA[Last month I wrote a post about the pitfalls of being a webdesigner During the writing I came with the idea about a guide for business owners. Obviously a 101 guide is not the logical thing so I settled on 11 things, uneven numbers have more cache also. My idea was for the 11 things [...]]]></description>
			<content:encoded><![CDATA[<p>Last month I wrote a post about <a href="/2005/05/31/the-pitfalls-of-being-a-webdesignerdeveloper/">the pitfalls of being a webdesigner</a> During the writing I came with the idea about a guide for business owners. Obviously a 101 guide is not the logical thing so I settled on 11 things, uneven numbers have more cache also.</p>

<p>My idea was for the 11 things guide to be short and to the point. I&#8217;m not trying to write a book or a paper. After brainstorming on and off and consulting a friend I came up with 11 strong and important points. Take note that these are my ideas based on experience and common knowledge. It was written for business owners or people who want to get a website done by a web designer.</p>

<p>Get your copy of <a href="/files/11things.pdf">11 things about websites, A guide for business owners</a>.</p>

<p>I just finished this version, no one has proof read it or checked the 11 points. So consider this more like a concept. If you have suggestions, comment or anything let me know. There is always room for improvement.</p>

<p><strong>11 thing about websites</strong> <em>A guide for business owners</em></p>

<ol>
<li><p>A website is a composition consisting of fonts, colors, images and layout that match. This is all pulled together to enhance the most important element of a website, it&#8217;s content.</p></li>
<li><p>Good websites are hand coded by web designers. Using an editor like Frontpage or Publisher is a huge No No. See also point 10</p></li>
<li><p>It takes time to create quality website. Approach a web designer on time to allow for good planning.</p></li>
<li><p>Flash intros don’t improve your business. Most users will hit the ‘skip’ button right away. Flash websites don’t equal ‘easy to update’. Flash is useful for theme websites, a good example is www.jkrowling.com website of ‘Harry Potter’ author.</p></li>
<li><p>Requesting a design change after the website is done requires time. The design has to go back to the ‘design table’ and the websites re-coded. See also point 3</p></li>
<li><p>A clean coded website and good use of keywords is more effective to search engines then an expensive search engine booster. By good use of keywords meaning max 5 words. A clean coded site and good use of content is a must for a good ranking.</p></li>
<li><p>Copying a design or content from other websites without permission is against copyright. Each company has to provide its own product/service description.</p></li>
<li><p>Without content you don’t have a website. A web designer needs content to provide a fitting design and to deliver a complete website.</p></li>
<li><p>You get what you deliver. The web designer is not responsible for errors in the content delivered by the company; this is the company’s responsibility.</p></li>
<li><p>Having a non-web designer modifying the website with editors such as Frontpage or Publisher will break the design and code. With consequence that your website will not be displayed correctly in all browsers and computer platforms.</p></li>
<li><p>Know what you want before hiring a web designer. This will save you both time and money.</p></li>
</ol>

<p><em>Update 1 &#8211; 22/06/2005</em></p>

<p>The updated version of <a href="/files/11things.pdf">11 things about websites, A guide for business owners</a> is up for grabs. You can publish it on your own website or somewhere else as long as you put the source.</p>

<p>For formality I have licensed it:
<a href="http://creativecommons.org/licenses/by -nc-sa/2.5/">Creative Commons Attribution-NonCommercial-ShareAlike License</a>
You can find this back in the meta data.</p>

<p>Thanks to those who posted and e-mailed suggestions and helped in other ways.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darice.org/2005/06/16/11-things-about-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
