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
#!/bin/bash | |
killall Xcode | |
xcrun -k | |
xcodebuild -alltargets clean | |
rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache" | |
rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang.$(whoami)/ModuleCache" | |
rm -rf ~/Library/Developer/Xcode/DerivedData/* | |
rm -rf ~/Library/Caches/com.apple.dt.Xcode/* | |
open /Applications/Xcode.app |
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
/** | |
* DataTables plug-in to handle euro.-style dates. Requires month day year. | |
* Time is optional and can be in 12 or 24 hour formats. | |
* Properly parses mm/m, dd/d and yyyy/yy. | |
* | |
* Based on original datetime-us plugin by Kevin Gravier. | |
* | |
* @name Flexible Euro Datetime | |
* @summary Sort dates and times in dd/mm/yyyy with optional time. | |
* @author Mark Stewart |