Blisk – a browser for web developers

Bliskis a free Chromium-based browser built to increase quality and speed of web development and testing Develop and test websites that look great and work fine on any device Blisk browser has a set of top used phones, tablets, laptops and even desktops. Use multiple devices simultaneously. Blisk synchronizes URL and scroll position for both mobile and desktop. Mobile and desktop follow each other by URL and scroll position.

Dash – Offline API documents for developers

Sometimes you know what to do but need the API documents to get exactly the code structure. The normal way is go to its website and find for the API. But there is application called Dash which stores 150+ offline documentation sets. You can find anything you need in 1 search box, fast and offline. For OSX and iOS user you can use Dash, for other system there is another alternative apps called Zeal

Ruby gem install or update fail because of windows locale

When trying to install or update gem got this message Found out that my Windows PC is using different locale rather than English. Fix by change the codepage to Unicode

Using Trello to manage your weekly surf

For a small to average project, using Trello is easy and efficient. Use it to manage the task, the sprint, the user stories … Assign it to team members. Set the dead line Can search, filter the card easily

Number of distinct absolute values of sorted array elements

function solution(A) { // write your code in JavaScript (Node.js 4.0.0) var count=0;l=0,r=A.length-1; while(l <= r){ count++; if(Math.abs(A[l]) === Math.abs(A[r])){ l++; r–; } else if(Math.abs(A[l]) > Math.abs(A[r])){ l++; } else if(Math.abs(A[l]) < Math.abs(A[r])){ r–; } } return count; }