Friday 11 December 2015

How to Enable Click To Play Plugins in Google Chrome


image
Have you ever opened a webpage only to have all sorts of multimedia on the page just start playing? Chrome has a hidden setting that was designed to prevent situations just like that. Read on to find out how to enable it.

Enabling Click To Play Plugins in Chrome

Click on the settings wrench and select the settings menu item.
image
Then you will need to click on the advanced settings link.
image
Scroll down until you can see the privacy section, then click on the Content settings button.
image
A new Window will pop-up, scroll down until you see the Plug-ins section. Then change the plug-ins option from Run all plugin content to “Let me choose when to run plugin content”.
Settings_-_Content_settings
IMPORTANT!
Make sure you check the Manage Exceptions button in the screenshot above, because that will override the setting.
For Chrome, you’ll also need to head into about:plugins (literally type that into the address bar and hit Enter) and make sure that “Always allowed to run” isn’t enabled, which appears to override the click-to-play setting.
Screenshot_7_11_15__12_35_PM
Of course you should probably just click the Disable button to make sure Flash is dead.
Now navigate to any website that requires a plugin, like YouTube, and you will have to click on the content to activate the plug-in.
image
That’s all there is to it.

Thursday 10 December 2015

RoFL.....!!!!!!!!!




Future king of Internet programming

What is Java to you? A programming language you learned in college? The lingua franca of corporate IT? Would you believe that Java is poised to dominate the next explosion of the Internet? Built for embedded computing and streamlined for real-time applications, here's why Java is the language for IoT.



Isn't Java too big for embedded systems?




Java wasn't always a viable first choice for embedded systems, mainly because embedded devices are often stingy on computing resources. Assembler, C, and even Python have fared better in systems with constrained memory, CPU power, or other hardware issues. This objection has largely faded away in the past few years, however, as the average size of an embedded environment has grown. Resource requirements have also shrunk with the introduction of new techniques for compiling Java for embedded environments.

Sunday 18 January 2015

PART II : Know the Value of Variables : CHARLES AND JACK STORY

                                            Making the Most of Variables
                                and Their Values



▶ Assigning values to things

▶ Making things store certain types of values

▶ Applying operators to get new values


                        READ THE BELOW                                                    CONVERSATION 

The following conversation between Mr. Van Doren and Mr. Barasch never
took place:
Charles: A sea squirt eats its brain, turning itself from an animal into a plant.

Jack: Is that your final answer, Charles?
Charles: Yes, it is.

Jack: How much money do you have in your account today, Charles?

Charles: I have fifty dollars and twenty-two cents in my checking account.

Jack: Well, you better call the IRS, because your sea squirt answer is
correct. You just won a million dollars to add to your checking account.

What do you think of that, Charles?
Charles: I owe it all to honesty, diligence, and hard work, Jack.


Some aspects of this dialogue can be represented in Java by a few lines of code.







what you can do with a Language - Java

                                                            YES I CAN DO IT  


It would be so nice if all this complexity was free, but unfortunately, it isn't.
Someone has to think hard and decide exactly what to ask the computer to
do. After that thinking, someone has to write a set of instructions for the
computer to follow.

Given the current state of affairs, you can’t write these instructions in English
or any other language that people speak. Science fiction is filled with stories
about people who say simple things to robots and get back disastrous, unexpected
results. English and other such languages are unsuitable for communication
with computers for several reasons:



✓ An English sentence can be misinterpreted. “Chew one tablet three
times a day until finished.”
✓ It’s difficult to weave a very complicated command in English. “Join
flange A to protuberance B, making sure to connect only the outermost
lip of flange A to the larger end of the protuberance B, while joining the
middle and inner lips of flange A to grommet C.”
✓ An English sentence has lots of extra baggage. “Sentence has
unneeded words.”
✓ English is difficult to interpret.



class PayBarry {


public static void main(String args[]) {
double checkAmount = 1257.63;
System.out.print(“Pay to the order of “);
System.out.print(“Dr. Barry Burd “);
System.out.print(“$”);
System.out.println(checkAmount);

         }


}