Week 1 has already come & gone, so a quick update. The modules this time around are:
- Web Application Development
- Rich Internet Applications
- Project
As the first week wasn't much more than introduction to the new modules, there isn't much to write about. There was at least one thing I learned though that I thought was interesting. We were tasked in the Web App Dev module with prefixing a currency amount with the euro symbol by means of the CSS file. I was thinking that the euro symbol would constitute content as opposed to presentation, so why would it go in the stylesheet? The only way I could think of was to put the euro symbol into the xml file. Anyway, was advised by the lab assistant to look up the :before and :after selectors. Using these selectors means you can specify an element and add additional content, so that for example an element that appears in an xml file as
PRICE:before { content: "€"; }