-
Content Count
3,787 -
Joined
-
Last visited
-
Days Won
268
vitor last won the day on December 13 2020
vitor had the most liked content!
About vitor
-
Rank
Workflow Expert / Moderator
Contact Methods
-
Twitter
https://twitter.com/vhgalvao
-
Website URL
http://vitorgalvao.com/
Recent Profile Visitors
17,227 profile views
-
deanishe reacted to a post in a topic: Virus Total detection
-
Chris Messina reacted to a post in a topic: Virus Total detection
-
vitor started following How to use multiple modifier in AppleScript record?, Virus Total detection, [SOLVED] Split Arg to Var in Workflows : Two delimiters ? and 2 others
-
Yet if you scan the whole app, there’s no detections. VirusTotal found a single hit from one antivirus vendor which I never heard about. I trust Alfred’s team and maliciousness doesn’t even enter the equation, but in the spirit of thoroughness (e.g. maybe the development machine was compromised) I decided to search online for VEX.Webshell. All I found were matches by Bkav Pro, and all of them were false positives. This specific case with Alfred had already been discussed in Reddit. There’s nothing to worry about.
-
Update. Added support for Firefox. Because it does not support AppleScript, the inbox will open in the foreground and you must manually return to the tab you were in. It’s an inferior experience to other browsers, but in this case I do feels it’s better than nothing. To update, download the latest version (same URL) or wait a few days and it’ll prompt you to on next usage, since it uses OneUpdater.
-
vitor reacted to a post in a topic: Terminal Command strips beginning of textarea
-
Updated for Big Sur and removed support for older macOS versions. To update, download the latest version (same URL) or wait a few days and it’ll prompt you to on next usage, since it uses OneUpdater. If you’re still on pre-Big Sur, download an older version of the Workflow and delete the node labeled OneUpdater.
-
Thank you. I’ll see how I get on and may take you up on that offer if I need it.
-
lemikeone reacted to a post in a topic: [SOLVED] Split Arg to Var in Workflows : Two delimiters ?
-
solved [SOLVED] Split Arg to Var in Workflows : Two delimiters ?
vitor replied to lemikeone's topic in Discussion & Help
Add a Replace Utility before the Split Utility and tell it to replace spaces with @ (or vice-versa). You’ll get the same result as multiple delimiters. -
UploadFile — Upload files and directories for easy sharing
vitor replied to vitor's topic in Share your Workflows
Update. Added support for https://arxius.io/ To update, download the latest version (same URL) or wait a few days and it’ll prompt you to on next usage, since it uses OneUpdater. -
Alan He reacted to a post in a topic: Alfred Remote for Android?
-
Welcome @Mtraleigh, That is unlikely to happen. A port to Android would likely take precedence over any specific device, and that one isn’t likely to happen any time soon either.
-
solved [SOLVED] Alfred Remote for Android?
vitor replied to Modulo216's topic in Alfred Remote Discussion & Help
Welcome @Modulo216, This has already been answered: there are no plans for it as of now. Please don’t create duplicate posts for things you know were already resolved. The last post on the linked thread specifically asks for people not to do that, and it was locked because of it. Insisting does not change the facts that make this non-viable for Alfred’s team, it just increases the support burden (which in turn decreases Alfred’s overall quality). -
Update. You can now add apps to the keep_alive list on a per-run basis, by adding them as arguments on the Keyword. Also, ⌘↵ is a shortcut to add the frontmost app. To update, download the latest version (same URL) or wait a few days and it’ll prompt you to on next usage, since it uses OneUpdater.
-
@Floating.Point @trillionanswers I’m convinced to look further into it.
-
How to use multiple modifier in AppleScript record?
vitor replied to Pete31's topic in Workflow Help & Questions
Apologies from me as well. Did not mean to pressure or offend. -
deanishe reacted to a post in a topic: How to use multiple modifier in AppleScript record?
-
How to use multiple modifier in AppleScript record?
vitor replied to Pete31's topic in Workflow Help & Questions
And that’s exactly why you should learn another language. AppleScript, besides being a poor language with one redeeming quality (UI automation), works in a single operating system (macOS), has bad documentation (like all other Apple technologies), is unpopular (which means fewer avenues to get help when stuck), is neglected and will die (Apple hasn’t worked on it for years, dismantled the division responsible for it, and no longer adds support for it in their own tools). In sum, you’re investing time in a dying technology. Worse, because AppleScript is atypical, knowledge from it doesn -
deanishe reacted to a post in a topic: How to use multiple modifier in AppleScript record?
-
Pete31 reacted to a post in a topic: How to use multiple modifier in AppleScript record?
-
How to use multiple modifier in AppleScript record?
vitor replied to Pete31's topic in Workflow Help & Questions
You may be able to transition to JXA (Apple has side-by-side examples). Since JXA is JavaScript, you’ll be able to output JSON. But in truth you should begin to dive into a better, more supported, and more popular language, such as Ruby or Python (both good choices, and they ship with macOS). -
How to use multiple modifier in AppleScript record?
vitor replied to Pete31's topic in Workflow Help & Questions
You can’t. Closest you can get is faking it. In MarkdownTransform, which I use for all my posts on this forum, I convert inline code (backticks) to: [background=#eee][font=courier,monospace]CODE HERE[/font][/background] Which when posted looks like CODE HERE.