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
"extensionsGallery": { | |
"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", | |
"cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", | |
"itemUrl": "https://marketplace.visualstudio.com/items" | |
} |
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 datetime | |
import logging | |
import datetime | |
class ISODateLogFilter: | |
def filter(self,record): | |
record.isodate = datetime.datetime.now().isoformat()[:-3] + "Z" | |
return True | |
logging.basicConfig(level=os.environ.get("LOGLEVEL", "DEBUG"), format="%(isodate)s [%(levelname)-5s] %(message)s") |
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
vcat(map(ij -> [[ij[1],ij[2],k] for k in (ij[2]+1):9], vcat(map(i -> [[i,j] for j in (i+1):9], 1:9)...))...) |