How to pixelate images using Javascript
Today there is again a bit of Javascript code. The exact topic is about how you can pixelate images via Javascript. This has both advantages and drawbacks, which I would like to briefly point out once below.
Advantages:
Pixelation can be done dynamically (Manual effort in your graphics program falls away. Graphics must not be known beforehand.)
The computational power required is outsourced to the client side. In contrast to a server-side solutions (eg using PHP & Imagick), the computational load is distributed to the users. This helps to keep the server load low, if you have a lot of visitors.
Disadvantages:
The pixelation should be used rather as design or graphic effect, since the data is only sent not pixelated to the client. So if you really want to hide faces and picture information the pixelation still needs to be done before delivery to […]
Here we go. Starting from today, I’m trying again on something new here on the blog. Under the name “Best of Web” I want to share, from now on, every Monday, my network finds from the last 7 days with you.
Today it is about eBay. Specifically, about how you can add as many pictures as you like into your auction description for free. So there will be no additional costs, such as it would normally be the case, when you use the image features of eBay. Thankfully eBay gives us almost everything that is needed to add free images to our auctions.

For several weeks Microsofts development environment, called WebMatrix, is available in version 3. As already the first and second version was, WebMatrix 3 is a free development environment for websites and web applications of different platforms such as ASP.NET, PHP, and HTML5.