Alex
Alex
@CodeBrauer The way I see it, there are 2 options to pursue - REST API and Zapier. REST API looks [very promising](https://developers.trello.com/docs/api-introduction#section-create-cards-and-update-information). My gut feeling is telling that REST API...
You can add media objects using `setEnclosure` method on `entry` object. According to [RSS 2.0 specs](https://validator.w3.org/feed/docs/rss2.html): > enclosure | Describes a media object that is attached to the item. >...
Thank you for the link, @froschdesign. W3 was unfortunately ambiguous whether you can use more than 1 but your link clears up that nicely. I have left the code here...
Ah, I see now: > RSS enclosures are already being used to syndicate audio files and images. Media RSS extends enclosures to handle other media types, such as short films...
When using native file explorer in VSCode, the only available option for removing files is permanent one: 
From what I can tell, `Move to Trash` is hard-coded? https://github.com/sleistner/vscode-fileutils/blob/7632f7edb12b28d3cda1b99910e4ba22587f68b1/src/controller/RemoveFileController.ts#L21 And the setting `Files: Enable Trash` (`files.enableTrash`) is actually controlled by VSCode itself? Reference: https://code.visualstudio.com/docs/getstarted/settings
Also, examining the source code, I can see that file removal is actually delegated to VSCode core, right? https://github.com/sleistner/vscode-fileutils/blob/1058e696ac4abf1f6e17b2f34b6c5a2bcd9e79a4/src/FileItem.ts#L64-L69 So, in this case, this extension cannot do much, except for...
Maybe this codepen will help someone - https://codepen.io/alex2407/pen/RwpJBJz Some observations: - it is `src`, **not** `data-src` - it is `data-autoplay`, **not** `autoplay` - `.container` is purely decorative to create large...
> I have just tested and the webm seems to be loading once I open the page I have just tried and in my case, it opens when I scroll...
@willstocks are you suggesting there is a bug or issue with my sample code? To be honest, my code is not meant to be used as a ready-copy-and-paste solution. But...