Skip to main content

Coursera: Notes

Source: https://s3.amazonaws.com/coursera/media/Grid_Coursera_Partners_updated.png

Learn Without Limits - Build skills with courses, certificates, and degrees online from world-class universities and companies.

Keep updating

Free learning for Coursera’s birthday.

Celebrate Coursera turning 9 by earning a free certificate in one of 9 specially selected courses.

Redeem one free course from this exclusive collection. Your discount will be applied at checkout. Offer is subject to change and valid through 04/30/2021.

Learn anywhere, anytime on both Android and iOS devices (iPhone, iPad, AppleTV).

Can download offline.

Audit course only

Free but with some limited features:

Coursera: Audit course only

CANNOT access graded quiz

NO certificate

Coursera: Audit the course to access course's content for free, but with some limited features.

Popular posts from this blog

MySQL: Notes

Ways to check MySQL version mysql --version mysql -V dpkg -l 'mysql-sever' mysql -u root -p How to check MySQL version: mysql --version Database folder On Microsoft Windows, by default, MySQL save databases in this folder: %ProgramData%\MySQL\MySQL Server 5.5\data Check databases' size SELECT table_schema AS "Database name", SUM(data_length + index_length) / 1024 / 1024 AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema; Export database schema $ mysqldump -u root -p --no-data wordpress1001 > c:\backup\schema-wordpress1001.sql Enter password: **************** Create a dedicated user to backup databases Give credit to: http://www.fromdual.com/privileges-of-mysql-backup-user-for-mysqldump Create dedicated mysql user and grant privileges to run backup $ mysql -u root -p CREATE USER 'backupdb'@'localhost' IDENTIFIED BY 'passwordhere'; GRANT SELECT,SHOW VIEW,RELOAD,REPLICATION CLIENT...

nmap - The Network Mapper

WARNING : It is ILLEGAL to scan hosts without permission.