Let's say there're following 3 CSV files (a, b and c):
t, v
1, 10
2, 20
3, 30
4, 40
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed
| [client] | |
| port = 3306 | |
| socket = /var/lib/mysql/mysql.sock | |
| [mysqld] | |
| port = 3306 | |
| socket = /var/lib/mysql/mysql.sock | |
| skip-external-locking | |
| key_buffer = 32M | |
| key_buffer_size = 64M |
| #!/usr/bin/env bash | |
| # global parameters | |
| g_tmp_folder="ncdc_tmp"; | |
| g_output_folder="ncdc_data"; | |
| g_remote_host="ftp.ncdc.noaa.gov"; | |
| g_remote_path="pub/data/noaa"; | |