Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@cuttius
cuttius / git-dagster-aws.md
Created December 13, 2023 22:42
Install dagster-aws from git repository

Install dagster-aws in Poetry from a git repository.

Note: This is only part of the pyproject.toml

[tool.poetry.dependencies]
python = "^3.11"
dagster = { extras = ["aws"], version = "==1.5.3" }
dagit = "==1.5.3"
spade = { path = "../spade", develop = true, extras = ["all"] }
@cuttius
cuttius / python-alt-install.sh
Last active August 7, 2024 12:22
Linux Python alt install
#!/bin/sh
# build and alt install python for linux
# Install system packages required by Python
## For apt-based systems (like Debian, Ubuntu, and Mint)
# sudo apt-get install -y make build-essential libssl-dev zlib1g-dev \
# libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
# libncurses5-dev libncursesw5-dev xz-utils tk-dev
@cuttius
cuttius / Installation.md
Created May 18, 2023 17:29 — forked from albertbori/Installation.md
Automatically disable Wifi when an Ethernet connection (cable) is plugged in on a Mac

Overview

This is a bash script that will automatically turn your wifi off if you connect your computer to an ethernet connection and turn wifi back on when you unplug your ethernet cable/adapter. If you decide to turn wifi on for whatever reason, it will remember that choice. This was improvised from this mac hint to work with Yosemite, and without hard-coding the adapter names. It's supposed to support growl, but I didn't check that part. I did, however, add OSX notification center support. Feel free to fork and fix any issues you encounter.

Most the credit for these changes go to Dave Holland.

Requirements

  • Mac OSX 10+
  • Administrator privileges