Google plans to start blocking Flash in Chrome this year

  • 16 May, 2016

Flash’s death has been slow and painful, and now Google is planning to deal it another blow. Google has detailed plans to start blocking most Flash content with Chrome, with the change targeted toward the end of this year.

Under its current vision, nearly every website would have Flash content blocked by default. Visitors would still be able to enable Flash content on a site-by-site basis, but they would have to specifically choose to do so. Chrome would display a prompt offering to enable Flash; if chosen, Chrome would remember to run Flash on that site for all future visits.

See the full article here

Related Posts

Apple Is Trying to Kill Web Technology

  • 06 Dec, 2020

The programming languages used to build the web often find their way into apps, too. That’s largely due to software that allows developers to “reuse” the code they write for the web in products they build to run on operating systems like Linux, Android, Windows, and macOS. See the full article here(https://onezero.medium.com/apple-is-trying-to-kill-web-technology-a274237c174d)

Apple Is Trying to Kill Web TechnologyRead More

Secure Nginx server with LetsEncrypt

  • 12 Jun, 2020

You need A Fully Qualified Domain Name (FQDN) pointing to a dedicated IP address of the webserver. This needs to be configured by your DNS administrator or provider. 1 - Install Certbot in Centos 8 sudo curl -O https://dl.eff.org/certbot-auto chmod 0755 /usr/local/bin/certbot-auto 2 - Configure Nginx server\name on nginx.conf Edit nginx.conf an change the variable server\name to the same FQDN of your server for example: server\name www.mysphere.com.br; 3 - Run the certbot command: Execute sudo /usr/local/bin/certbot-auto --nginx and follow the instructions Test if your Nginx server using https://

Secure Nginx server with LetsEncryptRead More

Node-red. & NGINX on Centos 8

  • 11 Jun, 2020

I am creating a server (Centos 8) to develop a system that will use an application using REACT as a front end to show data from different sensors.I will use NGINX as a webserver and Node-red as a back end.In this first post I describe how to install NGINX. Install nginx package using the yum command on CentOS 8: sudo yum update sudo yum install nginx Update firewall settings and open TCP port 80 and 443. Run: sudo firewall-cmd --permanent --zone=public --add-service=https --add-service=http sudo firewall-cmd --reload Enable nginx service by running systemctl command so that it starts at server boot time: sudo systemctl enable nginx start the service, run: sudo systemctl start nginx

Node-red. & NGINX on Centos 8Read More