DynamoDB videos list

AWS decided to start a series of videos on DynamoDB usage.
First 5 episodes were published on Youtube, and I made a playlist for them:
https://www.youtube.com/playlist?list=PLfgkuLYEOvGN95-dbdS_mT4bktQjkw2aT

After that, they decided to publish it on Twitch. So here are all the videos so far (including some of those published on Youtube):
Build with DynamoDB | Intro to Amazon DynamoDB Science & Technology
Build On DynamoDB | Intro to NoSQL Data Modeling with Amazon DynamoDBScience & Technology
Build with DynamoDB | NoSQL Data Modeling with Amazon DynamoDBScience & Technology
Build with DynamoDB | Advanced NoSQL Data Modeling with Amazon DynamoDBScience & Technology
Build with DynamoDB | A Data Modeling Use Case Deep DiveScience & Technology
Build with DynamoDB | Implementing an Inventory and Orders Management Data ModelScience & Technology
Build with DynamoDB | Migrating to Amazon DynamoDB from CassandraScience & Technology
Build with DynamoDB — Ep 9 — Transactions in Amazon DynamoDBScience & Technology
Build with DynamoDB: DynamoDB Use Cases in Different IndustriesScience & Technology
Build with DynamoDB | Implementing an Inventory and Orders Management Data Model (Part 1)Science & Technology
Build with DynamoDB | Implementing an Inventory and Orders Management Data Model (Part 2)Science & Technology
Build with DynamoDB | When Should I use Amazon DynamoDB or Amazon DocumentDBScience & Technology
Build with DynamoDB | NoSQL Workbench for Amazon DynamoDBScience & Technology
Build with DynamoDB | S1 E11 | NoSQL Workbench for Amazon DynamoDB
Build with DynamoDB | Estimating the cost of using Amazon DynamoDBScience & Technology

One Response so far.

  1. bullgare:
    How to reimplement this list.
    1. Go to https://www.twitch.tv/search?term=build%20with%20dynamodb&type=videos
    2. Activate plugin jQuerify
    3. Write this in console:

    var lnks = {};
    
    $(".search-results .tw-pd-x-1").each(function() {
    	let link = $(this).find("a.tw-link--button");
    	let title = link.text();
    	if (title.indexOf("DynamoDB") == -1) {
    		return;
        }
    
    	let url = link.prop("href");
    	let dt = $(this).find("[data-test-selector='search-result-video__publish-date']").text();
    	lnks[title] = {title: title, url: url, dt: dt};
    });
    var links = [];
    for (var l in lnks) {
    	links.push(lnks[l]);
    }
    links = links.sort(function (a, b) {
    	let aid = +a.url.replace("https://www.twitch.tv/aws/video/", "");
    	let bid = +b.url.replace("https://www.twitch.tv/aws/video/", "");
    	return -aid+bid;
    });
    links;
    

    4. Pray

LEAVE A COMMENT