Monday, March 30, 2020

How to Fix Google Dri­ve Not Down­load­ing Files After Zipping



The zip downloads fail for most users due to the unconsciousness of the download steps. First select the folder or multiple files that you want to download and then click on the Download button & Google Drive will then start zipping your files.. Like I am now downloading a bulk of comics in a single batch so i selected all of them and hit the RIGHT MOUSE BUTTON and clicked the DOWNLOAD option so all the 17 files showing there started zipping




 Once it finishes it, here’s the twist
You will receive  pop-up at the top showing 2 options  1. Leave  2. Cancel


The text says ‘Changes you made may not be saved’. You are offered two options — leave and cancel. A regular user's intuition would be to think that the download for the zipped files will be cancelled by clicking on the Leave button. So they click on Cancel. But that’s totally wrong. Pressing the Cancel button will stop the downloads. As strange as it may sound, you have to click on Leave. Doing that will start the download process of the zipped files.Look at the bottom-left corner of the picture it started downloading.


In case you don’t receive any pop-up, follow the below steps to fix it on Chrome.
Open the link to go to Chrome Pop Up Ads Settings under site setting.

 Just check it is enabled or not , if not enable it and under add section add the url of your drive. This will allow google drive to show popups

This was all for chrome browser but it does not really matter what browser you use just go to settings of that browser and search for Pop Up Ads .rest of the process is same .
GOOD LUCK !!
Share on Whatsapp

Saturday, March 28, 2020

INSTAGRAM NOW HELP YOU TO UNFOLLOW PEOPLE WHO DON'T FOLLOW YOU BACK


Instagram announced the new feature via  Twitter  Essentially, which will help a user can sort their following list

HOW TO ACCESS THE FEATURE 

The new Instagram features will be visible on the following list which is available on the user’s profile. Here, users will see two categories of accounts they follow on Instagram One clubs people whom users have “least interacted with” and the other shows accounts “most shown in feed”. These two categories essentially shows users accounts they interact with and don’t.

WHY

Instagram defines ‘interacting’ as liking posts or reacting to their stories. This list will refresh every 90 days. Similarly, the second list shows accounts of people whose posts appear the most on the user’s feed.  Instagram says the platform is about – being shown content only from accounts users interact with the most.



C++ TUTORIALS : STRUCTURE OF A PROGRAMME IN C++

A Sample C++ Program
Let's start with the short sample C++ program shown here.
 the output here is shown in dev c++
I am coming back to vscode later first understand the lines...

As you can see, this program looks much different from the C subset programs

