Sunday, September 27, 2015

Platform drop down is missing - visual studio 2015 ( Cordova )

After visual studio 2015 installation I could not find this platform selection for few days. My tool bar was like bellow.



The solution was very simple than I thought. Please select the following tool bar item to appear on your tool bar.






Finally my tool bar was like this. Hope this tip will help you.






Monday, August 3, 2015

Netflix vs Stan

I'm using netflix since last four months and using stan since this month. I'm just writing this for the help of new user.

Netflix vs Stan

Speed & Quality
I'm using TPG unlimited package and it's seems to be both same in buffering speed. But some times I noticed stream of stan is low quality in first few minutes. I think netflix has most robust connection.


Number of Productions
Both seems to be same. But you will not find any new movies on both. Not enough Bollywood movies on both stan and netflix. But with netflix you'll be able to watch netflix originals like House of Cards. So if you want to watch more new movies then be a pirate.


Subtitles and Close Captions
Netflix has closed captions on every production and I didn't see any of stan movies got them.

Price
Price range is same for both netflix and stan.


Hope this will help you to decide.






 

Tuesday, July 21, 2015

Set Jquery-ui-autocomplete select menu height

This was really simple than I thought. You just need to add following CSS lines to your style sheets.

     ui-autocomplete    
    { 
        max-height: 250px;
        overflow-y: auto; 
        overflow-x: hidden;
    }

Hope this will help you.


Thursday, February 5, 2015

PhpMyAdmin cannot import sql.


I tried to run a simple sql select query to a mysql database through phpmyadmin interface. But I was getting this error message.

Can't import SQL into PHPMyAdmin.

But when I'm running the same query using mysql console command line it was ok. So found the solution and it was very simple. Just run use statement with the database name that you need to query.

use DB_College;
SELECT * FROM TBL_Students;

Thanks!