I’ve just created my very first video for the web. You can see it in this post.
Adding a video to a web page…if that’s not the time to try out the new HTML5 video tag, then when is…eh?
Continue reading Lessons Learned When Using the Video Tag
I’ve just created my very first video for the web. You can see it in this post.
Adding a video to a web page…if that’s not the time to try out the new HTML5 video tag, then when is…eh?
Continue reading Lessons Learned When Using the Video Tag
Having read Mark Pilgrims fine and highly recommendable book HTML 5: Up and Running (available for free here) all of a sudden there was a great many things that I would like to try out and experiment with. One of them being microdata.
Continue reading Microdata on the About Page
Being the modern, hip and edgy 21st century family that we are, we of course have our own homepage! It’s located at piskeris.dk and is really nothing more than a collection of our photos and a seasonal wishlist now and then.
Over the last half year or so I’ve had an itch to do something about the layout of piskeris.dk. The last major overhaul was done in mid 2009 and I was never that pleased with the colour scheme of the page. However lack of *the* divine design idea combined with work, family-life, sanity hacking sessions and trying to stay fit just meant that the redesign never happened.
Untill now!
Continue reading New Design on piskeris.dk
As mentioned earlier, I’ve started to fool around with Ruby.
I’ve now been reading about and writing Ruby for a few months, I’m still learning, I’m making all kinds of mistakes and skilled Ruby developers will probably scoff when seeing my code but it’s great fun and I really like writing Ruby code.
Continue reading Ruby Revisited
I’ve started poking around with Ruby. Why?
At work I spend most of my time burried in Java code and I’d like to try something else. I think it’s healthy to see if this really is the best, or if perhaps the grass is greener somewhere else. I mean, Java is a nice language but it feels heavy sometimes, or perhaps it’s the environment surrounding it that feels heavy. The fact that I’m mostly doing JEE related stuff probably doesn’t reduce the heaviness. JSR this and JSR that, loads of dependencies, build tools, deployment descriptors, web.xml, MANIFEST.MF and so on and so forth, not something I’d like to tinker with at home.
Continue reading Ruby Ruby Ruby
About a year ago I wrote a post called What I’m looking forward to in 2010 about – as you might’ve guessed – the things I was looking forward to in 2010.
As 2010 is now no more, I thought it would be fun to visit that post again to see how things turned out. So, walk with me on this short tour of 2010
Continue reading What I’m looking forward to in 2010 revisited
I have decided to make a list of things I’d like to look into, mainly things related to programming and computers.
Continue reading The Big Things-To-Look-Into List
Hey Peter, it’s Peter. Just a quick reminder for when you forget the next time.
To download a file using cURL you can use either:
curl -O http://code.jquery.com/jquery-1.4.3.js
Which’ll download the file in question and store it with the same name as on the server. Or you can use
curl -o yourCleverNameHere.please http://code.jquery.com/jquery-1.4.3.js
Now you won’t need to look this up here next time.
Kind regards.
Yourself
Hey, if I can’t write interesting things on my blog, then at least I can tweak and bend the blog itself right. Therefore it’s time to introduce a new theme (yet again), I’ve named this one “From Space To Earth”.
Continue reading And yet again…new theme
I like JavaScript! There, I said it!
I work in a JavaScript hostile environment where people want to do everything in pure Java, which is why I spend most of my time trying to get JSF and a Portal server to play together nicely (sad story!). But! Deep down I long for a simpler life, a life consisting of HTML, CSS and pure JavaScript and nothing else (well maybe a bit of PHP on the server).
So why do I like JavaScript? I like it because it’s so dynamic. Need a method on an object? Just add it when you need it. You can bend the rules and pretty much do as you please. More than once has JavaScript saved our arse when normal server side programming has failed. And then there’s the more “hard to grasp when you’re used to Java” features. Things like that a function can return a function, callback functions, scope of variables and closures.
Especially closures I’ve had quite a few attempts at trying to understand. I’ve been attending a JavaScript course recently which was very interesting and fun. Of course we were discussing closures and this time I think it finally clicked. Therefore, to remember, I’ll write this post, so that I can re-read it in six months when I’ve forgotten about closures again.