Archive for the ‘PHP’ Category

picnik comes with a free-to-use image editing API for your website

1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 3 out of 5)
Loading ... Loading ...
Wednesday, January 23rd, 2008

picnic.gif Ever heard from Picnik? It allows you editing your images direclty within your browser. Forget Adobe Photoshop :) Picnik has been around for a while now but recently it started to offer its service for the public. for free! I played around a bit and must say that it is amazing .. Use it within PHP, classic ASP, .net, Ruby on Rails or whatever… especially i like the idea of the whole service which works like this…

  1. Send your images to their service (existing image via URL or encoded as multi-part)
  2. Then the user modifies the picture (size, colors, rotation, special effects…)
  3. Picnik sends you the picture back to your server (either an URL where you can download it or directly as multi-part image)

Here comes an example I have built for demonstration… (more…)

Want to show your source code to someone else?

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5 out of 5)
Loading ... Loading ...
Monday, December 17th, 2007

Today i stumbled across a nice tool called Pastie. Pastie helps you if you want to show some bits of your source code to someone else. e.g. you need some help, advice (or you just want to show off with your code). You paste an excerpt of your code and pastie saves it for under a unique URL. Then you send this URL to the person you want to show the code. The big advantage here is that the syntax is nicely highlighted … very nice for remote troubleshooting! I have created a code snippet for demonstration.

pastie.jpg
(i’ve used code sections to create more sections.)

ajaxed: Calling server side VBScript procedures from client side (equivalent to PHP xajax)

1 Star2 Stars3 Stars4 Stars5 Stars (50 votes, average: 4.6 out of 5)
Loading ... Loading ...
Monday, July 2nd, 2007

My last post (about an ASP RSS component) included a demonstration which made use of a cool ajax technique simply called “ajaxed”. See the demonstration here again. If you play around you will recognize that there is no conventional postback and AJAX is up in here ;) I have developed a small “library” which easily allows you to call server side ASP VBScrtipt procedures from the client side. No low-level Ajax knowledge is required… (more…)

IE7 Bug: Blank page (white screen) after some refresh’s

1 Star2 Stars3 Stars4 Stars5 Stars (4 votes, average: 5 out of 5)
Loading ... Loading ...
Sunday, November 26th, 2006

While I was testing my web apps in the new Internet Explorer 7 I discovered that sometimes a page is not rendered properly after a refresh. After some testing I realized that somehow the browser is randomly showing a blank (white) page when I hit the reload button a couple of times. The interesting thing was that when I viewed the sourcecode everything was there but the page wasn’t displayed at all. I did some research and found the reasons/solutions for it. (more…)