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
#!/usr/bin/osascript | |
on run argv | |
set theFilePath to POSIX file (item 1 of argv) | |
set theFolder to theFilePath as alias | |
tell application "System Events" to set theDocs to theFolder's items whose name extension = "numbers" | |
repeat with aDoc in theDocs | |
set docName to aDoc's name as text |
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
# IntelliJ IDEA vm options | |
-ea | |
-server | |
-Xms2G | |
-Xmx4096M | |
-Xss2m | |
-XX:MaxMetaspaceSize=2G | |
-XX:ReservedCodeCacheSize=1G | |
-XX:MetaspaceSize=512m |