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
FROM mongo | |
ARG REPO_USER=baruchiro | |
ARG REPOSITORY=Accounts | |
ARG RESTORE_SCRIPT=mongo/load.sh | |
ENV REPOSITORY=${REPOSITORY} | |
ENV RESTORE_SCRIPT=${RESTORE_SCRIPT} | |
RUN apt-get update |
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
#!/usr/bin/python3 | |
# args: <Project directory> <App Name> | |
# Example: ~/source/myapp/bin/Release/netcoreapp2.1/publish myapp | |
import json | |
import sys | |
import os | |
import urllib.request | |
import zipfile | |
import tempfile |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
using System; | |
using System.Linq; | |
namespace extension | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double[][] matrix = |
NewerOlder