Skip to content

Instantly share code, notes, and snippets.

@codemoo
codemoo / scan_dropbox_conflicts.sh
Last active September 18, 2025 07:46
Bash script to scan Dropbox folders for conflicted copies and optionally delete them.
#!/usr/bin/env bash
# ------------------------------------------------------------
# scan_dropbox_conflicts.sh
#
# Scan a Dropbox folder for conflicted copy files and optionally delete them.
# Fast mode uses Spotlight (mdfind) on macOS; fallback uses find with name filters.
#
# Features:
# - Recursive scan of target folder (default: current directory).
# - Multi-language patterns ("conflicted copy", "충돌된 사본"; extensible).
@codemoo
codemoo / arithmetic_operators.c
Last active April 6, 2020 15:44
[공학정보처리] 연산자
#include <stdio.h>
int main(void)
{
int a;
int b;
int c;
a = 83; b = 10; c = 2;