Knockout SVG Image Binding not Working. Solution Found!

This post is about an issue I faced in Knockout to bind svg <image> and it was not showing the image inside the svg, even with correct binding with xlink:href My first attempt was, If you notice that, Image is not showing in the svg box. Reason: Because xlink:href attribute needs to be there even with empty value to initialize the HTML svg image. So, your image tag should be like this <image height="500" id="img1"...
Continue Reading...

Android Drag-Drop Button - A custom component for android developers

See on Github This is an open source android drag button custom component. You can use it on your project to show a drag-able icon and perform any action after user dragged to the edge of the component. screenshot Import aar file on releases directory to your android project to include drag-drop button. Or you can download entire project...
Continue Reading...

How to install Adobe Flash Player plug-in for Firefox on Ubuntu

Click here to check flash player on your browser Adobe flash player is also a plug-in for for Mozilla Firefox to view flash videos (ex: youtube videos) and play flash on-line games, etc. Therefore flash player became essential plug-in for most of the web browsers until HTML 5 take place (because HTML 5 has new capabilities those can challenge...
Continue Reading...

Is flash player installed?

This page allows you to check whether your browser has flash player installed. and detect the installed flash player version. The check perfectly works on Firefox and Chrome. Check how you can install flash, if it says NO! Click here to read how to install, or watch following videos. Adobe flash player is also a plug-in for for Mozilla Firefox to view flash videos (ex: youtube videos) and play flash on-line games, etc. Therefore...
Continue Reading...

Simple SignalR chat program

SignalR is a library which enables real-time web functionality and bi-directional communication between server and connected clients. That's mean SignalR server can force clients to get updated and/or client(s) can force server to get updated. Also SignalR supports web sockets. Before start coding for SignalR let's clarify some keywords...
Continue Reading...

Simple AForge.net tutorial - getting start with AForge

AForge.NET is a powerful C# framework designed for the fields of Computer Vision and Artificial Intelligence, image processing, neural networks, genetic algorithms, machine learning, robotics, etc. This is a simple and quick tutorial that describes how to setup Visual Studio environment to work with AForge.net. At the end of this tutorial...
Continue Reading...

Debug PHP code in Netbeans

Netbeans is a powerful IDE for PHP and many other development environments. is it possible to debug your PHP project in Netbeans? run your PHP code line by line and look at your variable values in real time? The answer is Yes! even you can have many watch expressions to examine variable values and execute your PHP code line by line. You...
Continue Reading...

Convert Opencv Mat to C# Bitmap

Conversion from Opencv Mat to C# bitmap isn't a difficult task. But this conversion needs to be done from the primitive level of both Opencv Mat and C# Bitmap. Simply all the images are created from set of bytes, therefore it is necessary to create System.Drawing.Bitmat from bytes of cv::Mat. Also you will need to do this conversion...
Continue Reading...