- Ubuntu 22.10
# Login into VPS
ssh <username>@<ip_address>
# Update All Dependencies
sudo apt update
sudo apt upgrade| mailer := gomail.NewMessage() | |
| dialer := gomail.NewDialer( | |
| SmtpHost, | |
| SmtpPort, | |
| Username, | |
| Password, | |
| ) | |
| mailer.SetHeader("From", "Sender Name" + "<" + "Sender Email" + ">") | |
| mailer.SetHeader("To", "Reveiver Email") |
| # HTML | |
| <input type="text" name="value" class="form-control" placeholder="Enter Value" required="" id="value"> | |
| # JQuery | |
| $(function () { | |
| $('body').on('keyup','input#value',function(){ | |
| let current_value = $(this).val().replace(/\D/g, ''); | |
| // Add a '.' after every 3 digits from the end of the input |
| """Information Retrieval metrics | |
| Useful Resources: | |
| http://www.cs.utexas.edu/~mooney/ir-course/slides/Evaluation.ppt | |
| http://www.nii.ac.jp/TechReports/05-014E.pdf | |
| http://www.stanford.edu/class/cs276/handouts/EvaluationNew-handout-6-per.pdf | |
| http://hal.archives-ouvertes.fr/docs/00/72/67/60/PDF/07-busa-fekete.pdf | |
| Learning to Rank for Information Retrieval (Tie-Yan Liu) | |
| """ | |
| import numpy as np |