Skip to content

Instantly share code, notes, and snippets.

View u-m-i's full-sized avatar

Aloof u-m-i

View GitHub Profile
@u-m-i
u-m-i / Binarytree.cs
Created February 17, 2024 23:32
Binary tree (Struct)
// First gist
@dhlavaty
dhlavaty / downloadCSV.cs
Last active June 10, 2023 14:08
Download CSV file from Google Spreadsheet (Google Drive) using minimum c# code
using System;
using System.Net;
namespace ConsoleApplication1
{
class Program
{
public class WebClientEx : WebClient
{
public WebClientEx(CookieContainer container)