Skip to content

Instantly share code, notes, and snippets.

View QuietNoise's full-sized avatar

Edgerunner QuietNoise

View GitHub Profile
@QuietNoise
QuietNoise / Excel-paste-without-formatting.ahk
Last active April 14, 2025 21:50
Paste into Excel without formatting
#SingleInstance Force
; Press Ctrl+q to paste clipboard into Excel without formatting
; Run this hotkey hijack only if Excel is active
#If WinActive("ahk_exe EXCEL.EXE") ; Check if active window process is run from excel.exe
^q:: ; Ctrl + q - this is the shortcur we are hijacking
Clipboard := Clipboard ; This line removes any present formatting in clipboard and changes it to plain text
Send ^v ; This line sends Ctrl+v to the active window
return
@QuietNoise
QuietNoise / auto_filename.py
Last active May 10, 2025 15:13 — forked from robertguetzkow/auto_filepath.py
Blender add-on for automatic unique output file name generation based on the current timestamp
# Inspired by original code by Robert Guetzkow: https://gist.github.com/robertguetzkow/8dacd4b565538d657b72efcaf0afe07e
# If you want save still image renders (F12) you must have at least one File Output node connected to image output in your compositor.
# The node's name will be prepended to the filename as well as the timestamp.
# The timestamp is created when the job is started and not when the frame is rendered thus for animation renders the timestamp
# will be the same for all frames.
# There is also an option to put entire animation renders in its own timestampted subfolder and to give animation frames a prefix.
bl_info = {
"name": "Auto-Filename",