Apr 11, 2013
0 notes
A few illustrations for our soon to be anounced new company!
2nd one is me ;)
Apr 1, 2013
2 notes
Mar 25, 2013
0 notes
Mar 18, 2013
0 notes
Heads up: webdeveloping for mobile
When testing my site in the mobile IE10 browser for WP7.5, I noticed some of my javaScript (read, jQuery) wasn’t working. The code stopped executing at seemingly random moments.
Easy fix: remove all console.log’s. Somehow IE10 couldn’t handle those. I’m not sure whether it’s the case for other mobile browsers too.
Mar 15, 2013
0 notes
Mar 13, 2013
1 note
Style sketches for Jasper Rainier and mine’s new company, yet to be named. What do you think?
Feb 18, 2013
0 notes
Jan 24, 2013
7 notes
Jan 19, 2013
1 note
New poster in progress
Some work in progress shots for the new Kunst & Kids Instuif, themed ‘Who are you?’.
Jan 12, 2013
0 notes
An interactive(ish) visualization, i”m working on.
Jan 7, 2013
0 notes
New (responsive) website!
So I’ve redesigned my personal website, taking mobile and tablet devices into the equation. The main reason for the redesign was that I wanted to be able to show more images per project and I wanted people on mobile devices to be able to view the website too. This group takes up 15% of my traffic, so it’s worth the hassle of designing/creating it.
The new design is deliberatly kept very clean, so the work I did really stands out. The background images change from time to time, showing imagery of work in progress. This is to add a sense of value to the featured designs: designing takes time too.
Now go check out the website on all your devices! If you have any remarks or just want to leave a message, you can tweet me at @peeke91!
Right now, the design is still a bit akward on the Galaxy S3, because it has such a huge screen, but that’s being worked on.
Dec 29, 2012
0 notes
New logo for the Kunst & Kids Instuif.
Dec 25, 2012
0 notes
Working on a logotype, for the Kunst & Kids Instuif.
Dec 17, 2012
0 notes
HTML5 Video: How to make it work
Or rather, how I made it work. This blog post is a response to the lack of a comprehensive overview of the do’s and dont’s of HTML5 video. Also explains how to make the video autoplay across all devices (also the default Android Browser)
First things first, video codec and container. To make sure your video’s work across all devices and browsers, you need multiple container formats and encodings. These are the ones available:
- .mp4/.m4v (h.264 codec)
- .webm (VP8 codec)
- .ogv (theora codec)
Specifying a (mime)type and the used codecs is good practice, though according to an article on broken-links.com it breaks the playback on some android devices. Omitting a mimetype on the first source tag can fix this.
Since HTML5 is new (well, not really) some hosts don’t recognize the files that are supported by the browser. To fix this, you can add the mimetypes manually to a .htacces file or directly in a Virtual Host file (). To do this, you use the AddType command:
AddType video/mp4 .mp4 .m4v
AddType video/ogg .ogv
AddType video/webm .webm
To make the videos autoplay (if you want ;) ) we use javascript:
var video = document.getElementById(‘video’);
video.load();
setTimeout(function() { video.play(); }, 500);
Just call the load() and play() functions of the video element. I’m not ready sure wether the setTimeout is needed, but it seemed to make the video run better on some devices.
At this point, I still had trouble getting the video to play in the default Android Browser for Android. To fix this, I detect wether the user uses the default Android Browser and when they do I set the src attribute of the video tag to the value of the first source tag like this:
var video = document.getElementById(‘video’);
video.src = video.firstElementChild.src;
This seemed to fix the issue. Probably, the default Android Browser has some trouble with the load() function, though I’m not sure about that.
I’ve been able to test this solution on the following devices:
- iPhone4S (iOs)
- iPad2 (iOs)
- Asus transformer (android 4.0)
- Galaxy S+ (android 2.2, have to check this one)
- Nokia Lumia (WP7.5)
Comments are welcome! Comment here, or leave a tweet @peeke91.
Dec 6, 2012
5 notes
The periodic table of elements
An alternative visualization of the periodic table of elements (this one). Built and designed together with Jasper Uitterhoeve and Rainier van Ijzendoorn.
We’ve created an alternative visualization, in which al rows of the table are connected, head to tail. The row spirals inward, while retaining it’s groups (colors). The heavier an atom is, the lower it is suspended. In the center of each atom, you can see the amount of protons (blue) and neutrons (orange) is it build up from.