Skip to content

Instantly share code, notes, and snippets.

View farOverNinethousand's full-sized avatar
💭
Always working on making existing software even better ;)

farOverNinethousand

💭
Always working on making existing software even better ;)
View GitHub Profile
@marians
marians / CouchDB_Python.md
Last active June 14, 2025 02:00
The missing Python couchdb tutorial

This is an unofficial manual for the couchdb Python module I wish I had had.

Installation

pip install couchdb

Importing the module

@pdbartsch
pdbartsch / rename.bat
Last active February 9, 2025 17:51
Windows batch file to change the names of many files based on a csv. The first "column" of the csv contains the old name name with the old file extension. Then second contains the new name with no file extension.
@echo off
setlocal enableDelayedExpansion
REM sets folder to CD (current directory)
SET folder=%CD%
REM if the renamed folder already exists, I'll assume I've already run this script and go to EOF (end of file)
IF EXIST "%folder%\renamed" GOTO :EOF
REM else move on to :FOLDERDOESNOTEXIST
GOTO :FOLDERDOESNOTEXIST