Skip to content

Instantly share code, notes, and snippets.

View jediminer543's full-sized avatar

jediminer543

  • The Multiverse
View GitHub Profile
@rikatz
rikatz / Dockerfile
Last active July 9, 2026 13:42
Coderabbit CLI on a Docker container
FROM fedora:43
ARG USER_UID=1001
RUN dnf -y install unzip git \
&& curl -fsSL https://cli.coderabbit.ai/install.sh > /tmp/coderabbit.sh \
&& /bin/sh /tmp/coderabbit.sh \
&& mv $HOME/.local/bin/coderabbit /bin/coderabbit \
&& git config --system --add safe.directory /workdir \
&& useradd -u ${USER_UID} -m coderabbit \
@shutebt01
shutebt01 / gist:667e61d2f101f2f04542
Last active August 29, 2015 14:07
TKinter Example
# Imports tkinter and constants
import tkinter
from tkinter.constants import *
# addition function
def add():
a = float(num1In.get("1.0",END))
b = float(num2In.get("1.0",END))
ansOut['text'] = str(a + b)