Skip to content

Instantly share code, notes, and snippets.

View koukikitamura's full-sized avatar

koki kitamura koukikitamura

  • Tokyo
View GitHub Profile
@koukikitamura
koukikitamura / kindle_cleaner
Created April 24, 2026 07:24
KindleCleaner: Automatically remove "Kindle Edition" citations and trailing newlines from macOS clipboard. (Lightweight bash script + launchd)
#!/bin/bash
# ==============================================================================
# KindleCleaner
# ==============================================================================
# Description:
# Automatically removes the "Kindle Edition" citation and trailing newlines
# from text copied from the Kindle for Mac app.
#
# Usage:
@koukikitamura
koukikitamura / setup_dotfiles.sh
Last active December 7, 2024 12:37
Setup dotfiles
#!/bin/bash
DOTPATH=~/.dotfiles
GITHUB_URL=git@github.com:koukikitamura/dotfiles.git
if [ -d "$DOTPATH" ]; then
echo "($DOTPATH) has been setup."
exit 1
fi
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Kotlin application project to get you started.
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
* User Manual available at https://docs.gradle.org/7.5.1/userguide/building_java_projects.html
*/
plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.