Skip to content

Instantly share code, notes, and snippets.

View mvacha's full-sized avatar
👨‍🍳

Michal Vácha mvacha

👨‍🍳
View GitHub Profile
OURS: need update fun challenge desperately need update pay allie level september 1 still new level soon new level week update use favorite
ORIG: need to be updated be fun & challenging desperately need of update pay for allie level september 1 still no new levels- when soon?? no new level of week no updates use to be favorite
---------------------------------
OURS: good let make but cannot share anything like instagram please fix soon
ORIG: no good will let make but cant share to anything like instagram!! (( please fix this soon
---------------------------------
OURS: album function need improvement current version open up possible folders includ cache file should selectable settings avoid unnecessary browse result low productivity
ORIG: album function need improvement current version open all possible folder which includ cache file which should be selectable from setting to avoid unnecessary browse result low productivity
---------------------------------
OURS: can not edit pdf wanna note something pdf b
d3.select(window).on("resize", resize);
var margin = {top: 20, right: 20, bottom: 30, left: 40};
var viewWidth = window.innerWidth;
var viewHeight = window.innerHeight;
var width = viewWidth - margin.left - margin.right;
var height = viewHeight - margin.top - margin.bottom;
@mvacha
mvacha / CachedTasks.cs
Last active July 18, 2024 15:26
Cached Tasks
// See https://aka.ms/new-console-template for more information
using System.Runtime.CompilerServices;
Console.WriteLine("Program started");
var cache = new Dictionary<string, object>();
//Use lambda, so the task does not start immediately
Func<Task<string>> taskFactory = async () =>
{