Skip to content

Instantly share code, notes, and snippets.

View minrk's full-sized avatar

Min RK minrk

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Created Date Query Total Results
2024-03-27 00:55:35 embed 0
2024-03-26 23:36:07 devcontainer 0
2024-03-24 12:37:57 terminal 2
2024-03-24 12:37:41 root password 6
2024-03-21 19:15:15 grafana 0
2024-03-21 19:15:12 dashboard 0
2024-03-21 11:26:35 helm 10
2024-03-19 16:06:44 memory 3
2024-03-19 16:06:38 ram 0
"""
Format stdin with ruff to stdout
When formatting fails, append error message
For use in an Automator Quick Action (Run Shell Script),
accessible everywhere via right click -> Services > ruff format,
or global keyboard shortcut registered in System Settings > Keyboard > Keyboard Shortcuts
Find the action under Services
FROM ubuntu:23.10
RUN apt-get -y update && apt-get -y install curl unzip cmake ninja-build openssl xz-utils build-essential libz-dev libssl-dev
ENV BUILD_PREFIX=/opt/build
ENV PATH=${BUILD_PREFIX}/bin:$PATH
ARG PYTHON_VERSION=3.11.8
WORKDIR /src
RUN curl -L -o python.tar.xz https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tar.xz \
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
FROM ubuntu:22.04
RUN apt-get -y update && apt-get -y dist-upgrade
RUN apt-get -y install cmake ninja-build curl openssl xz-utils build-essential libz-dev libssl-dev
RUN curl -L -O https://www.python.org/ftp/python/3.11.8/Python-3.11.8.tar.xz \
&& tar -xf Python-3.11.8.tar.xz \
&& rm Python-3.11.8.tar.xz
ENV BUILD_PREFIX=/opt/build
ENV PATH=${BUILD_PREFIX}/bin:$PATH
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.