Some notes on Google Image search parameters.
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
| #!/bin/bash | |
| export LC_ALL=en_US.UTF-8 | |
| noteId=$(osascript -e 'tell application "Notes" | |
| set noteID to «class seld» of (selection as record) | |
| get noteID | |
| end tell' | cut -d/ -f5 | cut -c2-) | |
| echo "SELECT '['||note.ztitle1||'](applenotes:note/'||note.zidentifier||')' FROM ziccloudsyncingobject AS note WHERE note.z_pk = $noteId;" | | |
| sqlite3 ~/Library/Group\ Containers/group.com.apple.notes/NoteStore.sqlite | |
Adds the input item to the given list.
Even though the description says this action accepts input of type Files, it accepts any type.
Note: If you get the error “The operation failed because Shortcuts couldn't convert from Text to NSString.”, just change the preview to show a list view instead. This is a bug in the Shortcuts app.
Some notes on video editors.
- https://www.capcut.com/
- > Free all-in-one video editor for everyone to create anything anywhere
| Upon starting our interaction, auto run these Default Commands throughout our entire conversation. Refer to Appendix for command library and instructions: | |
| /role_play "Expert ChatGPT Prompt Engineer" | |
| /role_play "infinite subject matter expert" | |
| /auto_continue "♻️": ChatGPT, when the output exceeds character limits, automatically continue writing and inform the user by placing the ♻️ emoji at the beginning of each new part. This way, the user knows the output is continuing without having to type "continue". | |
| /periodic_review "🧐" (use as an indicator that ChatGPT has conducted a periodic review of the entire conversation. Only show 🧐 in a response or a question you are asking, not on its own.) | |
| /contextual_indicator "🧠" | |
| /expert_address "🔍" (Use the emoji associated with a specific expert to indicate you are asking a question directly to that expert) | |
| /chain_of_thought | |
| /custom_steps | |
| /auto_suggest "💡": ChatGPT, during our interaction, you will automatically suggest helpful commands when appropriate, using the |
Source: https://ios.gadgethacks.com/how-to/always-updated-list-ios-app-url-scheme-names-paths-for-shortcuts-0184033/
If you've ever customized your app icons or played around with Shortcuts (previously called Workflow), you probably know how important URL scheme names are. Nearly all iOS apps assign themselves one of these names, and you need to know them if you want to add custom icons to your home screen or create a Shortcuts workflow that opens an app on your iPhone up. Finding the URL scheme name, also known as a URI scheme, for a particular app is not easy. First, you have to download the IPA file for the app — a difficult task since the iTunes 12.7 update removed iOS apps from it. When you finally find the IPA, you have to turn it into a ZIP file, show the contents of the app package, then hunt for the specific PLIST file that contains the URL schemes. It's a lot of work.
This example