Actions:
- Trigger: New Video in Playlsit in YouTube
- Action: Run javascript (below)
- Action: Find Track in Spotify (using artist and track from previous step)
- Action: Add Track to Playlist in Spotify (id passed from previous step )
I hereby claim:
To claim this, I am signing this object:
console.clear() | |
var product_rows = document.querySelectorAll('.sidebar .product-table .product') | |
var products_main = [] | |
var products_accs = [] | |
var product_main_strings = ["Regex Title"] | |
var product_accs_strings = ["Regex Title2", "Regex Title3"] | |
var matchProducts = function(i) { if ( this.product.name.match(i) ) this.array.push(this.product) } |
console.clear() | |
var product_rows = document.querySelectorAll('.sidebar .product-table .product') | |
var products_main = [] | |
var products_accs = [] | |
var product_main_strings = ["Regex Title"] | |
var product_accs_strings = ["Regex Title2", "Regex Title3"] | |
var matchProducts = function(i) { if ( this.product.name.match(i) ) this.array.push(this.product) } |
" --------------------------------------------------------------------------------------------------- | |
" Search and Replace Functionality | |
" https://github.com/MarioRicalde/vim-qargs/tree/master/plugin | |
" :vimgrep /match/ ** | |
" :Qdo %s//replace/g | |
command! -nargs=0 -bar Qargs execute 'args ' . s:QuickfixFilenames() | |
command! -nargs=1 -complete=command -bang Qdo call s:Qdo(<q-bang>, <q-args>) | |
command! -nargs=1 -complete=command -bang Grep call s:Grep(<q-bang>, <q-args>) |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Example</title> | |
</head> | |
<body> | |
<div id="site-wrapper"> |
# $OpenBSD: sshd_config,v 1.89 2013/02/06 00:20:42 dtucker Exp $ | |
# This is the sshd server system-wide configuration file. See | |
# sshd_config(5) for more information. | |
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin | |
# The strategy used for options in the default sshd_config shipped with | |
# OpenSSH is to specify options with their default value where | |
# possible, but leave them commented. Uncommented options override the |
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |