Recently Youtube update their android app. In this post I will demonstrate you the feature that is not work correctly (maybe not totally). When a user want to unsubscribe and click on subscribe it’s look like they have successfully unsubscribed but it’s not. I tried to do same with many channel but none of them unsubscribed. When I click on subscribed (which I already have) then it’s removed from left side “What to Watch” panel. Now it’s means it’s successfully unsubscribed but it’s not. Sometime ......
In your web-application if you are using mp3 file and on client side It’s partially cached and you want them to directly open them in browser it will not work. There is a little trick to get it worked. Remember the query-string trick that is used for invalidate the cache in jQuery. for example if you don’t want to cache the stuff in browser then we use timestamp example.com?time=1111211 Everytime time is new integer so this will never be cached. Same thing can be used for mp3. example.com/abc.mp3?test=121 ......
In the starting of this month I bought a nokia phone. the design and look of the phone is pretty good. I have some issue with the phone that I am going to describe here. When I got my phone it’s look awesome. I just hold it in my hand and it’s work well. Suddenly my hand make a motion and it’s going restart. I feel it’s feature but it’s not. its’ fault. UPDATE This problem has been fixed when I have gone to Nokia care center. In few days I see that my phone have volume down key broken. I search online ......
Yesterday I write my post How LinkedIn bugging its own user ! about spam. I got 4 same mail from LinkedIn. I am amazed that how they can do this mistake with me. How many person got 4 mail (unusually). Now I read a article that make me thing that LinkedIn has been hacked by someone. Maybe this is how I got 4 spam mail in same minutes. I can’t confirm anything.Here is post about it http://www.dnaindia.com/sci... ......
LinkedIn send me same message 4 time today ......
Sometime you have seen that article written somewhere is very good but there is a lot of distraction on site. Maybe that is the single reason you hate them. Now I gave you how to remove that distraction. Check that this will hide the image on site. This is just a example of how you can do it. You can simply apply on any site you have in your mind. When you do it and refresh the page don’t be confused. you need a to open same thing in next tab instead of refresh ......
I just bought Nokia Lumia 520 in last week and this week I hear that Microsoft Bought Nokia. Few months ago My asha 311 have some problem and stop working. I go to Service center and they refuse to fix my issue. I have no other option to do anything. In last day I bought a brand New Lumia 520 phone. I just read the news “Microsoft bought Nokia” I don’t know what will happen to future of phone. Maybe Microsoft will put their own logo on phone which have print “Nokia” previously ......
If you want to tried better way to use select tag in html then look at bootstrap based select2 at http://ivaynberg.github.io/... Using this plugin you can easily search for option you want to choose. For example you want to search “xx abc yz” now if you type abc then you can got it in select2 when native html5 never do it for you. select2 allow you to easily find the option you looking for. Many kind of customization make it awesome ......
This is just a css experiment. You have seen the code something like this. background:url("/images/rep... repeat scroll center top red; but wait, why the color is set to red when image will be repeated all-over. OK, 1 In firefox install the web-developer plugin in add-ons. Now go to images > disable all images. Now see that text is not visible if the text have color that is white. This is working before because there is background behind the text. 2. Suppose you design your UI for desktop ......
When you use Visual studio express (or above) and go to Manage Nuget package for this solution then you see it’s show you the new version you want to install. Till now 3.x has been released. If you want to use old 2.3.2 version then look at this https://www.nuget.org/packa... Run this in package manager console Install-Package Twitter.Bootstrap -Version 2.3.2 This will add the old version of bootstrap (which version you have tried) you want in your project ......