use other git modules within your repo by reference
git-scm.com/book documentation
SE Radio 692: Sourabh Satish on Prompt Injection
22 hours ago
js / python / linux / .NET C# F# / MS-SQL / postgresql / maths / data / logic / thought / SmartCard / EMV / django / HTML
#region Dump Output Dates to File
string filePath = "c:/dev/projected_dates.csv";
string actualDatesCSV = string.Join(",",
actualDates
.OrderBy(x => x)
.Select(x => x.ToShortDateString())
);
using (var sw = new System.IO.StreamWriter(filePath))
{
sw.Write(actualDatesCSV.Replace(",", "\n"));
}
#endregion