Jump to content

bevesce

Member
  • Posts

    28
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Thanks
    bevesce got a reaction from Alfred Einstein in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  2. Thanks
    bevesce got a reaction from brunoc in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  3. Like
    bevesce got a reaction from Tyler Eich in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  4. Like
    bevesce got a reaction from Patrik in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  5. Like
    bevesce reacted to listboss in (another?) Workflow for Pinboard   
    Greatly improved workflow re-written in Rust.
    Check out the github page for installation and new features such as
    popular tag suggestion link preview deletion... Automatic workflow updates  
    Install it from:
    Github: https://github.com/spamwax/alfred-pinboard-rs/releases/latest  
    Old Changelog (not maintained here anymore)
     
    https://github.com/spamwax/alfred-pinboard-rs
    Update (2019-06-21)  0.15.5
    Add option to either show TAGs or URLs in search results. Fix multiple issues related to release of Alfred 4 pcheck should now force a network call regardless of when last update check was done. Add a combo modifier for search result to copy URL to clipboard. Fix: deleting a bookmark was not working. Full CHANGELOG  
    Update (2018-06-04)  0.14.0
    Add support for automatic update of workflow Fix a caching bug  
    Update (12/08/2017): v0.5.0
    Add support for dev version of Safari & Firefox (thanks to https://github.com/grusch-it) Add support to set toread flag of bookmarks. Just add toread to description/note (after semi-colon) p tag1 tag2 ; note toread Update (01/28/15):
    Another attempt at fixing openning browsers (thanks to https://github.com/grusch-it) Removed unecessary browser settings from workflow. Update (01/26/15):
    Fix the broken option settings due to an incomplete pull request merge Fix not getting title of the Firefox tab Update (11/25/14):
    Add support to automatically pick the most front browser (Chrome, Safari, Firefox, Chromium) Show the 'New Tag' item at the bottom of tag suggestion list Update (08/10/14):
    Add (kind of hacky) support for Firefox Update (07/12/14):
    Add support for Chromium browser Add options to perform search on tags only Add support for private/public bookmarks Add support for auto-updating the bookmarks cache after posting a new bookmark. Download link: http://goo.gl/55917Z   Update (01/29/14):
    Bug Fix: searching should be case sensitive now. Update (12/15/13):
    Added (fuzzy) search capability. User friendlier approach to specifying workflow's settings. I am planning to add more features such as Delicious API support.
     
    For details and features please visit https://bitbucket.org/listboss/go-pinboard/wiki/Home
     
    I mainly wrote this so I can learn/practice Go (golang). It uses an Alfred workflow helper that's also written in Go.
    The helper is similar to what Dave has for php: https://bitbucket.org/listboss/go-alfred
     
    Some screenshots:

     

     

     

     
  6. Like
    bevesce reacted to Carlos-Sz in Rename 4.0 beta 2 for Alfred 3: Batch Rename files or folders (supports Regular Expression and EXIF date)   
    Overview
    Rename a file or a folder selected in Finder or in Alfred Batch rename files or folders using Regular Expression Add additional steps such as find and replace, remove space, remove diacriticals, capitalize, add current date, file modified date, custom number sequence, EXIF original date etc. Quick look to preview all the new names Recent Expressions Presets, including default ones ready to be used Triggering
    keywords ren or regex - main workflow keyword keywords ren? or regex? - read about the workflow Hotkey - show Alfred with the keyword ren Hotkey - use the last expression with no interaction File Action - rename files or folders selected in Alfred file browser How to Use

    Rename Only

    You can use the workflow to rename a single file without using a regular expression, like in Finder:
    Select a single file in the Finder (or in Alfred file browser) Type the keyword ren Type the new filename e.g. new name.txt You can optionally use modifiers and filename additions (see below).

    Rename with Regular Expression

    Here is a command line with all features, including the optional ones, as explained below:
     
    regular expression@new filename $d-$m-$y ###[1]{find@@replace}{-modifiers} Step by step:

    (1) Type the regular expression to group elements of the previous filename:
    ^([ˆ ]+) (.*)\.(.*) The workflow will group using $1, $2, $3 and so on. Later you can use them to build a new filename.

    (2) When the regular expression is finished type then an at sign at the end:
    ^([ˆ ]+) (.*)\.(.*)@ (3) After the at sign type the new filename (here you can use the groups formed in the first step):
    ^([ˆ ]+) (.*)\.(.*)@$1.$3 (4) Optionally add current date or any other filename constants (read below about them):
    ^([ˆ ]+) (.*)\.(.*)@$1 $d-$m-$y.$3 (5) Optionally add a custom sequence of numbers e.g. with two leading zeros starting at one (read how to build a custom sequence below):
    ^([ˆ ]+) (.*)\.(.*)@$1 $d-$m-$y ##[1].$3 (6) Optionally find and replace characters in the original filename utilizing the syntax {find@@replace}:
    ^([ˆ ]+) (.*)\.(.*)@$1 $d-$m-$y ##[1].$3{_@@-} (7) Optionally utilize one of the modifiers (read about them below) to e.g. set all letters to lowercase:
    ^([ˆ ]+) (.*)\.(.*)@$1 $d-$m-$y ##[1].$3{_@@-}{-l} Note that it is important to keep the modifiers at the very end of the command and enclosed by {}, using or not find and replace.

    If all you need is a simple find and replace you can use the following simplified command:
    find@@replace{-modifiers} Whether using the regular expression or only the simple find and replace you can always preview the new filenames pressing SHIFT key:



    Modifiers
    -d to remove diacriticals -s to remove space -c to Capitalize Name -t to Title name -u to UPPERCASE -l to lowercase -_ to replace underscore to space -b to replace space to underscore Use one or more at the very end of the command enclosed by {}, for example:
    (.*)\.(.*)@$1.$2{-s-u} -@@_{-u} New Filename Constants

    You can add the following constants to the new filename:

    Current Date
    $d = day e.g. 02 $m = month e.g. 04 $mm = month e.g. April $y = year e.g. 2013 $h = hour e.g. 02 $n = minutes e.g. 54 $s = seconds e.g. 30 Date Created
    $cd = day e.g. 02 $cm = month e.g. 04 $cmm = month e.g. April $cy = year e.g. 2013 $ch = hour e.g. 02 $cn = minutes e.g. 54 $cs = seconds e.g. 30 Date Modified
    $mod = day e.g. 02 $mom = month e.g. 04 $momm = month e.g. April $moy = year e.g. 2013 $moh = hour e.g. 02 $mon = minutes e.g. 54 $mos = seconds e.g. 30 EXIF Original Date

    This is the date and time when the image was originally captured by the camera.
    $ed = day e.g. 02 $em = month e.g. 04 $emm = month e.g. April $ey = year e.g. 2013 $eh = hour e.g. 02 $en = minutes e.g. 54 $es = seconds e.g. 30 Image Dimensions
    $iw = width in pixels $ih = height in pixels Sequence

    You can add a number sequence to the new filename by utilizing # (each one represents a leading zero) followed by the start number enclosed in brackets e.g. ###[1] which means 3 leading zeros starting at 1.

    Create New Folder and Move Files

    You can also use the regular expression to create a new folder and move the file(s) there.

    Utilize a forward slash ("/") before the new name:
     
    (.*)@$m-$y/file.png A new folder will be created based on current month ($m) and year ($y) and the file will be renamed and moved to there.

    Recent Expressions and Presets

    To make things faster the workflow:
    Display the last used expression In Recent Expressions there are a list of the last 40 used expressions; note that you can alo use a shortcut to access them: just type a single at sign (@) In Presets there are some ready to use expressions a long with the user favorites ones; note that you can alo use a shortcut to access them: just type a single hash sign (#)

    The workflow saves the last used regular expression in the main workflow menu, a list of recent regular expressions and a list of Presets.

    To add a Recent expression to Presets just type a plus symbol followed by the preset name: +For My Videos

    While in Presets just type a minus symbol “-“ to remove from Presets.
     
    Download Version 4.0 beta 2
    A new beta of the workflow that fixes some Mac OSX High Sierra bugs I have found.
     
    Please note: Use it with caution. Make some tests first. Backup your files before using the workflow.
     
    Release date 19 Feb 2018 OSX 10.13.3 Alfred 3 Download Now

    Download Version 4.0 beta 1
    Release date 09 Jun 2016 OSX 10.11.5 Alfred 3 Download Now  
    Rename for Alfred 2
    Release date 25 Aug 2014 OSX 10.9.2 Alfred 2.4 or later is required Download Now What's new?
    4.0 Alfred 3 support 3.2 Yosemite support Changed workflow name to only Rename EXIF Original Date (to use as a filename constant) Up to 10 times faster to process and even faster to rename Included the keyword ren as an alternative to the regex Recent Expressions shortcut: type a single @ Presets shortcut: type a single # New Picture Preset Improved Last Used feature UI refinements, including new icons New Help Filename case procedure improved Fixed second leading zero constant Workflow version history here.
  7. Like
    bevesce reacted to _mk_ in Mavericks Tags - File and Email Tagging with Alfred 2 (updated to v1.4)   
    Mavericks Tags - File and Email Tagging with Alfred 2
     
    Features
    Show tags of a file/folder or email Add/Remove tags of a file/folder or email Search files/folders or emails with a specific tag Show list of available tags Installation
     
    Download and import into Alfred 2.
     
    Usage
     
    File Action
     
    The Mavericks Tags workflow is available as Alfred File Action:

     
    Hotkeys
    ⌃⌥T - Show tags of selected file in Finder ⌃⌥M - Show tags of selected email in Apple Mail Select "Add Tag" and ENTER a tag name to add it as new tag to the file/folder/email or select one of the existing tags and press ENTER to remove the selected tag from the file/folder/email.
     



     
    Keywords
    .tagged [tag name] - Search files/folder with tag
    .taggedmail [tag name] - Search emails with tag
    .taglist [tag name] - Show list of all available tags
     
    Credits
     
    Credit for the included command line utility go to jdberry.
     
    The icons are from the Windows8/Metro Icon Pack by Visual Pharm.
     
    Changes
    1.4 [2014-03-01]"Manage Tags" file action now supports multiple file from Alfred's file buffer 1.3 [2013-12-16]".taglist" command now uses mdfind to query all tags instead of the unreliable Finder plist 1.2 [2013-12-10]new keyword ".taglist" to show list of all available tags renamed ".mtagged" keyword to ".taggedmail" 1.1 [2013-11-25]support for tagging emails chnaged icons
  8. Like
    bevesce got a reaction from sm_miri in Find and paste unicode symbols - arrow, triangles, greek and more   
    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.
  9. Like
    bevesce reacted to Carlos-Sz in Edit with… 4.1 beta for Alfred 4: A QuickCursor alternative   
    Beta: 4.1 for Alfred 4

    First update for Alfred 4. Note that the BBCode keyword was not updated yet (may be removed after all).
     
    Download
     
    About QuickCursor

    Altough I didn’t use QuickCursor because it was already unavailable due OSX sandbox, I find myself every now and then needing something like it.

    Overview

    You start typing in one application (e.g. a forum post, an email or a script in Apple Editor) then you realize you need a better editor or just want to type using your default text editor.

    The common thing to do is select the text, copy it to the clipboard, open the text Editor, start a New Document then paste the content. After done you have to select the text, copy it to the clipboard then bring the initial application and finally paste the new content.

    It’s not that hard but it can be faster...

    Usage
    in the initial application optionally select some text bring Alfred and type the keyword editwith now select your text editor: just start typing to find it and hit return key the editor will be opened with the text you have selected initially or blank if there was no text initially after writing, bring Alfred and type the keyword pasteback (the workflow will select the text automatically) the previous application will be displayed and the text will be pasted back In addition, the workflow saves the last used text editor so you can easily use it with a hotkey:
    Optionally select text in the initial application Hit the Edit with hotkey labeled “Copy” (the first one in the workflow) After writing hit the second hotkey named “Paste Back”. Done. You can also utilize the keyword pastebbcode so you can convert markdown into BBCode and then paste to the initial application. It can be very handy if you'd like to write a forum post with your Markdown text editor. The conversion is based on Markdown to BBCode workflow. Check the supported Markdown syntax in the workflow help (keyword editwith?).
     
    Download
     
    Version 4.0 Release Date 09 Jun 2016 OSX 10.11.5 Alfred 3    
    Edit With… for Alfred 2
    Version 3.1 Release Date 24 Aug 2014 OSX 10.9.2 Download now  
    What’s new
     
    Version 4.0
    Alfred 3 support Version 3.1
    Yosemite support Version 3.0
    First step keyword is now editwith Paste back keyword is now pasteback New Paste BBCode Back keyword pastebbcode New Help keyword editwith? Hotkey for paste BBCode back Removed Alleyoop support Version 2.0
    Last used application listed right after the keyword ew (use the keyword at least once) Curor at the end of the initial text too The workflows detects if there is an initial selection otherwise it will select all text The initial step does not require any text at all so you can start with a blank document Supports Alfred 2.0.3 (187) AppleScript improvements Version 1.6
    Cursor at the end of new pasted text Version 1.5
    The initial text selection is optional When the new text is ready the workflow will select it Alleyoop 2 support
  10. Like
    bevesce reacted to ClintonStrong in Copy Files to Clipboard   
    This is a file action to copy one or more files to the clipboard, so you can paste them into another app. Sphardy requested this in the Beta Discussion forum, and I was also wanting a similar feature, so I went ahead and put this together.
     
    Updated Oct 26, 2013: Fix for Mavericks.
     
    Download
  11. Like
    bevesce got a reaction from thec13 in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  12. Like
    bevesce got a reaction from Tyler Eich in Passing files in buffer to script   
    I would like to make workflow for tagging files with openmeta.
    At the moment I came up with File Action that copies files paths to clipboard and then
    I run tagging script with keyword followed by tags.
    It would be much better if paths in buffer were passed to script in way similar to query - {files}(?).
     
    Then I could put files in buffer, type keyword and tags to run workflow.
     
  13. Like
    bevesce got a reaction from obstschale in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  14. Like
    bevesce got a reaction from Buja in Currency converter that works offline, with favorite currencies   
    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
  15. Like
    bevesce got a reaction from Carlos-Sz in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  16. Like
    bevesce got a reaction from _mk_ in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  17. Like
    bevesce got a reaction from derico in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  18. Like
    bevesce reacted to CarlosNZ in Tiny PNG workflow [Updated to v1.2]   
    This workflow will take a set of PNG or JPG files and compress them using the online TinyPNG service.

    For more info on what it does to the image, see http://tinypng.com/

    Usage:

    This workflow works as either a File Action or a regular keyword process.

    Either:
    1) Select the PNG or JPG files you want processed (in Finder or Alfred), then select the "Compress with TinyPNG" File Action in Alfred.
    2) Select the PNG or JPG files you want processed in Finder, launch Alfred, then use the “tinypng" keyword.

    The processed files will be downloaded to a TinyPNG folder on your Desktop, along with a Report showing the success/failure of each file, and how much it has been compressed by.

    The process may take some time, especially if you have selected several large image files, but you will notified on completion. However, if you have Growl/growlnotify installed, you will get a per-file notification as it progresses.
     
    A Note on Heavy Usage:
     
    The TinyPNG API has a limit of 500 files per month. As you can imagine, once a few people are using the workflow substantially, this doesn't take long to reach. I have provided a default API key built-in so you can use the workflow immediately. However, if you intend to continue using it in any substantial capacity I strongly suggest you visit https://tinypng.com/developers and register for your own API key. You can jump there with the keyword “tinypng_getkey” in Alfred. Once you’ve got your key, save it into the workflow configuration with the keyword  “tinypng_config”
     
    Download v1.3
     
    Cheers,
    Carl
     
    ----
     
    28 November 2013 - updated to v1.1
    Updated to use the new TinyPNG.com API Now works as a regular Alfred keyword (with Finder selection) as well as File Action  
    19 March 2014 - updated to v1.2
    Now gives better error reporting on failures. (You’ll be able to tell if the monthly limit has been exceeded.) Consolidated processing to a single bash script. The Finder Selection script now just parses the input and sends it to the main script. (Irrelevant to user experience.) User can enter their own API key to prevent reaching the Free account limit when using a shared key. Updated icons (from TinyPNG.com)  
    6 October 2015 - updated to v1.3
        Now supports JPG files as well.  
  19. Like
    bevesce got a reaction from blkrk4000 in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  20. Like
    bevesce got a reaction from jmjeong in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  21. Like
    bevesce got a reaction from CarlosNZ in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  22. Like
    bevesce got a reaction from Leech in Find and paste unicode symbols - arrow, triangles, greek and more   
    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
  23. Like
    bevesce got a reaction from twinpeaks in Script runner - add scripts to list and run them.   
    https://github.com/bevesce/ScriptRunner-Alfred-Workflow
     
    I noticed that I repeatedly write some script, wire it with some keyword or hotkey in Alfred and then forget what it was.
     
    So I created quick workflow that allows you to add scripts to list with **add script** file action and then display and run them with **./** keyword. First word of query is used to filter scripts, you can pass command line arguments after space.
     

     
    At the moment workflow supports python, perl, osascritpt and ruby but new languages can be easily added by adding extension and name of interpreter to extension_interpreter dictionary in scriptsrunner.py.   
     
     
     
    I really should stop doing those workflows...
  24. Like
    bevesce got a reaction from twinpeaks in Tagging files with openmeta [ideas?]   
    If somebody is interested I updated my workflow.
     
    It's no longer uses clipboard to store paths to selected files,
    shows selection in Alfred using script filter and better handles multiple files.
     
    Now, for me it's pretty reasonable way to tag items, especially using file selection hotkey (⌘⌥\).
  25. Like
    bevesce got a reaction from untidey in Passing files in buffer to script   
    I would like to make workflow for tagging files with openmeta.
    At the moment I came up with File Action that copies files paths to clipboard and then
    I run tagging script with keyword followed by tags.
    It would be much better if paths in buffer were passed to script in way similar to query - {files}(?).
     
    Then I could put files in buffer, type keyword and tags to run workflow.
     
×
×
  • Create New...