Skip to content

Commit

Permalink
Transferring all files to Github
Browse files Browse the repository at this point in the history
  • Loading branch information
NavidHaghdadi committed Aug 2, 2018
1 parent c4442d1 commit f9e67fd
Show file tree
Hide file tree
Showing 39 changed files with 6,866 additions and 0 deletions.
Binary file added AG300LoadInfo.pdf
Binary file not shown.
476 changes: 476 additions & 0 deletions BillCalc.m

Large diffs are not rendered by default.

Binary file added CEEMLogo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Data/CopytheDataFolderContentsHere.txt
@@ -0,0 +1 @@
Download the "data" folder from "release" page and copy the content of here.
20 changes: 20 additions & 0 deletions GmailSetup.m
@@ -0,0 +1,20 @@
% This function is for sending email. The password is now shown. You should
% change the email and specify the password , otherwise this option won't
% work

function GmailSetup
myaddress = 'tariffapp@gmail.com';
mypassword = ''; % Change the email and password

setpref('Internet','E_mail',myaddress);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',myaddress);
setpref('Internet','SMTP_Password',mypassword);

props = java.lang.System.getProperties;
props.setProperty('mail.smtp.auth','true');
props.setProperty('mail.smtp.socketFactory.class', ...
'javax.net.ssl.SSLSocketFactory');
props.setProperty('mail.smtp.socketFactory.port','465');

end

0 comments on commit f9e67fd

Please sign in to comment.