This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Deleting Xcode Derived Data and Caches for when autocomplete is being less than stellar | |
tell application "Terminal" | |
-- For zsh | |
-- set s1 to do script "setopt rmstarsilent; " & "rm -frd ~/Library/Developer/Xcode/DerivedData/*" | |
-- set s2 to do script "setopt rmstarsilent; " & "rm -frd ~/Library/Caches/com.apple.dt.Xcode/*" | |
-- Works no matter what the default shell is, hopefully | |
set s1 to do script "bash -c \"rm -frd ~/Library/Developer/Xcode/DerivedData/*\"" | |
set s2 to do script "bash -c \"rm -frd ~/Library/Caches/com.apple.dt.Xcode/*\"" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SHAnimatableColor.h | |
// Sparrow | |
// | |
// Created by Shilo White on 7/15/11. | |
// Copyright 2011 Shilocity Productions. All rights reserved. | |
// | |
// This program is free software; you can redistribute it and/or modify | |
// it under the terms of the Simplified BSD License. | |
// |