Pixastic is a JavaScript library which allows you to perform a variety
of operations, filters and fancy effects on images using just a bit of
JavaScript. All using Canvas. really amazing what canvas makes possible :)
Finally getting some off time. The Christmas spirit has not caught me yet, but still have a few days to get into the mood :)
Will also celebrating my birthday away from home this year, yeah I was born right between Christmas and New Year :)
Wish you all a Merry Christmas and a Happy New Year.
Cheers
Alexander
A small list of “lorem ipsum” generators, to fill these demo websites with some content fast:
Liquid Canvas is a JavaScript library which allows you to draw
inside an HTML canvas element with an easy yet powerful description
language.
It can be used to add graphics to your web page without ever touching an image creation tool.
SmartMarkUP
is a lightweight and powerful JavaScript library that allows you to
turn any textarea into a fancy markup editor. HTML, CSS, XML, Wiki
syntax, BBCode or any other desired markup language can be implemented
and/or adjusted to your preferences and business needs. SmartMarkUP doesn’t depend on any other JavaScript library and can be integrated with any already existing JavaScript library or code.
With single line of code you can turn any general textarea to
powerful markup editor. As far as integration is unobtrusive, HTML of
your application will remain unchanged. SmartMarkUP degrades gracefully
for users without JavaScript without loosing functionality of your
application.
SmartMarkUP is completely customizable and
scriptable as well. Changing styles, implementing new markups, creating
extra buttons and submenus or adding new functionality is a matter of
minutes. SmartMarkUP is distributed under GPL open source licenses, so
SmartMarkUP is absolutely free and you can do anything you like with it!
I was a big fan of the first Punisher movie, but the latest trailer of Punisher II or better Punisher: War Zone will hardly make me see this movie.
The movie really flatlines for me from the first trailer I saw. Not a single piece of news has got me excited so far. This will be a straight to dvd for me :)
Anybody trying to use preg_replace on multidimensional arrays will see that the function is not working for those cases. Here a quick workaround:
1 2 3 4 5 6 7 8 |
function preg_replace_array($pattern, $replacement, $subject, $limit=-1) { if (is_array($subject)) { foreach ($subject as &$value) $value=preg_replace_array($pattern, $replacement, $value, $limit); return $subject; } else { return preg_replace($pattern, $replacement, $subject, $limit); } } |