found in Part One. A line-by-line commentary will be useful. To begin, the header
<iostream> is included. This header supports C++-style I/O operations. (<iostream>
is to C++ what stdio.h is to C.) Notice one other thing: there is no .h extension to thename iostream. The reason is that <iostream> is one of the modern-style headers
defined by Standard C++. Modern C++ headers do not use the .h extension.
The next line in the program is



    using namespace std ;

    This tells the compiler to use the std namespace. Namespaces are a recent addition
    to C++. Anamespace creates a declarative region in which various program elements can
    be placed. Namespaces help in the organization of large programs. The using statement
    informs the compiler that you want to use the std namespace. This is the namespace in
    which the entire Standard C++ library is declared. By using the std namespace you
    simplify access to the standard library. The programs in Part One, which use only the C
    subset, don't need a namespace statement because the C library functions are also
    available in the default, global namespace.

    Now examine the following line.

    int main()

    Notice that the parameter list in main( ) is empty. In C++, this indicates that main( )
    has no parameters. This differs from C. In C, a function that has no parameters must
    use void in its parameter list, as shown here:
    int main(void)
    This was the way main( ) was declared in the programs in Part One. However, in
    C++, the use of void is redundant and unnecessary. As a general rule, in C++ when
    a function takes no parameters, its parameter list is simply empty; the use of void is
    not required.
    The next line contains two C++ features


    So the question arrives 

    What is the Difference Betwwen int main() , void main() ,main()

    Like any other function, main is also a function but with a special characteristic that the program execution always starts from the ‘main’. ‘int’ and ‘void’ are its return type. So, let’s discuss them 
    • void main – The ANSI standard says "no" to the ‘void main’ and thus using it can be considered wrong. One should stop using the ‘void main’ if doing so.

    • int main – ‘int main’ means that our function needs to return some integer at the end of the execution and we do so by returning 0 at the end of the program. 0 is the standard for the “successful execution of the program”.

    • main – In C89, the unspecified return type defaults to int. So, main is equivalent to int main in C89. But in C99, this is not allowed and thus one must use int main.


    cout << "This is output.\n"; // this is a single line comment


    First, the statement

    cout << "This is output.\n";

    This is output. to be displayed on the screen, followed by a carriage returnlinefeed
    combination.You can use cout and the << to output any of the built-in data types, as well as strings of characters.Note that you can still use printf( ) or any other of C's I/O functions in a C++program. However, most programmers feel that using << is more in the spirit of C++.
    Further, while using printf( ) to output a string is virtually equivalent to using << in
    this case, the C++ I/O system can be expanded to perform operations on objects that
    you define (something that you cannot do using printf( ))

    coming to the 

    // this is a single line comment

    You can define a single-line comment
    by using //; whatever follows such a comment is ignored by the compiler until the end of

    the line is reached.

    Next, the program prompts the user for a number. The number is read from the

    keyboard with this statement:

    cin >> i;

    In C++, the >> operator still retains its right shift meaning. However, when used
    as shown, it also is C++'s input operator. This statement causes i to be given a value
    read from the keyboard. The identifier cin refers to the standard input device, which
    is usually the keyboard. In general, you can use cin >> to input a variable of any of

    the basic data types plus strings.
    BAsically what scanf does to c , cin>> does to c++.

    like in the above code user give the value 5 to the computer

    cout << i << "squared is " << i*i << "\n";

    we will deal with this operator later .In short it is just squaring the the number after taking the input from the user by multiplying with itself.

    like in the above code compiler returned a value 25 which is square of 5.



    return 0;


    This causes zero to be returned to the calling process (which is usually the operating

    system). This works the same in C++ as it does in C. Returning zero indicates that the
    program terminated normally. Abnormal program termination should be signaled by
    returning a nonzero value.But without this also your code will run.





    Share on Whatsapp

    Friday, March 27, 2020

    What if you close the lid of your laptop without shutting it down ?

    If you are using other than any mac device and you close the lid of your laptop then the background processes you left while using will be running in background upto the time limit for your device to go into sleep mode.Before going to sleep mode
    every running process will be going (e.g. virus scanning , running downloads etc ) . It also saves your device state as you left it like you were working on an excel or word file , that file state will be saved .so there

    pros 

    1. your machine state will be saved and you will be able to find exactly what you left off
    2. you can go out without saving the file by just putting the lid down
    3. your background processes will run , so you don't have to sit the entire time infront of your screen(NB- upto sleep mode )

    cons

    1. It will consume your battery a lot
    unlike the fact that mac users don't have this problem

    C++ TUTORIALS : SETTING UP THE PROJECT ENVIRONMENT.



    Welcome to journey of C++. I will be showing you how to develop C++ using Visual Studio Code along with the C++ and Easy C++ Projects extensions. So get started

    Downloading Visual Studio Code

    First we will need a code editor or IDE, we will use Visual Studio Code because it is lightweight like Sublime, but has some extra features specially Intellisense. You can download Visual Studio Code here, you will land on a page like this:

    After downloading VSC simply run it and install it
    Make sure to check all the boxes .After installing simply launch it


    Setting up VSC for C++ development

    The first time you open VSC you will see a welcome window. VSC has a very simple layout: a bar on the left with 5 buttons (File explorer, Find, Git integration, Debug, Extensions), a status bar on the bottom and a window with tabs for the editors. Click the last button to open Extensions:

    And search there for c++ extension provided by Microsoft , install the extension

    Next search for Easy C++ Projects, install it.


    Now we are ready to run our first cpp projects.




      Creating a C++ project

      Press F1, a little window will appear with lots of different commands, search for "c++" and click "Create new C++ project":


      Now we will be asked what compiler we want to use, look the Easy C++ extension page for information on how to setup a compiler for your operating system. I will use Windows Subsystem for Linux.          

      Code

      Now that we finished the creation step, VSC will generate the project structure for us, and open main.cpp with some example code:


      If you face problems on coding on vscode you can download
      DEV c++ ide from here . Its not that dynamic but much more easy to use use on the go


      so it's for today ,stay connected and please do share this course among your friends ....




      Share on Whatsapp

      Bill Gates Is Pissed: "We Should've Done More" to Stop COVID-19

      Microsoft co-founder and public health advocate Bill Gates has a gloomy message about the coronavirus pandemic: We missed our chance to mitigate massive harm months ago.
      “There’s the period between where we realized it was transmitting and now where we should’ve done more,” he said during an interview with Chris Anderson, the curator of the famed TED Talks series. He also opined that “everybody should have taken notice back in January.”
      Here’s the full interview:
      Gates — a multi-billionaire best known as the leader and figurehead of software giant Microsoft during its heyday, as well as regularly topping the list of the world’s richest people — has embraced philanthropy and become a fiery advocate for global health in his second act. And in retrospect, some of the magnate’s warnings look strikingly prescient. For example, here Gates's in 2015
      “If anything kills over 10 million people in the next few decades, it’s most likely to be a highly infectious virus rather than a war. Not missiles, but microbes.”
      In his interview with Anderson this week, Gates seems to take aim at U.S. President Donald Trump, who has started suggesting that society ease off the “shelter-in-place” guidelines that are keeping new infections at bay but hammering the economy.
      “It’s very tough to say to people, ‘Hey keep going to restaurants, go buy new houses, ignore that pile of bodies over in the corner, we want you to keep spending because there’s some politician that thinks GDP growth is what counts,’” Gates said in the interview. “It’s hard to tell people during an epidemic… that they should go about things knowing their activity is spreading this disease.”
      Share on Whatsapp

      Thursday, March 26, 2020

      Instagram is launching “Co-Watching” for browsing remotely with friends

      To keep you informed and entertained during this quarantine, Instagram has announced a number of new features.one of the most noticeable new features is “Co-Watching”, a new feature to keep you and your friends entertained together.The premise is simple: You fire up a video chat with some friends and, by tapping the photo icon on the bottom left corner of the video chat, you can share some photos and videos you’ve previously liked or view suggested ones so you can watch them together with your friends. This is meant to replace the experience of scrolling through Instagram with friends while you and your friends are staying home.

      Other measures adopted by Instagram include the introduction of educational resources to parts of the UI, supporting donations in more countries, a “Stay Home” sticker for stories, and an option to check out stories with that sticker in your feed so you can see how others are practicing social distancing. This and more measures should make your self-quarantine time a little less monotonous.

      Source: Instagram

      NASA suspending operation

      NASA and Northrop Grumman are “suspending integration and testing operations” on the James Webb Space Telescope in response to the coronavirus pandemic, a decision that officials said is likely to delay the mission’s scheduled launch date in March 2021. check here

      Nice Initiative From MINISTRY OF HUMAN RESOURCE DEVELOPMENT

      FREE RESOURCES FROM #DIGITALINDIA SO ALL LEARNERS CAN STUDY FROM HOME:
      Register at: https://www.ndl.gov.in to access 4.6CR resources in ALL subjects for ALL learning levels in 60+ formats.

      You can alternatively download the National Digital Library of India app from Playstore or Appstore

      #LearnShareGrow #FreeLearningResources #SpreadTheWord #AnytimeLearning #StudyFromHome #EducationForAll

      Experiencing Slow Internet Under Quarantine? Here's What You Can Do



      If you noticed a significant speed drop on your home Wi-Fi, here are some steps that you can take to ensure that you get a smooth Internet experience.

      • Perform a speed test to check the download and upload speeds.
            If your Internet speed is on par with the subscribed plan, the server is at fault and you can expect the issue to be fixed shortly. 
      • Reboot your Router
        If you are getting very low Internet speed, the first step is to reboot your router. Rebooting your router often fixes several operational issues. If you are still facing the problem, raise a connectivity issue with your ISP.

      In case your service provider fails to resolve your issue, you can reduce the number of connected devices and turn off the auto-update feature on all the connected devices. This will give your Internet speed a significant boost.

      Instead of streaming the content, you can download it and later enjoy uninterrupted service. On the other hand, while playing online games, make sure none of your connected devices are downloading heavy files.


      By using your Internet for only one purpose at a time, you could tackle the slow Internet speed issue and enjoy uninterrupted entertainment at your home.

      Wednesday, March 25, 2020

      Coronavirus: 27 Bangladesh Cricketers Donate Half Month’s Salary


      With the COVID-19 pandemic creating a global health crisis, Bangladesh's cricketers have decided to donate half of their monthly salaries to the government to fight the disease, which has so far claimed over 19000 lives worldwide.
      According to a report in Dhaka Tribune, a total of 27 cricketers, including 17 players contracted with Bangladesh Cricket Board (BCB), have decided to make the donation. The other 10 players have also represented the national team.

      "The whole world is fighting against coronavirus pandemic. The outbreak of coronavirus is also increasing in Bangladesh. We, the cricketers, are trying to tell people to take necessary steps to prevent this pandemic,may be this fund is not that much compared to the fight against coronavirus. But if we all together can contribute from our own positions, then in combined, it might be a bigger step to fight against coronavirus."  the players said in a joint statement.

      COVID-19: CAB donates Rs 25 lakh to Bengal's Emergency Relief Fund

      With India under lockdown for the next three weeks to combat the pandemic COVID-19 virus, Cricket Association of Bengal (CAB) has come forward by donating Rs 25 lakh towards the state's Emergency Relief Fund.
      "We are perhaps going through the darkest phase of human civilization. Cricket stands for unity. It also stands for humanity. Therefore, on behalf of CAB, we have decided to donate Rs 25 lakh for now to the Emergency Relief Fund to be used in combating this disease.

      "As a responsible institution, it is our duty to stand by the administration and help them eradicate this disease," CAB president Avishek Dalmiya said.
      The secretary of CAB, Snehashis Ganguly said: "Thanks to the proactiveness of our government both at the state and centre; we have been successful in implementing a countrywide lockdown but a lot more needs to be done. Hence, we have come forward for the sake of the people in this time of crisis."

      Saturday, March 21, 2020

      Remdesivir Works Against Coronaviruses in the Lab

      Targeted drug development takes years, but when time is short in a pandemic, scientists and clinicians turn to pharmaceuticals that have been used to treat other diseases. In rapid fashion, doctors have already deployed a number of antivirals in attempts to fight back against COVID-19 and data from their studies are now coming in. So far, trials of existing antivirals have largely focused on the drug combination lopinavir-ritonavir, which are two Food and Drug Administration­–approved HIV protease inhibitors, and remdesivir, which was originally developed to treat the Ebola virus and is not yet FDA approved. 
      The  latest study to report back from the frontlines of the pandemic has been disappointing. The results of a randomized trial of lopinavir-ritonavir in 199 adults hospitalized with COVID-19 in Wuhan, China, that were published this week (March 18) revealed no benefit in terms of time to clinical improvement in the patients who received the drug combo versus a placebo. The findings are consistent with a study published in January this year that showed a combination of lopinavir-ritonavir and interferon beta did not reduce lung injury a mouse model of Middle East respiratory syndrome (MERS) and only reduced virus levels in the lungs modestly in one of two experiments.

      In that same study, remdesivir was much better at inhibiting the coronavirus that causes MERS in cell culture and improving respiratory symptoms in the animals, indicating that it may be a better option for treating SARS-CoV-2.

      Lopinavir and ritonavir are both protease inhibitors developed specifically to treat HIV. Remdesivir, on the other hand, is a broad-spectrum antiviral. It was initially developed to treat Ebola, but it is a nucleotide analog that mimics adenosine, one of the building blocks of any RNA virus’s genome. Drugs that act as nucleotide analogs interfere with the RNA-dependent RNA polymerase, the enzyme that viruses use to copy their genomes, says Matthias Götte, a biochemist at the University of Alberta. “If you target this enzyme the virus cannot replicate anymore, so it’s a very logical target to begin with.”

      We’ve done a lot of work in coronaviruses with remdesivir, but the big question is: does all of that data that we’ve generated in SARS and in MERS and in MHV, our model coronavirus, does that translate to this new virus?

      —Maria Agostini, Vanderbilt University

      There are three ongoing COVID-19 clinical trials at locations across China and the United States for remdesivir, which is manufactured by pharmaceutical company Gilead. Doctors in the US have also treated patients with the drug under the Food and Drug Administration’s compassionate use policy, and—while it’s not clear that it was because of remdesivir treatment—at least one patient recovered.

      Remdesivir has shown promise disabling coronaviruses in the lab, too. Researchers led by Vanderbilt University’s Mark Denison and the University of North Carolina at Chapel Hill’s Ralph Baric showed in 2017 that remdesivir (then known as GS-5734) could inhibit replication of the coronaviruses that cause both severe acute respiratory syndrome (SARS) and MERS in human lung cells. The authors also found that the drug reduced viral load and improved respiratory function in a mouse model of SARS. A year later, members of the same research team published another study showing that remdesivir’s effectiveness relies on coronaviruses having an intact RNA-dependent RNA polymerase.

      “We were looking for compounds that could broadly inhibit coronaviruses and the RNA-dependent RNA polymerase is, if not the most conserved protein in coronaviruses, definitely within the top two, so that makes it a good target for broad-spectrum antivirals,” says Maria Agostini, a postdoc in the Denison lab.

      New work Götte and colleagues published on February 24 in the Journal of Biological Chemistry indicates that the drug, which they refer to an as an analog inhibitor, exerts these effects on the MERS coronavirus polymerase via delayed RNA chain termination. This means that when the viral polymerase incorporates the analog instead of the natural nucleotide, it adds three more nucleotides and then stops. When it can’t copy its genome, the virus can’t reproduce and make its host sick. They hypothesize that the extra three nucleotides may protect the drug from being removed by the coronavirus’s exonuclease enzyme.

      In the same study, the researchers found that the MERS polymerase incorporated the mimic at a greater frequency than the natural nucleotide. This is in contrast to the Ebola polymerase, which they showed in 2019 selects adenosine triphosphate about four times as often as remdesivir.

      “The more often the inhibitor is utilized instead of the natural counterpart, the more chances you have for effective inhibition. A prerequisite for inhibition is that the inhibitor needs to get into the newly synthesized RNA, and the fact that these MERS polymerases are sloppy and cannot really distinguish very well between the natural counterpart and the inhibitor, that’s an advantage,” explains Götte.

      His team has already started looking into how the SARS-CoV-2 polymerase interacts with the drug. This work and animal and cell culture studies from other groups that show potent inhibition of MERS with remdesivir have Götte feeling “cautiously optimistic” that remdesivir might work for SARS-CoV-2, but there are still plenty of open questions. And other scientists have also begun to investigate the effects of remdesivir on SARS-CoV-2. In a letter published in Cell Research on February 4, remdesivir blocked coronavirus infection in monkey and human cells.

      “We’ve done a lot of work in coronaviruses with remdesivir, but the big question is: does all of that data that we’ve generated in SARS and in MERS and in MHV, our model coronavirus, does that translate to this new virus?” asks Agostini. She points to the positive results of the Cell Research study, “but whether that holds true in animals and ultimately whether that holds true in people, we still have to do the experiments.”

      Abby Olena is a freelance journalist based in Alabama. Find her on Twitter @abbyolena.

      Basic protective measures against the new coronavirus

      Wash your hands frequently

      Regularly and thoroughly clean your hands with an alcohol-based hand rub or wash them with soap and water.

      Why? Washing your hands with soap and water or using alcohol-based hand rub kills viruses that may be on your hands.(soap and water is more effective than sanitizer so don't get carried away with the hype)

      Maintain social distancing rather Physical distancing (don't misinterpret) 

      Maintain at least 1 metre (3 feet) distance between yourself and anyone who is coughing or sneezing and try to be at your home when your nation hits the stage 2 for early prevention. 

      Why? When someone coughs or sneezes they spray small liquid droplets from their nose or mouth which may contain virus. If you are too close, you can breathe in the droplets, including the COVID-19 virus if the person coughing has the disease.

      Avoid touching eyes, nose and mouth

      Why? Hands touch many surfaces and can pick up viruses. Once contaminated, hands can transfer the virus to your eyes, nose or mouth. From there, the virus can enter your body and can make you sick.

      Practice respiratory hygiene

      Make sure you, and the people around you, follow good respiratory hygiene. This means covering your mouth and nose with your bent elbow or tissue when you cough or sneeze. Then dispose of the used tissue immediately.(like in a dab position )

      Why? Droplets spread virus. By following good respiratory hygiene you protect the people around you from viruses such as cold, flu and COVID-19.

      If you have fever, cough and difficulty breathing, seek medical care early

      Stay home if you feel unwell. If you have a fever, cough and difficulty breathing, seek medical attention and call in advance to check it earlier so that it can't get spred further. Follow the directions of your local health authority.

      Why? National and local authorities will have the most up to date information on the situation in your area. Calling in advance will allow your health care provider to quickly direct you to the right health facility. This will also protect you and help prevent spread of viruses and other infections.

      For more information visit the WHO website.

      Coronavirus update: State-wise breakup of Covid-19 cases in India

      Among the 258 people are 39 foreign nationals and also includes the four deaths reported from Delhi, Karnataka, Punjab and Maharashtra so far.Here’s a look at the state-wise breakup of Covid-19 cases in India on Saturday

      Follow the link for upcoming updates : Corona Virus India


      Maharashtra
      The number of infected people rose to 63 in Maharashtra, which continued to report the highest number of Covid-19 cases.
      “Ten more from Mumbai and one from Pune have tested positive as per the reports we received yesterday (Friday) night. Eight of them have a history of international travel, while three are infected from them,” state’s health minister said.
      Tope said, out of 63 patients, about 14 were infected from those who tested positive for coronavirus. Maharashtra has reported one death, according to government data.
      Kerala
      Following Maharashtra, Kerala has reported 40 cases, including two foreigners, of novel coronavirus so far. Kerala reported the highest increase with 12 new cases. Of these, seven cases involved Indians and five foreign nationals, according to the health ministry data. Three people from the state have recovered and no deaths have been reported as of Saturday.
      Uttar Pradesh
      The most populous state in the country has reported that 24 people have been infected with the novel coronavirus as of Friday and one of them is a foreigner. Nine people have recovered from the virus in Uttar Pradesh so far.

      Delhi
      There are 26 people with the respiratory illness, including one foreigner, in Delhi. The Capital has reported one Covid-19 death and five people have recovered from the infection.
      Rajasthan
      Rajasthan has 23 people, including two foreigners, who have been infected from the novel coronavirus. Three people have recovered from Covid-19 and sent home.
      Haryana
      Twenty people, including 14 foreigners, have tested positive for the novel coronavirus in Haryana. There have been no recovery or death in the state.
      Telangana
      In Telangana, 19 people have Covid-19 so far and 11 of them are foreigners. One patient has been cured and sent home.
      Karnataka
      There are 15 confirmed cases, all Indians, of the novel coronavirus so far in the southern state. One person has died of Covid-19 in Karnataka so far and there is no report of anyone being cured.
      Ladakh and Jammu and Kashmir
      The number of Covid-19 cases in the Union Territory of Ladakh rose to 13 and Jammu and Kashmir has confirmed four people have tested positive for the novel coronavirus infection.
      Gujarat reported a rise in Covid-19 cases with eight patients and in Madhya Pradesh, there are four people who were found to be infected with Sars-Cov-2.
      In Tamil Nadu, three people have tested positive for coronavirus and one has been cured. Andhra Pradesh and Uttarakhand have also reported three coronavirus cases each. West Bengal has also reported three cases of Covid-19.
      Punjab has reported two Covid-19 patients and one death. Odisha also has two patients infected with the virus as well as Himachal Pradesh.
      Chhattisgarh and Union territories of Chandigarh and Puducherry have one case of Covid-19 each so far.