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 March 9, 2024 07:54
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 April 8, 2024 23:35
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