App Harbor and RavenDB

Some days ago I had the opportunity to do a spike on making a small application and deploy it in App Harbor. I had never used App Harbor before, but I had used Heroku, which is another “Platform as a Service” (PaaS). Heroku is very easy to get started with and it’s easy to deploy [...]

Tags: ,

HTML5 Server-Sent Events

There’s been a lot of talk lately about realtime web and WebSockets, but did you know that there exists an alternative HTML5 technology called EventSource that could handle some of the scenarios as well? EventSource is also called Server-Sent Events (SSE), a name that I prefer to use in order to avoid confusion with the [...]

Tags: , ,

Custom events in WinJS

In this post, we’ll perform a refactoring that moves some code that controls the AppBar in a Metro application written in HTML5. The code is currently placed in each page in the application and each page searches the DOM for an element with an id ‘appbar’ and then hides or shows a button in the [...]

Tags: , , , , ,

Windows 8 for Web Developers, TechDays 2012 Debriefing

Yesterday we had the pleasure to present at TechDays 2012, with a session named “Windows 8 for Web Developers”. The topic of the presentation was how to develop Win8 Metro applications using HTML5, JavaScript and CSS3. Thanks to all of you that attended the session – we hope you enjoyed it as much as we [...]

Tags: , , , , , ,

“HTML5 & MVC3″ Debriefing

Recently, Jayway hosted the seminar “HTML5 & MVC3″ in Malmö and Stockholm. We also visited the SweNUG Linköping group and held our presentation there. In this post, we will give you links to some of the topics we covered. The presentation was first delivered on Techdays 2011, and we recommend you to look at that [...]

Tags: , , ,

CoffeeScript Goodies

A few weeks ago, it was announced that Ruby on Rails 3.1 will include jQuery, Sass (using SCSS) and CoffeeScript as default dependencies. Among these, CoffeeScript seems to be the controversial dependency, at least if you read the comments on the actual commit (check out the funny meme pictures). In this blog post, I’ll try to [...]

Tags: , ,

TechDays 2011 Web Debriefing

During the last two days of TechDays 2011 in Örebro, with the tagline ‘the Cloud story’, the term HTML5 was as frequently mentioned by speakers on some tracks as the word cloud was in other. Team .NET Web was represented by Gustaf (@gustaf_nk), Per (@per_okvist) and Karl (@herradriansson), with a session about our views on [...]

Tags: , ,

Using Sinatra for local Javascript development

For a little while now, I’ve been playing with Sammy.js, a small framework built on top of jQuery which makes it easier for you to develop single-page web apps. More specifically, the storage plug-in for it looks interesting, with JSON-serialization support and support for the KeyValueObserver pattern. I started playing with Sammy.js with simple local files, [...]