Jump to content

meeffe

Member
  • Posts

    25
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by meeffe

  1. extension does not work at this moment

    its connected, installed etc but when I try to open some tab or bookmarks it recognizes them but notinng happen - I mean it do not open bookmarks or tabs. I use ff 84

    @deanishe it has a lof of potential but for some reason it does not work. Can you investigate?

     

    obraz.thumb.png.fd8e98ae94cdaba237f44b2f0b1b7db9.png

  2. 23 hours ago, Vero said:

    @meeffe A quick look online tells me that Nimbus (https://nimbusweb.me/note.php) is an Electron apps. 

     

    Developers sometimes choose Electron because it makes it easy to create one cross-platform app, rather than creating a native Mac app, as well as native ones for their other platforms. However, Electron also usually means that the app lives in its own box, with no integration possible.

     

    You may need to contact them to find out whether any way of searching the app from an external app is possible.

     

    Cheers,
    Vero

     

    I did as you said. Thanks!

  3. What did i do wrong here?

     

    <?php
    
    $args = explode("\n", $argv[1]);
    
    // loop through args
    foreach ($args as $arg) {
    	
    	// create the url
    	$url = 'https://ahrefs.com/v3-keywords-explorer/google/it/overview?keyword=' . rawurlencode(trim($arg)) . ' match';
    
    	// open the url in the default browser
    	shell_exec('open ' . escapeshellarg($url));
    }
    
    ?>

    When I use above code with 2-or more words query e.g. "chicago bulls" I receive the following output - chicago%20bulls match

    image.thumb.png.0a57be7e53a36d83d43fc144adf96697.png

     

    When I use urlencode instead of rawurlencode %20 just transforms into "+" so thats not it

     

    How to modify the code above so that I will get 

    image.thumb.png.8a76616958d7ffca9ab82cfdb2648465.png

  4. @deanishe what about this one?

     

    When we take this piece of code:

    <?php
    
    $args = explode("\n", $argv[1]);
    
    // loop through args
    foreach ($args as $arg) {
    	
    	// create the url
    	$url = 'https://www.google.es/search?q=' . urlencode(trim($arg));
    
    	// open the url in the default browser
    	shell_exec('open ' . escapeshellarg($url));
    }
    
    ?>

     

    I would like this script to automatically add some word/s after 

    // create the url
    $url = 'https://www.google.es/search?q=' . urlencode(trim($arg));

    e.g. when I use this search query - "toronto raptors" I'm getting 

    https://www.google.es/search?q=toronto+raptors

     

    but I would like to get

    https://www.google.es/search?q=toronto+raptors+match

     

    How to add "match" to the query below so it would be a main keyword+match

     

    
    	// create the url
    	$url = 'https://www.google.es/search?q=' . urlencode(trim($arg));

     

    It's a noobie question but I don't know nothing about php sadly.

     

    Thanks,

    Michal

  5. @deanishe or anyone else - could you help me with one more thing? Im sick of trying today

     

    Gogole trends has the ability to compare terms e.g. France and Spain

    https://trends.google.pl/trends/explore?geo=IT&q=France,Spain

     

    How to modify the code below so that every time I want to check "France" or "Italy" or "Kuba" (paste this argument into a window) it will be compared to Spain (in this example)

     

    https://trends.google.pl/trends/explore?geo=IT&q=France,Spain

    https://trends.google.pl/trends/explore?geo=IT&q=Italy,Spain

    https://trends.google.pl/trends/explore?geo=IT&q=Kubae,Spain

     

    code as a reference below

     

    <?php
    
    $args = explode("\n", $argv[1]);
    
    // loop through args
    foreach ($args as $arg) {
        
        // create the url
        $url = 'https://trends.google.pl/trends/explore?date=now%201-d&geo=IT&q=' . urlencode(trim($arg));
    
        // open the url in the default browser
        shell_exec('open ' . escapeshellarg($url));
    }
    
    ?>

     

    Thanks in advance,

    Michael

  6. If any of you would be kind to help me with one small thing

    I tried to use this workflow with another tool called ahrefs.com and it works fine with single words but when I use 2,3 or 4 words in one query I get + in between in search field

     

    e.g. I used

    double decked ship

     

    and received

    double+decked+ship in a search field

     

    Ahrefs uses %20 as a space

    https://ahrefs.com/v3-keywords-explorer/google/us/overview?keyword=double%20decker%20ship

     

    So how to encode spaces as %20 in the following code?

     

    <?php
    
    $args = explode("\n", $argv[1]);
    
    // loop through args
    foreach ($args as $arg) {
    	
    	// create the url
    	$url = 'https://ahrefs.com/v3-keywords-explorer/google/it/overview?keyword=' . urlencode(trim($arg));
    
    	// open the url in the default browser
    	shell_exec('open ' . escapeshellarg($url));
    }
    
    ?>

     

  7. Hello,

     

    Based on Andrew's workflow I modified it to work with Google Trends website and other services. For some reason it does not seem to work as expected with Google Trends.

     

    Could some of you elaborate on what's wrong?

     

    For now when I type Paris, Rome into the alfred search bar it should open the following tabs

    https://trends.google.pl/trends/explore?geo=IT&q=Paris

    https://trends.google.pl/trends/explore?geo=IT&q=Rome

     

    Instead I got

    https://trends.google.pl/trends/explore?geo=IT

    https://trends.google.pl/trends/explore?geo=IT

     

    Workflow - https://www.dropbox.com/s/rnh3dlfazvpl4k7/Google Stock (1).alfredworkflow?dl=0

     

    Additionally is there any way of pasting keywords from a list format instead of comma separated?

     

    keyword1

    keyword2

    keyword 3

     

    instead of keyword 1, keyword 2, keyword 3

     

    Thanks,

    Michael

  8. Hello everyone,

     

    I have a simple workflow which opens a predefined set of windows from different applications.

     

    I use 3 monitors.

     

    How can I make these windows to appear exactly where I want without manually adjusting every time e.g.

     

    1st window - 1/3 of the 1st screen,

    2nd window - 2/3 od 1st screen; 

    3rd window - whole second (middle) screen

    4th window - 1/2 of third screen

    5th window - 1/2 of third screen

     

    Could anyone help with this?

  9. I used another workflow (ceated by ramiro.araujo) and it didn't connect to specific favourite.

     

    Then I messaged Transmit support about that and they said that " Transmit 5 has required the site/favorite architecture to be rewritten so it's likely that the Alfred workflow will need to update their support in order to be compatible with Transmit 5."

     

    I can't check wheeather or not THIS workflow works (I supposed that id doesn't because of that different architecture which transmit 5 has) simply because the dropbox link does not work. Can anyone reuplad this workflow? @iEnno?

×
×
  • Create New...