<?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>Ondina</title>
	<atom:link href="http://ondina.co/feed/" rel="self" type="application/rss+xml" />
	<link>http://ondina.co</link>
	<description></description>
	<lastBuildDate>Mon, 04 Jun 2012 15:14:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Getting started with Django</title>
		<link>http://ondina.co/2012/06/getting-started-with-django/</link>
		<comments>http://ondina.co/2012/06/getting-started-with-django/#comments</comments>
		<pubDate>Fri, 01 Jun 2012 17:21:29 +0000</pubDate>
		<dc:creator>Stefano Palazzo</dc:creator>
				<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://ondina.co/?p=114</guid>
		<description><![CDATA[Running Django on Ondina is easy! Before we start, you need to have a domain and create the Python site in the Ondina Control Panel. &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2012/06/getting-started-with-django/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p>Running Django on Ondina is easy! Before we start, you need to have a domain and create the Python site in the Ondina Control Panel. It should look like this:</p>
<p style="text-align: center;"><a href="http://ondina.co/wp-content/uploads/2012/02/select_site1.png"><img class="aligncenter  wp-image-116" src="http://ondina.co/wp-content/uploads/2012/02/select_site1.png" alt="Selecting a your Python site in the Control Panel" width="620" /></a></p>
<p>If you can’t reach your site right away, wait a few minutes for the world’s DNS servers to catch up. When you can reach your site, start by logging in via SSH:</p>
<pre>ssh pythonfu.com</pre>
<p>Now we can download and build Django.</p>
<pre>wget http://www.djangoproject.com/m/releases/1.4/Django-1.4-alpha-1.tar.gz
tar xvfz Django-1.4-alpha-1.tar.gz
python Django-1.4-alpha-1/setup.py build</pre>
<p>Afterwards, we can copy the django package to ~/etc/python2.7/ and clean up:</p>
<pre>mv Django-1.4-alpha-1/build/lib.linux-x86_64-2.6/django/ ~/etc/python2.7/django
rm -rf Django-1.4-alpha-1/ Django-1.4-alpha-1.tar.gz</pre>
<p>To verify that Django has been installed correctly, you can fire up <code>python</code> and type <code>import django</code>. If there’s no error, we can go on to installing an actual application</p>
<h2>Creating the first app</h2>
<p>After we change to the site’s directory, we can use the django-admin.py tool to create a Hello World site:</p>
<pre>cd domains/pythonfu.com/
python ~/etc/python2.7/django/bin/django-admin.py startproject yoursite</pre>
<h3>Connecting WSGI</h3>
<p>We’re going to use Python’s Web Server Gateway Interface, WSGI, to run the site. Django ships the entry point we need in a file called “wsgi.py”. We only need to make a small change to that file.:</p>
<pre>nano domains/pythonfu.com/yoursite/yoursite/wsgi.py</pre>
<p>Right at the top of the file, insert these three lines. Make sure to change the paths. If you have a typo in this file, domains/pythonfu.com/logs/error.log will give you more information.</p>
<pre>import sys

sys.path.insert(0, "/home/stefano/etc/python2.6/")
sys.path.insert(0, "/home/stefano/domains/pythonfu.com/yoursite")</pre>
<p>Hit Ctrl+O, Enter to save and Ctrl+X to quit.</p>
<p>Now we can move back to the Control Panel to set up the application. Start by going to the Python section of your site, set your Alias, in this case <code>"/"</code>, and the path of <code>wsgi.py</code>, in this case <code>“yoursite/yoursite/wsgi.py"</code>:</p>
<p style="text-align: center;"><a href="http://ondina.co/wp-content/uploads/2012/02/site_settings.png"><img class="aligncenter  wp-image-123" src="http://ondina.co/wp-content/uploads/2012/02/site_settings.png" alt="Changing the python settings in the Control Panel" width="620" /></a></p>
<p>&nbsp;</p>
<p>After a few seconds, you should see Django running on your site:</p>
<p style="text-align: center;"><a href="http://ondina.co/wp-content/uploads/2012/02/done.png"><img class="aligncenter  wp-image-125" src="http://ondina.co/wp-content/uploads/2012/02/done.png" alt="Django running on your site" width="620" /></a></p>
<p>And that’s it! You can now move on to the <a href="https://docs.djangoproject.com/en/dev/intro/tutorial01/">Django tutorial</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2012/06/getting-started-with-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Support belongs to the customer: Introducing Tracker</title>
		<link>http://ondina.co/2012/02/introducing-tracker/</link>
		<comments>http://ondina.co/2012/02/introducing-tracker/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 18:51:48 +0000</pubDate>
		<dc:creator>Stefano Palazzo</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tracker]]></category>

		<guid isPermaLink="false">http://ondina.co/?p=130</guid>
		<description><![CDATA[Customer support is broken. As developers, we are very much used to the idea of filing a bug report and having it read by the &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2012/02/introducing-tracker/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p>Customer support is broken.</p>
<p>As developers, we are very much used to the idea of filing a bug report and having it read by the maintainer of a project. We are at the very end of the support chain right away. This idea is quite alien to traditional companies. It normally works like this:</p>
<ul>
<li>A technician, or more likely a rep, receives a phone call from a customer. If they have a real problem, a new ticket is created.</li>
<li>The rep tries their very best to file a support ticket that will be useful to lower-level support staff working in the data centre.</li>
<li>As the issue is being worked on, the support ticket is updated with information about possible causes and attempts to fix the problem. If the report is missing some key information, either go back to step 2, or &#8211; even worse &#8211; halt.</li>
<li>When the issue is resolved, the support ticket will be marked &#8220;fixed&#8221;.</li>
</ul>
<p>What&#8217;s wrong with this workflow? Well the <strong>customer is excluded</strong> from all steps except the first. They have no insight into the process, have no idea about the cause of the issue. All they know is that something is broken, and they can only hope that somebody has a minute to work on it. Often they don&#8217;t even know when the issue has been fixed.</p>
<p>Some very good companies provide support forums, maybe even public bug trackers. These are hard to use and unhelpful, but at least the customer has something to do while his service is out of order.</p>
<p>&nbsp;</p>
<h3>What&#8217;s the solution?</h3>
<p>If you mean well, there is no reason to hide the fact that software systems will have issues. The smart company includes the customer, not trying to make them feel like they&#8217;re important, but showing them that they actually are.</p>
<ul>
<li>A customer files a report, using an easy to understand interface, and having the freedom to not learn the technical process of issue tracking before they do.</li>
<li>The issue report is constantly edited, updated, commented on by both other customers and technical staff. From small things like a &#8220;+1, this issue affects me&#8221; to detailed technical reports that are helpful for technicians.</li>
<li>When the issue is resolved, they have an insight into what went wrong and how staff went about fixing it. They can estimate how long it takes, and they have a real sense that people are working to help them do the things they need to do.</li>
</ul>
<p>The idea is straightforward, but is almost never implemented well. These are some attempts at customer-centric support I&#8217;ve come across:</p>
<ul>
<li>Exposing Bugzilla, Launchpad, Redmine to your customer (i.e. treating your customer as unpaid technical staff)</li>
<li>Support forums, Q&amp;A systems, things like <em>get satisfaction </em>(i.e. the modern equivalent of a suggestion box)</li>
<li>Twitter accounts, asking the customer to describe their important issue in 140 characters to someone, hopefully human, who may or may not respond.</li>
</ul>
<h3>This was not good enough</h3>
<p>Ondina, we understand that your issues are just that, issues. They are not discussions, questions, inquiries, suggestions, nor crowdsourced debugging. Tracker has been designed with that in mind.</p>
<p><a href="http://ondina.co/wp-content/uploads/2012/02/tracker.png"><img class="aligncenter size-medium wp-image-139" src="http://ondina.co/wp-content/uploads/2012/02/tracker.png" alt="Tracker Screenshot" /></a></p>
<h3>Easy to use</h3>
<p>Even if you are technically versed, it should not be your job to file a perfect report that a technician can work on right away. You are allowed to put as little or as much effort into your issue report as you want. Tracker will make it easy for staff to update the issue until it is actionable, and it lets you check up on the progress as often as you want.</p>
<h3>Bringing customers and technicians together</h3>
<p>While dedicated support staff might make the developers&#8217; lives easier, some customers would actually rather talk to low-level engineers. Tracker is therefore designed with both customers and technicians in mind. Supports staff is still able to do their bit, improving issues with detail the customer can&#8217;t (or doesn&#8217;t want to, shouldn&#8217;t have to) provide, but at the same time, developers, support, and the customer get to be on the same platform.</p>
<h3>Tracker is transparency</h3>
<p>At the heart of tracker is the idea of being transparent, open, and accessible. We set out to deliver a very high quality experience, a feat impossible to archive without constant interaction with you.</p>
<h3>One more thing!</h3>
<p>If you like the way tracker works, and we hope you do, the code is available freely, so you can install it, use it for your own projects, or just play with it. The license is GPLv3, and <a title="Tracker on GitHub" href="https://github.com/OndinaHQ/Tracker" target="_blank">the repository is up on GitHub</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2012/02/introducing-tracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to the future, welcome to Ondina</title>
		<link>http://ondina.co/2012/02/welcome-to-ondina/</link>
		<comments>http://ondina.co/2012/02/welcome-to-ondina/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 03:11:36 +0000</pubDate>
		<dc:creator>Marco Ceppi</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ondina.co/?p=111</guid>
		<description><![CDATA[We started 10 months ago with a mission to re-design shared webhosting. Today we release the first part one of that plan, a plan to &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2012/02/welcome-to-ondina/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p>We started 10 months ago with a mission to re-design shared webhosting. Today we release the first part one of that plan, a plan to bring quality to a corner of an industry which has lacked real innovation in years. With this Private Preview we hope to show the world that shared webhosting doesn&#8217;t have to be about how many corners you can cut, or how many customers can fit on one server. Quality can exist in a shared environment and with this first step we&#8217;re here to prove that.</p>
<p>The first batch of Private Preview invitations go out. If you&#8217;ve received one, simply follow the instructions to get started. If you&#8217;ve signed up but have yet to receive an email, fear not! We&#8217;ll be sending additional invitations as time progresses. Everyone who has signed up before this date should have an invite to the platform within the next three weeks. That being said here&#8217;s what you can expect from the platform:</p>
<ul>
<li>PHP Support</li>
<li>Python Support via WSGI</li>
<li>Email Accounts and Forwarders</li>
<li>MySQL Databases</li>
<li>Multiple Sites per Account</li>
<li>Simple DNS Management</li>
<li>Key based SSH access</li>
<li>Totally awesome Control Panel</li>
<li>Solid platform built on top of rock solid <a href="http://www.ubuntu.com/business/server/overview">Ubuntu servers</a></li>
</ul>
<p>This is just a short list of the features available for testing. In the upcoming months, during our Private Preview we plan on adding some of the following:</p>
<ul>
<li>Ruby Support</li>
<li>1 Click installations for all the popular software</li>
<li>Deep account analytics for monitoring usage and growth</li>
<li>Domain purchasing</li>
</ul>
<p>As well as many other improvements and features proposed by you during this Private Preview. To kick off this week long celebration we&#8217;ll be providing video walkthroughs of all the sections of the Control Panel completed thus far, as well as a surprise for all our Private testers for their hard work.</p>
<p>So what do we ask of you, the tester? Simply test our services, put them to use, and anytime you find a bug, a lapse in design, or a new feature report it using our built in tools!</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2012/02/welcome-to-ondina/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Private Preview Release date set, and more!</title>
		<link>http://ondina.co/2012/01/private-preview-release-date-set/</link>
		<comments>http://ondina.co/2012/01/private-preview-release-date-set/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 18:33:02 +0000</pubDate>
		<dc:creator>Marco Ceppi</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ondina.co/?p=97</guid>
		<description><![CDATA[It has been three months since the last Private Preview date came and went. It was a tough call at the time, but I know &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2012/01/private-preview-release-date-set/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p>It has been three months since the last Private Preview date came and went. It was a tough call at the time, but I know it was the right one. We simply were not ready back then. I spent many hours weighing which features we should should cut, or which features we <em>could</em> cut, all in an effort to delivery early. I was so focused on getting to market and building hype and traction with the product that I lost sight of the goal. I lost sight of the entire point of Ondina.</p>
<p><del>We&#8217;re building a shared web hosting service.</del> We&#8217;re innovating shared web hosting. Quality above all else. It wasn&#8217;t until I stepped away for a few days that I realized compromising on features for an early private release achieved none of the goals. After playing <a href="http://meta.gaming.stackexchange.com/questions/3561/game-on-restructured" target="_blank">Team Fortress 2 with Gaming Stack Exchange</a> people I was reminded of an interview with Valve about the delay of it&#8217;s Half-Life 2 release. They said, and I&#8217;m para-phrasing, &#8220;We&#8217;ll release when it&#8217;s ready.&#8221;</p>
<p><a href="http://ondina.co/wp-content/uploads/2012/01/Untitled-1.png"><img class="aligncenter size-full wp-image-100" title="Gordon Freeman" src="http://ondina.co/wp-content/uploads/2012/01/Untitled-1.png" alt="" width="600" height="277" /></a></p>
<p>We weren&#8217;t ready. With only a few functioning sections, inconsistent User Interface, and no real means of use, the Control Panel amounted to an over-glorified DNS editor. In order to get back on track, and to avoid another letdown for those waiting for PPR, I effectively turned off the flow of information. No more announcements. No more posts. If we were going to still do this, we needed to circle the wagons and get to building &#8212; and that&#8217;s what we did.</p>
<p>I finally feel we are ready to try this again. A lot of lessons have been learned from what happened back in October. As such, <strong>February 13th</strong> the first of the invites will be going out! We are very excited to show off a nearly complete control panel, and a hosting service that&#8217;s secure while providing features seldom found in other services, such as Python and Ruby (Rack, Rails) hosting along side your PHP sites, an efficient, simple, and powerful control panel with which you can manage your sites, multiple database engines, simple DNS management, and the ability to fine tune all aspects of the sites you can host on your account.</p>
<p>In the coming weeks, we&#8217;ll be releasing all new videos of the now nearly completed control panel along with additional information about what to expect from the service during PPR and public launch. As always, we&#8217;re happy to field questions about the upcoming service and take requests for features. Let us know below in the comments below!</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2012/01/private-preview-release-date-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site redesign</title>
		<link>http://ondina.co/2011/12/site-redesign/</link>
		<comments>http://ondina.co/2011/12/site-redesign/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 20:38:32 +0000</pubDate>
		<dc:creator>Marco Ceppi</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ondina.co/?p=77</guid>
		<description><![CDATA[Today we launch the new site design for Ondina, which will be used during the Private Preview Release. Ideally, we want to keep extravagant designs &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2011/12/site-redesign/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p>Today we launch the new site design for Ondina, which will be used during the Private Preview Release. Ideally, we want to keep extravagant designs to a minimum. It&#8217;s not pretty, but we&#8217;re not here to razzle dazzle you into paying us money. We believe our message and platform speaks for itself. This is a vital step in our plan to launch this new shared hosting service. During the Private Preview Release, this site will serve as a platform for news about developments and information about the company, as well as a means to convey our message about how shared hosting should truly be done. Welcome to the next step in our plan.</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2011/12/site-redesign/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>It&#8217;s all about the users</title>
		<link>http://ondina.co/2011/09/its-all-about-the-users/</link>
		<comments>http://ondina.co/2011/09/its-all-about-the-users/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 13:46:08 +0000</pubDate>
		<dc:creator>Marco Ceppi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.ondina.co/?p=31</guid>
		<description><![CDATA[As the start of the Ondina Private Preview Release draws nearer, I am beginning to question certain design tactics and plans for the launch. What should &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2011/09/its-all-about-the-users/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p>As the start of the <a title="Ondina Private Preview Release" href="http://ondina.co/#signup" target="_blank">Ondina Private Preview Release</a> draws nearer, I am beginning to question certain design tactics and plans for the launch. What should be available for our private release? What features are most important to have? What should be functional?</p>
<p>One piece of functionality I know for certain needs to work flawlessly is the Feedback Form. Because of this, I&#8217;ve spent quite some time scoping out how other popular services prod users and take feedback from them. Since the majority of web hosting providers don&#8217;t seem to have a way to submit feedback (As cPanel and other Web Control Panels don&#8217;t anticipate there being any feedback necessary for their product), I looked into how Google managed feedback from Google Plus users.</p>
<div id="attachment_165" class="wp-caption aligncenter" style="width: 260px"><a href="http://marcoceppi.com/wp-content/uploads/2011/08/Selection_014.png"><img class="size-medium wp-image-165 " title="Google Plus Feedback" src="http://marcoceppi.com/wp-content/uploads/2011/08/Selection_014-250x304.png" alt="" width="250" height="304" /></a>
<p class="wp-caption-text">Google Plus Feedback</p>
</div>
<p>It&#8217;s simple: describe the problem and give users the ability to &#8220;highlight&#8221; areas of the page to be included in the report while blacking out private details. It does have a few drawbacks, though. For starters, it&#8217;s slow. To even load the interface it takes approximately 45 seconds.  Before submission, there&#8217;s a preview step and, finally, the submission. Getting from one step to the other incurs a 30-45 second load time. Like so many other sites that sport a feedback button, this one is located outside of the realm of design: Bottom right of the window. Most sites seem to anchor theirs on the right or left of the page in an off-beat, annoying color.</p>
<p>&nbsp;</p>
<div id="attachment_184" class="wp-caption aligncenter" style="width: 591px"><a href="http://marcoceppi.com/wp-content/uploads/2011/09/Selection_158.png"><img class="size-full wp-image-184" title="Feedback" src="http://marcoceppi.com/wp-content/uploads/2011/09/Selection_158.png" alt="" width="581" height="649" /></a>
<p class="wp-caption-text">Well, it&#39;s not that far away.</p>
</div>
<p>Being a developer, I know nothing about what the average user wants in an interface. If it were up to me, I would hand everyone SSH access and say, &#8220;Have at it!&#8221; Unfortunately, that really won&#8217;t work for everyone, and I know that. With Ondina, I know feedback is going to be the only way to bring Ondina from just another hosting provider to <em>the</em> hosting provider. So I&#8217;ve taken some time to build something that will hopefully make your input and you, the user, the single most important entity to this whole operation! I care what you have to say. In fact, without your feedback I&#8217;d be stuck at the gates. As a result, I&#8217;ve placed a feedback panel in the control panel. On every page you&#8217;ll be able to not only report your good experiences with Ondina hosting, but also exactly how you think your experience can be improved. In addition to providing feedback, you can view all the outstanding issues reported on any page ordered by votes.</p>
<p><iframe src="http://www.youtube.com/embed/xfcDbw7c8vY" frameborder="0" width="560" height="345"></iframe></p>
<p>I look forward to the Private Preview Release and most importantly your feedback!</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2011/09/its-all-about-the-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design and Functionality</title>
		<link>http://ondina.co/2011/08/design-and-functionality/</link>
		<comments>http://ondina.co/2011/08/design-and-functionality/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 13:44:26 +0000</pubDate>
		<dc:creator>Marco Ceppi</dc:creator>
				<category><![CDATA[Control Panel]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://blog.ondina.co/?p=29</guid>
		<description><![CDATA[If you&#8217;ve ever seen any of the websites I&#8217;ve designed for personal use, then you should know that I&#8217;m sorry I subjected you to that. &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2011/08/design-and-functionality/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever seen any of the websites I&#8217;ve designed for personal use, then you should know that I&#8217;m sorry I subjected you to that. You&#8217;ll have noticed that I tend to do design in one of two ways: Gaudy or Non-existent. I like things to be simple, elegant, and efficient, but unfortunately it seems that I&#8217;m incapable of designing what I envision. As a developer it really hurts to know that how I want a site to look will never translate properly to completion. It&#8217;s why I&#8217;m very envious of designers. Great ones always blow my mind with how well they can take an idea and make it into something great.</p>
<p>When I started working on <a title="Ondina Web Hosting" href="/2011/11/ondina-web-hosting/">Ondina</a>, I knew the control panel couldn&#8217;t be some out-of-the-box solution like cPanel or ISP Config. While they served a purpose in the past, they&#8217;re either too expensive to be practical or seem to be stuck in a time warp to 1999. If I were going to do this right, I would need something new, fresh, and simple. This is why I&#8217;ve left the control panel as the last thing on my to-do list.</p>
<p>&nbsp;</p>
<div class="wp-caption aligncenter" style="width: 503px"><img class="  " title="Failed design attempt #9,001" src="http://i.imgur.com/OFHVz.png" alt="" width="493" height="430" />
<p class="wp-caption-text">Failed design attempt #9,001</p>
</div>
<p>Now that we&#8217;re coming to the home stretch and our Private Preview Release is just around the corner, I&#8217;ve realized it&#8217;s time to take care of what is arguably the most important part of the whole project: the dreaded control panel design. I&#8217;ve tried several times during the project to design the control panel area. The best I could do is pictured above. I really don&#8217;t like this design, it&#8217;s too&#8230;.something. It&#8217;s impossible to describe, and I&#8217;m not even sure where I would begin. It has the elements I want: simple overview screen, simple navigation options, fixed width design, etc. It just seemed to fail in it&#8217;s overall execution. It just wasn&#8217;t <em>sexy.</em></p>
<p>Luckily, I was able to get some much needed help! <a title="Stefano Palazzo" href="http://plzz.de/" target="_blank">Stefano Palazzo</a>, another moderator on <a title="Ask Ubuntu" href="http://askubuntu.com" target="_blank">Ask Ubuntu</a>, was showcasing a personal project he&#8217;s currently working on: <a href="http://pythonfu.com/" target="_blank">Python Fu</a>. When I saw his design for the site, I knew he had what I lacked: the ability to translate a site design into something that is <em>simple, elegant, </em>and <em>sexy</em> while still being completely functional and cross-browser safe. He agreed to assist and was able to whip a mock-up together for me. I loved it. We&#8217;ve been tweaking the overall theme elements, but ever since then, it&#8217;s been full steam ahead as I continue to design and implement each page&#8217;s functionality.</p>
<div class="wp-caption aligncenter" style="width: 447px"><img class="  " title="Main" src="http://i.imgur.com/AETkZ.png" alt="" width="437" height="336" />
<p class="wp-caption-text">Domain Management landing page</p>
</div>
<p>While the majority of the content is subject to change, this one is sure. The simplicity and elegance of this design will ripple throughout the Ondina Network.</p>
<div class="wp-caption aligncenter" style="width: 440px"><img class="  " title="vhost" src="http://i.imgur.com/sKREF.png" alt="The Virtual Host manager where you can configure each virtual host definition" width="430" height="261" />
<p class="wp-caption-text">The Virtual Host manager where you can configure each virtual host definition</p>
</div>
<p>There are a lot of the subtleties lost in screenshots (CSS transitions, Javascript interactions, etc.) that really enhance the impact of this theme.</p>
<p>As we get closer to Private Preview launch, a more in-depth tour of the control panel and its features will be released.</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2011/08/design-and-functionality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ondina Web Hosting</title>
		<link>http://ondina.co/2011/08/ondina-web-hosting/</link>
		<comments>http://ondina.co/2011/08/ondina-web-hosting/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 13:39:39 +0000</pubDate>
		<dc:creator>Marco Ceppi</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.ondina.co/?p=27</guid>
		<description><![CDATA[Ondina is our response to how web hosting should be run: a company whose true focus is the customers and not the profits. This ideology &#8230; <div class="more-diva-2"><span class="more-link-2"><a href="http://ondina.co/2011/08/ondina-web-hosting/">Continue Reading &#8594;</a></span></div>]]></description>
			<content:encoded><![CDATA[<p><a title="Ondina Web Hosting" href="http://ondina.co" target="_blank">Ondina</a> is our response to how web hosting should be run: a company whose true focus is the customers and not the profits. This ideology should be applied to any type of business, but web hosting is where we see it at its worst. We&#8217;ve seen companies that are still charging extra for email accounts, falsely advertising &#8220;unlimited&#8221; <em>anything</em> on their site, overcrowding their servers, blaming customers for the company&#8217;s shortcomings, and ignoring cries for change. In addition, they tend to attempt to suck every dollar they can from their customers: whether it be for &#8220;premium&#8221; support, for add-ons that should come standard, or for sub-par support. In addition to these short-comings, we&#8217;ve found a lot of hosts that run older, less secure software, rudimentary configurations, and offer generally sub-par products.</p>
<p>Now, there are hosting companies that are doing a lot of good things for customers; however, generally speaking, the current state of web hosts and how they operate is still a two-way mirror. Your host can see everything you do, but there is no way for <em>you</em> to audit <em>them</em>. How do you know you&#8217;re not sitting on an over-crowded server? How do you know that they monitor your machines for up-time and stability? How can you be certain that the downtime which occurred earlier was really because of faulty hardware? You have to take them at their word and trust everything they say.</p>
<p>We&#8217;ve been working on a company that operates differently. It operates on Open Source mentality. If you&#8217;re going to pay us and trust us to host your website, whether it&#8217;s a personal blog or your company&#8217;s portfolio, you have the right to know how we operate and how the servers are maintained, and to have complete confidence that what we&#8217;re doing is the best possible way to present and maintain your presence on the web. That&#8217;s why Ondina is taking business practices and hosting to a new level.</p>
<p>From a company perspective, we plan to provide nearly 1:1 transparency on what we do regarding your account. From displaying account notes to breaking down where each penny goes from your monthly payment so you know the reasoning behind how much your hosting plan costs. We also plan to publish our entire infrastructure&#8217;s layout for review by the community and to show you how we think all hosting companies should operate. We plan to spend more time and money on keeping existing customers happy and thrilled with our hosting instead of trying to hard sell new users. Finally, and most importantly, we plan to always offer the highest quality products and services with best practices in business and execution.</p>
<p>From a technical aspect, we will be providing that same 1:1 transparency with regards to your account. We will make our real-time monitoring systems available to you, provide live provisioning and population information for the server you&#8217;re on, and detail hardware information and your account&#8217;s resource utilization compared to the average account on your server. In addition, we plan to offer diverse hosting options such as PHP, Python, and Rails hosting all on the same account and to provide a simple, yet powerful, control panel with which you can control every aspect of how you host. Ultimately, we will be giving the power back to the user.</p>
<p>Ondina is more than just another hosting company. We&#8217;re here to push the limits of affordable shared hosting, offering things that the majority of hosts force you to upgrade and pay more to get. Ondina is here to set a new standard in web hosting.</p>
]]></content:encoded>
			<wfw:commentRss>http://ondina.co/2011/08/ondina-web-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
