Skip to content

Instantly share code, notes, and snippets.

@olimorris
olimorris / download.py
Created May 31, 2024 16:23
Using Python to download code in Automation 360
import requests
import os
# URL of the API endpoint
url = "https://httpbin.org/image/png"
def download():
# Make the GET request
response = requests.get(url)
@olimorris
olimorris / Dockerfile
Last active May 31, 2024 16:23
Use Docker to install MS-SQL Server 2017 with Full Text Search and MS-SQL Tools
# mssql-agent-fts-ha-tools
# Maintainers: Microsoft Corporation (twright-msft on GitHub)
# GitRepo: https://github.com/Microsoft/mssql-docker
# Base OS layer: Latest Ubuntu LTS
FROM ubuntu:16.04
# Install curl since it is needed to get repo config
# Get official Microsoft repository configuration
RUN export DEBIAN_FRONTEND=noninteractive && \