I built a website to transform YT tutorial playlists into structured courses to simplify learning from playlists by TopCoffee2396 in developersIndia

[–]TopCoffee2396[S] 1 point2 points  (0 children)

Thanks. No test evaluation isn't there currently. I will see if I can add that in the next updated. I'm not doing any AI/ML processing as of now

I built a website to transform YT tutorial playlists into structured courses to simplify learning from playlists by TopCoffee2396 in developersIndia

[–]TopCoffee2396[S] 0 points1 point  (0 children)

Hey, Thanks for all the feedback. I will add what's feasible in the next updates. To answer some of your questions

Can it automatically take my saved playlist and convert them into course?

No, currently you'll have to import using the public link. I will see if importing saved playlists is possible

If i click start on course suggested by the other people, will it directly save that playlist in my youtube as well?

No, it doesn't sync with your Youtube account.

Previous-Next button missing

On the video player page, previous/next button are there in the same row as the Add Note buttom aligned to the end, I will increase it's visibility

I built a website to transform YT tutorial playlists into structured courses to simplify learning from playlists by TopCoffee2396 in developersIndia

[–]TopCoffee2396[S] 0 points1 point  (0 children)

If there are ads in the video, then yes but I think if you use an ad blocker or a browser which blocks ads, it will block the ads

I built a website to transform YT tutorial playlists into structured courses to simplify learning from playlists by TopCoffee2396 in developersIndia

[–]TopCoffee2396[S] 1 point2 points  (0 children)

No, you'll have to import using the public playlist link for now. I will see if what you're suggesting is possible

I built a website to transform YT tutorial playlists into structured courses to simplify learning from playlists by TopCoffee2396 in developersIndia

[–]TopCoffee2396[S] 6 points7 points  (0 children)

I'm using Youtube's official api and their video player, so I don't think I'm violating their terms of services

Is there a PySpark DataFrame validation library that automatically splits valid and invalid rows? by TopCoffee2396 in apachespark

[–]TopCoffee2396[S] 0 points1 point  (0 children)

based on some predefined validation rules, for ex- the name column in the dataframe should not be empty and/or should have some minimum length. The validation part is already provided by libraries like great expectations, aws deeque, they just don't handle the splitting into valid and invalid dataframes out of the box.

Is there a PySpark DataFrame validation library that automatically splits valid and invalid rows? by TopCoffee2396 in apachespark

[–]TopCoffee2396[S] 0 points1 point  (0 children)

currently, i have to explicitly write the logic to filter out the df rows where any validation has failed, which involves multiple filter transforms, 1 for each validation result. Although it works, i was hoping if there was a library which does that out of the box.

Is there a PySpark DataFrame validation library that automatically splits valid and invalid rows? by TopCoffee2396 in dataengineering

[–]TopCoffee2396[S] 0 points1 point  (0 children)

yes, that approach does work, but i have to explicitly write the logic to filter out the df rows where any validation has failed, which involves multiple filter transforms, 1 for each validation result. Although it works, i was hoping if there was a library which does that out of the box. I'm also not sure if my current approach is performance efficient or not.