Blog posts tagged "programming" – Posts 1..5 of 13 posts found:

2010-03-11: CSS eye-candy in mobile browsers, a comparison

Posted at 2010-03-11 18:22:33 by SHD

My current job involves a lot of web development for mobile phones. Compared to the WAP phones of 10 years ago, present day phones are like supercomputers, with browsers almost as capable as those on the desktop. The major challenge posed by designing for these devices is making sure that mobile web sites are lightweight in terms of bandwidth, easily viewable on a small screen and that the site can be navigated easily with both the four-way directional key as well as with a touchscreen. With mobile browsers catching up to desktop web browsers, I figured it would be a good time to take a look at some of the eye-candy effects that are possible with CSS2 and see what the support for these effects is across the mobile browsers.

2010-02-15: array_slice is not confused about negative length

Posted at 2010-02-15 13:32:18 by SHD

I enjoy reading the amusingly named www.phpwtf.org on the rare occasions that they add a new post. A recent post complains about negative lengths when using array_slice (actually confusing it with array_splice at one point). Unfortunately, a technical issue means the site doesn't currently accept comments, so I'll simply make a blog post out of my comment there. The info may still be useful to other PHP programmers.

2009-07-13: PHP WTF?

Posted at 2009-07-13 19:09:32 by SHD

Many blogs and sites spring up on the web promising frequent updates. More often than not, they post a handful of articles and then fall into neglect before dying a quiet death. Here's a site that seems to have potential, so let's hope it doesn't fall victim to this pattern.

2009-06-27: DOSBox GUI update

Posted at 2009-06-27 05:11:06 by SHD

An update for the DOSBox configuration GUI. This time, it's starting to look a little more like the Windows 95 interface rather than Windows 3.1. This looks a little less retro, but leaves more space for the window contents. Check out the screenshot below.

2009-06-20: Memory leak in SDL

Posted at 2009-06-20 21:40:47 by SHD

DOSBox makes use of the SDL library with a few slight modifications for performance on Windows. This exposes a memory leak in SDL 1.2.x. I have filed a bug report and fix with the SDL people, but since this code path is not used under normal circumstances, only in DOSBox, they are not likely to incorporate it any time soon.