Skip to content

Instantly share code, notes, and snippets.

View tuyendq's full-sized avatar
🎯
Practice until you can't make it wrong

DANG QUOC TUYEN tuyendq

🎯
Practice until you can't make it wrong
View GitHub Profile
@umidjons
umidjons / youtube-dl-download-audio-only-on-best-quality.md
Last active November 14, 2024 21:20
Download Audio from YouTube with youtube-dl

Download Audio from YouTube

-i - ignore errors

-c - continue

-t - use video title as file name

--extract-audio - extract audio track

@bradygaster
bradygaster / AddRating.cs
Last active November 15, 2024 19:56
Contoso Crafts
public void AddRating(string productId, int rating)
{
var products = GetProducts();
var query = products.First(x => x.Id == productId);
if(query.Ratings == null)
{
query.Ratings = new int[] { rating };
}
else