A week ago i was looking to make some project of mine and it led me somehow to the Dart. At my opinion, the best way to get familiar with new development lang is to code some small program. So i would like to share three very basic examples i coded: 1. Chart Graph The usage is very simple: you provide data and...
I was looking for display image within canvas via dart. The problem is that the most trivial solution crossed my mind was : CanvasElement context = query("#canvasImage"); CanvasRenderingContext2D ctx = context.context2D; ImageElement image = new ImageElement(src: "myImage.jpg"); ctx.drawImage(image, x, y); But the problem that it is simply not working. So i came up with the following full functional solution :) import 'dart:html'; CanvasElement...
Recently i have encountered in some issue filtering columns in DataGrid. That can be achieved by following code : The result of such code may look like following: But there is some problem with this code : When clicking on any column, we don't see any feedback it was clicked No filter applied when clicked on column anyway Actually the solution is very basic, although...
On my opinion, inspiration is related directly to the creativity. When inspired, person feels less limitations than in regular situations and it can allow him to see daily basis routine just in different way. Inspiration bring with itself a mix of great and healthy feeling which can vary from person to person. For someone it is calm, happiness, ability to see ordinal thing in...
After my first application which was developed for version 2.x i decided that it is a good time to get know better an android API versions 4.x. So i decided to develop some program in order to take a trip for a most interesting and core features in android 4.x. This is led me to the Fragments. Actually fragments were introduces in Honeycomb (ver...
Lately i was asked to provide explanation regarding Android development in company i working for, in order to let to other people (mostly for developers, but not only) some taste of mobile development. For that reason i maid some presentation which included general overview of various android development aspects : some mobile devices statistics, a bit of development, Google Play (market) and some...
Yesterday i finally got my new Leap Motion dev board. Since i always very interesting in various fields and aspects in development, i was very curious regarding this device capabilities. ...
Today i will show how possible to turn Windows 8 Hebrew Edition to English one. Actually 3 main problem were the reason i looked the way to switch Windows 8 to English version: Close button in every window is located in the upper left corner. Its quite annoying especially after years working with close button located on the upper right corner. I am...
Introduction The purpose of the article is to get familiar with compiler optimization in .Net. This is a brief overview that should give you a start vector and to introduce some basic showcases. Article is intended for beginners+ level. I hope you find useful this article. Points of Interest When we write a code, its eventually transformed into machine code and its able to run,...