bevesce
Member-
Posts
28 -
Joined
-
Last visited
-
Days Won
2
bevesce last won the day on November 28 2019
bevesce had the most liked content!
bevesce's Achievements
Member (4/5)
24
Reputation
-
Alfred Einstein reacted to a post in a topic: Find and paste unicode symbols - arrow, triangles, greek and more
-
brunoc reacted to a post in a topic: Find and paste unicode symbols - arrow, triangles, greek and more
-
Find and paste unicode symbols - arrow, triangles, greek and more
bevesce replied to bevesce's topic in Share your Workflows
I have no idea, it works for me. It's old OSX but I'd be surprised if that's the reason. -
Find and paste unicode symbols - arrow, triangles, greek and more
bevesce replied to bevesce's topic in Share your Workflows
Yeah, it was meant as log for debugging. It should've been removed. I commited new version that does that. Sorry. -
Find and paste unicode symbols - arrow, triangles, greek and more
bevesce replied to bevesce's topic in Share your Workflows
I updated workflow with new emojis from iOS 8.3 and simplified script itself -
Search Pinboard bookmarks using basic and small query language: logical operators: and, or, not #tag keywords: unread, How to and source on GitHub: https://github.com/bevesce/Pinboard-search
-
Tyler Eich reacted to a post in a topic: Find and paste unicode symbols - arrow, triangles, greek and more
-
Patrik reacted to a post in a topic: Find and paste unicode symbols - arrow, triangles, greek and more
-
bevesce reacted to a post in a topic: (another?) Workflow for Pinboard
-
bevesce reacted to a post in a topic: Rename 4.0 beta 2 for Alfred 3: Batch Rename files or folders (supports Regular Expression and EXIF date)
-
bevesce reacted to a post in a topic: Mavericks Tags - File and Email Tagging with Alfred 2 (updated to v1.4)
-
sm_miri reacted to a post in a topic: Find and paste unicode symbols - arrow, triangles, greek and more
-
Find and paste unicode symbols - arrow, triangles, greek and more
bevesce replied to bevesce's topic in Share your Workflows
I don't know. But inserting a symbol on hotkey is the simplest thing in the world: just join Trigger > Hotkey and Outputs > Copy to clipboard. -
bevesce reacted to a post in a topic: Edit with… 4.1 beta for Alfred 4: A QuickCursor alternative
-
bevesce reacted to a post in a topic: Copy Files to Clipboard
-
thec13 reacted to a post in a topic: Find and paste unicode symbols - arrow, triangles, greek and more
-
Tyler Eich reacted to a post in a topic: Passing files in buffer to script
-
It bothered me for some time too. I did some profiling and most of the time my scripts is spending on retrieving tags of selected files. I cutted some of not necessary calls to that function and it reduced time that scripts works by factor of two, but it was not fast enough. If you check out newest update I added atag keyword that have the same functionality that tag keyword has but it doesn't displays any tags of selected files at all, which reduces time approximately 300-500 times and it's really fast (0.002s on my MacBook) but still inserting tags isn't instantaneous and I don't think that I can do anything more, it's just how Alfred works. Let me know how it works for you after update, because I'm not sure myself.
-
obstschale reacted to a post in a topic: Find and paste unicode symbols - arrow, triangles, greek and more
-
Convert currency Alfred workflow and python script that converts currencies using http://www.google.com/ig/calculator it's way faster than https://www.google.com/finance/converter Converter works offline, when there is no internet connection currency exchange rate from the last time when script/workflow were used to convert given pair of currencies. Usage Just type keyword and argument: 10 usd in jpy - displays yen and favorite currencies 10$€ - displays euro and favorite currencies 10 usd - displays favorite currencies 10 - uses default currency - can be specified in convertcurrency.py no argument - uses default currency and 1 as amount Tapping return ↩ in workflow pastes result of conversion to active application. Tapping command+return ⌘+↩ marks currency as favorite - it will be automatically displayed always when converter Download: https://github.com/bevesce/Convert-Currency/raw/master/Convert%20Currency.alfredworkflow Source: https://github.com/bevesce/Convert-Currency
-
The newest update isn't Alfred related but anyhow I added new script to utilities that import todos from Reminders.app. That allows to put new items in Inbox with Siri on iOS. Priorities, notes, creation, due and remind me dates, are preserved.
-
bevesce reacted to a post in a topic: Tiny PNG workflow [Updated to v1.2]
-
Find and paste unicode symbols. I included a lot of them, like really a lot, over 20k I think, but for me workflow works pretty fast. Symbol can be pasted as symbol (mh...), in html encoding, as python string and as unicode code point. Download: https://github.com/bevesce/unicode-symbols-search/raw/master/Symbols.alfredworkflow Source: https://github.com/bevesce/unicode-symbols-search
-
Script runner - add scripts to list and run them.
bevesce replied to bevesce's topic in Share your Workflows
So ok, new commit supports adding whole folders of scripts to workflow in the same way as text files. Folder itself is displayed on the list - to allow removal. It's not feature used by me so I would appreciate eventual bug reports. -
Script runner - add scripts to list and run them.
bevesce replied to bevesce's topic in Share your Workflows
Simple alfreds file search won't work because it wouldn't be possible to pass arguments to scripts. I opted for adding individual scripts manually as more flexible way, I don't need to add whole folders of them but maybe I'll implement it when I'll have some free time. -
Script runner - add scripts to list and run them.
bevesce replied to bevesce's topic in Share your Workflows
Oh, yeah, I managed to forgot about most important part. It's in first post now. -
Can anyone explain me why sending messages in this workflow has so many if-else statements? I wrote workflow that displays all contacts from Adium in Alfred and allows to send message, but my sending is in two lines and seems to work but maybe I don't know something (well, I know nothing about applescript despite using it in this...).