This file contains hidden or 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 Retorna a taxa anual da SELIC de acordo com a data passada (se não for passada nenhuma data retorna a taxa anual do dia de hoje). | |
| * Fonte: https://www.bcb.gov.br/estabilidadefinanceira/selicdadosdiarios | |
| **/ | |
| function SELIC(dataConsulta = new Date()) { | |
| var today = Utilities.formatDate(new Date(), "GMT+3", "dd/MM/yyyy"); | |
| if (dataConsulta.length == 0) | |
| dataConsulta = new Date() |
This file contains hidden or 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 Safety | |
| # Anki 2.0 addon | |
| # Author EJS | |
| # https://eshapard.github.io/ | |
| # | |
| # Prevents cards in learning state from being moved out of a filtered deck | |
| # when you rebuild it. | |
| from anki.sched import Scheduler | |
| #from aqt.utils import showInfo |