Skip to content

Instantly share code, notes, and snippets.

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

Aloof u-m-i

View GitHub Profile
@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)
@tatsuyasusukida
tatsuyasusukida / !README-javascript-media-video.md
Last active June 24, 2024 14:25
🎥 How to record a video with JavaScript [demo video available]

🎥 How to record a video with JavaScript [demo video available]

Demo video: How to record a video with JavaScript

About this article

This article describes how to shoot a video from JavaScript using the MediaStream Recording API. The related resources are shown below.

@u-m-i
u-m-i / Binarytree.cs
Created February 17, 2024 23:32
Binary tree (Struct)
// First gist