Jump to content

benjamin74

Member
  • Posts

    20
  • Joined

  • Last visited

Posts posted by benjamin74

  1. 2 hours ago, deanishe said:

     

    Why do you think it's "basic functionality"?

     

     

    The same can be done with the command-line clients for 1Password/Bitwarden/LastPass etc.

     

    Because with any kind of data storage (and storing snippets belongs to that category), having the capacity to securely store that data is basic functionality or at least should have been in the specs.

  2. 26 minutes ago, deanishe said:

    FWIW, you can do this with Snippet Triggers and Keychain.

     

    That's how I've jury-rigged "password manager" support for apps that don't support Keychain or 1Password.


    Password protecting snippet is, imo, a VERY reasonable feature to have natively in alfredapp without every single user having to hack python code for such a basic functionality 😉

    Plus I hate (and never use) Keychain but that's another subject.

  3. Hello,

     

    I end up using Snippets A LOT, and sometimes the snippet description needs to be a little bit precise (more like a phrase, not just 3-4 words).

    The problem is Alfredapp is cutting snippets description :
     

    2019-08-26_1009.thumb.png.bdbef6e010b41fbf5c95099e4ec9655b.png


    I would really need to either make the whole alfredapp window take more than, let me guess, the around 40% width of the desktop width it currently takes, which would end up giving the description field more space.

     

    2019-08-26_1017.thumb.png.5ab71c8658c9a186dfe593e286a0c26d.png

     

    Or, inside the Alfred window, have the ability to choose the % of space taken by the left side (where the snippet description is displayed) and the % of space taken by the right side (where the snippet content is displayed).


    2019-08-26_1015.thumb.png.4cdf1cdc829cba2b676119c7ef2cd53e.png


    Hope this will get fixed one way or the other, it's one of those things that make me scream everytime I encounter a long snippet description despite me loving AlfredApp!

    So please make it even better 😉

    Cheers,

     

  4. Hello,

     

    I end up storing some data inside Alfred Snippets that would really needs password protection (e.g. API keys that I very often use, etc...)

    It would be really nice if we had:

    - one place to store some kind of "masterpassword" inside the App preferences for example

    - a checkbox when editing snippets "master password protected" yes/no
    - of course these snippets would be encrypted inside my Alfredapp configuration files (that are backed up to dropbox)

    Cheers,

  5. Hello guys,

     

    First don't get my title literally... I couldn't find any way to explain it in just a few words. Here is precisely what I want to achieve, hope that helps guiding me in the right direction :

     

    - I keep forgetting "snippets" of code, mostly related to coding/VPS administration and such... e.g. I forget how to display the free space on my VPS, how to restart nginx, etc...
    - So far I've created a couple snippets in Alfredapp but it's far from perfect...

    Would it be possible to have something like that:

    - I would first invoque a keyword, fox example "lx" for linux, and then type some stuff that would be analysed as a "fuzzy search". Typically it's a little bit like the way "filter" work but for my code snippets.

    Any idea on how to implement this ? Do I really need to create 1 Alfred snippet and keyword for each snippet or is there a way to "consolidate" this ?

     

    Thanks a lot guys,

  6. Ohh and I also didn't find how to call the imported Python libraries.

     

    e.g. I'm trying to add tld library: https://pypi.python.org/pypi/tld#downloads

     

    Once downloaded I get all these files here :

     

    Screen-Shot-2016-06-15-10-58-25-DWsfGGto

     

    Now :

     

    1) What files/folder should I move to my workflow (and where is my workflow folder in which I must paste these files/folder)

    2) What do I need to do to be able to use basic commands using the Python Library I've added, e.g.:

     
    from tld import get_tld
    from tld.utils import update_tld_names
    update_tld_names()
    
    print get_tld("{query}")
    

    Thanks !!

  7. Hello guys,

     

    Running v3.

     

    Question : My workflow needs a Python library that isn't shipped with OSX... as I'm using my workflows on multiple machines I'd rather NOT have to install various python packages everywhere.

     

    Now I couldn't find any information on where to add python libraries that are to be used for a custom workflow...

     

    Any information on this ?

     

    Thanks,

     

    Cheers,

  8. So it's sent to the next action without actually having to connect the "script" box with the "open URL" Box ??

     

    I still can't get this to work.

     

    http://screencast.com/t/pCXg1dsDy

     

    I'm using this as script:

     

    from urlparse import urlsplit, urlunsplit

    url = "{query}"
    parsed = urlsplit(url)

    # Hostname
    print(parsed.hostname)

     

    in an attempt to the OpenURL with the hostname instead of the long URL but it doesn't seem to work.

     

    Another tip ? :)

     

    Thanks !

  9. Thanks, but somehow I still can't connect the dots...

     

    I would have expectected to be able to "pass" the manipulated string to the next block "Open URL", but that doesn't seems possible :

     

    http://screencast.com/t/uKPwhljiwkxP

     

    It's so basic it's driving me crazy not to have this in the standard doc (well if it is, I haven't found it, AlfredApps example workflows are lame lame lame... and don't help in anyway).

     

    Any idea ?

     

    Thanks,

     

    Cheers,

  10. Hello,

     

    I love the "Web Search" functions but I'm really missing a simple way to "manipulate" the {query} string parameter...

     

    e.g.: lots of my "Web Search" are based on a URL, so my {query} parameter is something like this "http://www.alfredforum.com/index.php"...

     

    but my "Web search" (i.e. the service I'm using) only needs :

     

    - the URL without http://www. in front of it

    OR

    - the root domain

    - ...etc

     

    Unfortunately there is no way to do basic string manipulation with the "Web Search" functionality... so I have to manually delete the "http://www."everytime which is time consuming and defeats the purpose of Alfred...

     

    Could you add such a function ??

     

    Thanks,

     

    Cheers,

  11. Hello guys,

     

    After reading a few interesting posts on clever file naming tricks for fast spotlight searches :

     

    http://www.macworld.com/article/1167126/how_i_name_files_on_my_mac.html

     

    http://getmethod.com/blog/2012/6/30/the-best-way-to-name-your-files.html

     

    I was wondering whether someone already investigated the creation of such "clever" file naming wordflows ? I searched in Packal but didn't find what I want.

     

    Just as a start : anyone as an idea on how to copy a timestamp (e.g. %Y-%m-%d) in the clipboard with Alfred ?

     

    Thanks,

     

    Cheers,

     

     

  12. Hi Andrew,

     

    Here is the output :

     

    /Users/BenjaminMini/Documents/Virtual Machines.localized/WinXP2014.vmwarevm

    Internal File Metadata
    ======================

     Display Name: WinXP2014.vmwarevm
        Alt Names:
        File Type: com.vmware.vm-package
         Comments:
         Keywords:
        Last Used: 2015-03-29 14:18:27 +0000

    Raw mdls File Metadata
    ======================

    kMDItemFSContentChangeDate = 2015-03-29 14:18:27 +0000
    kMDItemFSCreationDate      = 2012-10-31 21:52:55 +0000
    kMDItemFSCreatorCode       = ""
    kMDItemFSFinderFlags       = 0
    kMDItemFSHasCustomIcon     = 0
    kMDItemFSInvisible         = 0
    kMDItemFSIsExtensionHidden = 0
    kMDItemFSIsStationery      = 0
    kMDItemFSLabel             = 0
    kMDItemFSName              = "WinXP2014.vmwarevm"
    kMDItemFSNodeCount         = 37
    kMDItemFSOwnerGroupID      = 20
    kMDItemFSOwnerUserID       = 501
    kMDItemFSSize              = 37
    kMDItemFSTypeCode          = ""

     

    And as you can see it is still displayed when using Alfred when accessing the "Monitor" (activity monitor) :

     

    http://screencast.com/t/E1wyKfSDXo1

     

    Cheers,

  13. Hello guys,

     

    I recently upgraded to Yosemite and for some reason I didn't have this issue with Moutain Lion. Anyway here is the issue.

     

    I have excluded from SpotLight (using the Confidentiality tab) my VMWare Virtual Machines, but when I use alfred to search/launch "monitor" (to launch the activity monitor)... I still get lots of entries of programs hosted inside the Virtual Machines...

     

    http://screencast.com/t/fLwFpwoKf2Ed

     

    Any idea why is Alfred still showing this ? Isn't Alfred using Spotlight ?

     

    Cheers,

×
×
  • Create New...