Skip to content

Instantly share code, notes, and snippets.

View cynion's full-sized avatar
💭
I may be slow to respond.

Cynion cynion

💭
I may be slow to respond.
View GitHub Profile
@cynion
cynion / finder_icons.sh
Created April 12, 2023 11:35 — forked from chockenberry/finder_icons.sh
Script to toggle Finder icons
#!/bin/sh
defaults read com.apple.finder CreateDesktop > /dev/null 2>&1
enabled=$?
if [ "$1" = "off" ]; then
if [ $enabled -eq 1 ]; then
osascript -e 'tell application "Finder" to quit'
defaults write com.apple.finder CreateDesktop false
open -a Finder
@cynion
cynion / BBEdit-TextWrangler_RegEx_Cheat_Sheet.txt
Created January 25, 2021 11:52 — forked from ccstone/BBEdit-TextWrangler_RegEx_Cheat_Sheet.txt
BBEdit-TextWrangler Regular Expression Cheat-Sheet
————————————————————————————————————————————————————————————————————————————————————————————————————
BBEdit / BBEdit-Lite / TextWrangler Regular Expression Guide Modified: 2018/08/10 01:19
————————————————————————————————————————————————————————————————————————————————————————————————————
NOTES:
The PCRE engine (Perl Compatible Regular Expressions) is what BBEdit and TextWrangler use.
Items I'm unsure of are marked '# PCRE?'. The list while fairly comprehensive is not complete.

Keybase proof

I hereby claim:

  • I am cynion on github.
  • I am cynion (https://keybase.io/cynion) on keybase.
  • I have a public key ASDDTAK6-3rZ1QmYJO0JzcbrgdwB_Dl5AUvyLFDjozNPKAo

To claim this, I am signing this object:

@cynion
cynion / Gemfile
Created January 21, 2013 12:43 — forked from soffes/Gemfile
source 'https://rubygems.org'
# The latest version of Ruby
ruby '2.0.0'
# The lastest version of Rails
gem 'rails', '3.2.11'
# Postgres
gem 'pg'