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
| Substitute ( | |
| ",TableName,TableID,BaseTableName,BaseFileName," & ¶ | |
| & ",----,----,----,----," & ¶ & | |
| ExecuteSQL ( | |
| "SELECT '',TableName,TableID,BaseTableName,BaseFileName,'' FROM FILEMAKER_TABLES WHERE TableName <> BaseTableName" ; | |
| "" ; | |
| "" | |
| ) ; | |
| "," ; | |
| "|" |
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
| Let ( | |
| baseTables = "'" & | |
| ExecuteSQL ( | |
| "SELECT TableName FROM FILEMAKER_TABLES WHERE TableName = BaseTableName" ; | |
| "" ; | |
| "','" | |
| ) & "'" ; | |
| Substitute ( | |
| ",TableName,FieldName,FieldType,FieldID,FieldClass,FieldReps,ModCount," & ¶ & | |
| ",----,----,----,----,----,----,----," & ¶ & |
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
| Substitute ( | |
| ",TableName,TableID,BaseTableName,BaseFileName," & ¶ & | |
| ",----,----,----,----," & ¶ & | |
| ExecuteSQL ( | |
| "SELECT '',TableName,TableID,BaseTableName,BaseFileName,'' FROM FILEMAKER_TABLES" ; | |
| "" ; | |
| "" | |
| ) ; | |
| "," ; | |
| "|" |
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
| Substitute ( | |
| ",TableName,TableID,BaseTableName,BaseFileName," & ¶ & | |
| ",----,----,----,----," & ¶ & | |
| ExecuteSQL ( | |
| "SELECT '',TableName,TableID,BaseTableName,BaseFileName,'' FROM FILEMAKER_TABLES WHERE TableName = BaseTableName" ; | |
| "" ; | |
| "" | |
| ) ; | |
| "," ; | |
| "|" |
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
| Substitute ( | |
| ",TableName,FieldName,FieldType,FieldID,FieldClass,FieldReps,ModCount," & ¶ & | |
| ",----,----,----,----,----,----,----," & ¶ & | |
| ExecuteSQL ( | |
| "SELECT '',TableName,FieldName,FieldType,FieldID,FieldClass,FieldReps,ModCount,'' FROM FILEMAKER_FIELDS" ; | |
| "" ; | |
| "" | |
| ) ; | |
| "," ; | |
| "|" |
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
| While ( | |
| [ | |
| tables = TableNames ( "" ) ; | |
| relationList = "| Source File | Related To | Options |" & ¶ & | |
| "| ---- | ---- | ---- | ---- |" | |
| ] ; | |
| ValueCount ( tables ) > 0 ; | |
| [ |
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
| // Menu: Battery Monitor | |
| // Description: Check if AC should be disconnected? Poorman's AlDente | |
| // Author: Richard Dyce | |
| // Twitter: @dickiedyce | |
| // schedule: 0,15,20,45 5-22 * * * | |
| import "@johnlindquist/kit" | |
| const result = await exec(`pmset -g batt`) |
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
| rsync -auvhp --delete --exclude=node_modules "/Users/dd/webui" "/Users/dd/Library/Mobile Documents/com~apple~CloudDocs/WebUI Work" |