README is empty
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<filter> | |
<filter-name>RequestInfo</filter-name> | |
<filter-class>org.apache.catalina.filters.RequestDumperFilter</filter-class> | |
</filter> | |
<filter-mapping> | |
<filter-name>RequestInfo</filter-name> | |
<url-pattern>*</url-pattern> | |
</filter-mapping> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 1KAggqVCuETjY9Gy9USHNR2BALG4pMudAN https://explorer.blockstack.org/address/1KAggqVCuETjY9Gy9USHNR2BALG4pMudAN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Return Rate shows the total return you have received since opening of account. | |
It is calculated by using following formula: | |
Total principal - It includes received principal amount and outstanding principal amount. | |
Interest received - Total interest received till date (since account is opened). | |
Charged Off - Total amount which is lost to charged off loans, | |
here for each loan we will calculate lost principal by | |
note amount - received amount. | |
Return Rate = ((Interest received - Losses) / Total Principal) X 100) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.text.ParseException; | |
import java.util.Date; | |
import java.util.HashMap; | |
import java.util.HashSet; | |
import java.util.Map; | |
import java.util.Set; | |
import org.quartz.CronScheduleBuilder; | |
import org.quartz.CronTrigger; | |
import org.quartz.Job; |