Skip to content

Instantly share code, notes, and snippets.

@koinzhang
koinzhang / simple-applescript.applescript
Last active June 27, 2024 13:49
Simple AppleScript
-- Show system hidden files
tell application "Finder" to quit
tell application "System Events" to do shell script "defaults write com.apple.finder AppleShowAllFiles -bool true"
tell application "Finder" to launch
-- copy file to clipboard
tell app "Finder" to set the clipboard to (POSIX file "/Users/zhangyongkang/Desktop/Markdown.md")
@koinzhang
koinzhang / BitmapUtils.kt
Last active July 2, 2022 02:59
[Utils] Android Utils Code
import android.content.Context
import android.graphics.*
import android.graphics.Bitmap.CompressFormat
import android.graphics.drawable.Drawable
import android.renderscript.Allocation
import android.renderscript.Element
import android.renderscript.RenderScript
import android.renderscript.ScriptIntrinsicBlur
import android.text.TextUtils
import android.util.Log