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
| <#setting time_zone=timeZone.ID> | |
| <#setting locale=locale.toString()> | |
| <#setting datetime_format="MM/dd/yyyy"> | |
| <ul> | |
| <#list entries as entry> | |
| <li><li>${entry.title} - ${entry.modifiedDate?datetime}</li></li> | |
| </#list> | |
| </ul> |
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
| // https://github.com/mikedunker/JSMapr | |
| // License: MIT | |
| // Version: 0.0.1 | |
| (function () { | |
| var sep = "/"; | |
| var mapCommands = []; | |
| var logFunc = null; | |
| function log() { |
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
| package org.flywaydb.core; | |
| import com.simba.googlebigquery.jdbc42.DataSource; | |
| import org.flywaydb.core.Flyway; | |
| import java.net.URISyntaxException; | |
| import java.sql.SQLException; | |
| public class BQTest { |
OlderNewer