In this video, Eric Chiang, Cloud Security and Privacy Product Manager, gives an in-depth overview of the process for data deletion on Google Cloud Platform. Watch to learn more about how Google ensures your data is deleted, the stages of data removal, the optional recovery process, and the retirement of drives in a safe, environmentally-conscious manner.. Whitepaper → http://bit.ly/2MrtE24. Google’s statement on deletion and retention → http://bit.ly/2werS9K. Google Cloud Platform Terms of Service → http://bit.ly/2BtBZgP. Google Cloud Trust & Security Privacy page → http://bit.ly/2N6oncz. How Google processes business’s data → http://bit.ly/2wdhu2b. Subscribe to the Google Cloud Platform channel → http://bit.ly/GCloudPlatform
The Google Assistant is the conversational user interface that helps you get things done in your world. Actions on Google let you build on this assistance, while your integrations can help you engage users through Google Home on Pixel, Android and many other devices that connect with Google Assistant. In this video, Guillaume Laforge shares the latest innovations behind the Google Assistant and how you can leverage those technologies and best practices for Voice User Interface design to build your own custom extensions to Google Assistant.. Missed the conference? Watch all the talks here: https://goo.gl/c1Vs3h. Watch more talks about Big Data & Machine Learning here: https://goo.gl/OcqI9k
Backup your photos, videos, files, contacts, phone logs, messages, App settings etc. on Google Cloud and restore them on any Android device whenever you need. Make sure all your important data is always synced and protected with this easy-to-follow Android backup guide.
Google Cloud has the potential to be a great Cloud Gaming Service. You just need the knowledge to configure it correctly. That’s what you’ll get in this Video. Plus, when you sign up for a Google Cloud Account, they’ll give you $300 of free credit for Gaming! READ ABOUT IT https://wp.me/p9DMyX-kS. IMPORTANT LINKS: Google Cloud Sign-Up: http://bit.ly/2A13Ctt. Google Cloud Server Locations: http://bit.ly/2BaGA5t. Nvidia Grid P100 Driver: http://bit.ly/2RUg45N. Parsec: https://ParsecGaming.com. SUPPORT FLICKSTIQ ON PATREON http://bit.ly/2rjue5s. Making a Purchase on Amazon? Using our Link is a FREE way of Supporting Flickstiq https://amzn.to/2Bc8XCo. Flickstiq https://Flickstiq.com. Twitter https://Twitter.com/Flickstiq. Flickstiq Discord Server http://bit.ly/2IwUjEq
Коротко о том, как развернуть виртуальный сервер на Google Cloud Platform (GCP). В следующих роликах будем разбирать остальные возможности и сопутствующую инфраструктуру (Шаблоны, группы, сети, балансировка и пр.). Скрипт из видео (MySQL не устанавливается, в следующих видео будем использовать Google Cloud SQL): #! /bin/bash. apt-get update. apt-get install -y apache2. apt-get install -y mysql-client. apt-get install -y php5 libapache2-mod-php5 php5-mysql. apt-get install -y php5-gd. apt-get install -y mc. rm -f /var/www/html/index.html. wget https://www.1c-bitrix.ru/download/start_encode_php5.tar.gz. tar xf start_encode_php5.tar.gz -C /var/www/html. sed -i «s/short_open_tag =.*/short_open_tag = On/» /etc/php5/apache2/php.ini. sed -i «s/^;date.timezone =$/date.timezone = \\»Europe\\/Moscow\\»/» /etc/php5/apache2/php.ini. find /var/www/html -type d -exec chmod 775 {} \\;. find /var/www/html -type f -exec chmod 664 {} \\;. chown -R www-data:www-data /var/www/html/*. chown -R www-data:www-data /var/www/html. systemctl restart apache2