The Easiest (And Best?) Way To Search For Beautiful Wallpapers In Your Specific Screen Resolution And Size
There are undoubtedly a lot of wallpaper sites. Even more undoubtedly, most of them suck, both in content and filtering capabilities (by resolution, theme, etc).
My preferred way until recently was Deviant Art, because it had a lot of content and very nice filtering – I could specify my exact resolution.
However, as of some time ago, Deviant Art browsing by resolution disappeared, as evident from trying to find it on their site and from the comments on this post announcing the capability in the first place.
The Solution
Sometimes the solution lies right in front of our eyes – we just have to open them to see it.
A while ago, Google Image Search expanded their support for …
Updated: October 6th, 2009
No matter what programming language you use, there comes a time when you need to search for a file somewhere on the file system. Here, I want to talk about accomplishing this task in Perl. There are many ways of doing so, most of them boring, but I want to discuss the fun and elegant way – using File::Find::Rule.
Let me briefly discuss some of the other methods first.
Limited
Using glob() (or <>, TODO verify) you can find files in a single directory, using only the limited shell wildcard support. For example,
1 |
my @files = glob("tmp*"); |
…