Making tileable images with Python
Here's an interesting bit of Python code I hacked together – it's a script that takes an image and warps it so that it is tileable (making it suitable for a repeating backgound or a texture in a game).
If you use it on a photograph, it will come out looking like a fair-ground mirror. But it works well when applied to a pattern, or something more abstract, such as the fractal image on the left.
The code is public domain – use it for whatever the heck you want!
Python Job Alert
My employer is looking for a new Python developer to work here in Oxford, UK. The company I work for runs 2degreesnetwork.com, which is collaboration service for sustainable business. Basically, it's a social networking type of site for businesses to collaborate on climate change and related issues. I'm not officially allowed to say this, but the closest analogy is ‘Facebook for Businesses’.
To err is human
I noticed recently that I say ‘err’ or ‘umm’ a lot when asked a question, particularly for questions that aren't factual in nature, and have no right or wrong answer. For instance, if I were asked “what is the capital of Turkmenistan” I would answer “Ashgabat” (which everyone knows) without any umming or erring. But if I were asked “would you like milk in your Americano?” I would answer “err… yes”.
Birthday Boy
Today is my birthday. The universe is officially 35 years old today! :-)
Another year without anyone discovering that I have been faking being a grown-up for all these years. Maybe soon I'll have to start being all responsible.
My forties are not long off. Funny how round numbers are psychologically significant; there is nothing I can do at forty that I couldn't do at thirty nine (or vice versa). Then again, maybe I'll start wearing knitted cardigans and voting conservative – who knows!
Actually I think I'm going to avoid all that “OMG I'm going to be forty!” nonsense, and only worry about ages that are a power of two. Sixty-four is a long ways away, so I can relax for a while. Maybe by then I'll also be a grown-up for real, or I may just leave that for my one-hundred-and-twenty-eighth birthday.
I take it back, this is the most inneficient code ever
Here's the most convoluted “Hello World!” script I could come up with (in response to this). I don't know if it works. I've proven it correct, but I haven't tested it.
from random import choice from itertools import count from zlib import crc32 import sys any(crc32(h)==472456355 and not sys.stdout.write(h) for h in(''.join(choice('! edHlorW')for _ in '.'*12)for _ in count()))
I promise my production code is (marginally) more readable this this…
Jen's Wedding
My little sister got married! Congratulations Jen & Scott, I'm so happy for you both.
| www.flickr.com |
A 3D Texture-Mapped Globe Rendered with Javascript and HTML
I've been working on a large-ish Javascript project lately (still in stealth mode). One that could be described as a Javascript application. And since I've been up to my elbows in Javascript, I have found my contempt for the language waning. Not entirely, of course – I'm still a Python fan-boy. But enough for me to knock out a 3D(ish) spinning texture-mapped globe, using nothing but Javascript and HTML, as a way of honing my JS skills.
Without further ado, I present you with a 3D Javascript Globe.
Django like templates in Javascript
Here's a quick ‘n’ dirty Javascript function I hacked together that provides Django-like template substitution.
function sformat(template, data) { return template.replace(/{{(.*?)}}/g, function(m, n) { return eval('data.'+n); }); }
Used something like this:
sformat("Hello, {{ name }}!", {name:"World"});
Which returns the following string:
Hello, World!
Alas, it doesn't support anything other than substitution. If you need anything more advanced (loops etc), you should investigate Javascript template engines.
There's always a way
Spotted in a deli in Oxford. It says ‘Where there is a Will, there is always a way’.
Thats right – always a way!
Just saying.
Fuzzy Thinking
I have an idea germinating that involves using fuzzy logic, something I only had a passing knowledge of. After reading the Wikipedia articles and Googling for it I'm more informed but still haven't found a perfect resource.
The only Python code I have found was informative, but it was from way back in 1990. If there are any Pythonistas who know of a more up-to-date fuzzy logic module, or fuzzy logic resource in general, please let me know!
My name is Will McGugan. I am an unabashed geek, an author, a hacker and a Python expert – amongst other things!
-
4 posts
-
2 posts
-
2 posts
-
1 post
-
6 posts
-
1 post
-
1 post
-
3 posts
-
11 posts
-
6 posts
-
4 posts
-
1 post
-
1 post
-
1 post
-
5 posts
-
5 posts
-
1 post
-
6 posts
-
1 post
-
9 posts
-
2 posts
-
4 posts
-
3 posts
-
14 posts
-
3 posts
-
1 post
-
7 posts
-
7 posts
-
16 posts
-
8 posts
-
2 posts
-
1 post