Skip to content

Instantly share code, notes, and snippets.

@JoshClose
JoshClose / Example.cs
Created May 17, 2019 18:00
CsvHelper writing dictionary values
void Main()
{
var records = new List<Dictionary<string, string>>
{
new Dictionary<string, string> { { "Id", "1" }, { "Name", "one" } },
new Dictionary<string, string> { { "Id", "2" }, { "Name", "two" } }
};
using (var writer = new StringWriter())
using (var csv = new CsvWriter(writer))
{
@Thinkscape
Thinkscape / gist:8b98b82a74c102b31f5d
Created August 10, 2015 16:46
List of soundcloud.com music genres 08.2015
Alternative Rock
Ambient
Audiobooks
Business
Classical
Comedy
Country
Dance & EDM
Dancehall
Deep House
@FullStackForger
FullStackForger / .gitignore
Last active June 25, 2025 19:00
.gitignore for Unity3d project
###
# Unity folders and files
###
[Aa]ssets/AssetStoreTools*
[Bb]uild/
[Ll]ibrary/
[Ll]ocal[Cc]ache/
[Oo]bj/
[Tt]emp/
[Uu]nityGenerated/