1. Log into codeanywhere.com and turn on VM 2. Install sqlite with command 'sudo apt-get install sqlite3 libsqlite3-dev' 3. Download archive 'dbs.zip' from url 'http://www.cs.put.poznan.pl/mantczak/datastore/media/ics/dbs.zip' using command 'wget http://www.cs.put.poznan.pl/mantczak/datastore/media/ics/dbs.zip' 4. Unzip dbs.zip using command 'unzip dbs.zip' 5. cd dbs/sqlite 6. chmod u+x run.sh 7. ./run.sh 8. Introduce example SQL query e.g., 'SELECT * FROM PRACOWNICY;' 9. To quit sqlite use command '.quit' # embedded C in sqlite example 10. cd dbs/emb-c-sqlite (when your current directory is 'dbs') or 'cd ../emb-c-sqlite' (when your current directory is 'dbs/sqlite') 11. chmod u+x compile-run.sh 12. ./compile-run.sh 13. Please, analyse and try to understand the source code of the example program