Skip to content

Instantly share code, notes, and snippets.

View igorpopovio's full-sized avatar
☺️
Working

Igor Popov igorpopovio

☺️
Working
View GitHub Profile
@igorpopovio
igorpopovio / community-standup-explained.cs
Created January 13, 2023 10:28 — forked from jaredpar/community-standup-explained.cs
This is the code I demonstrated at the .NET Community Standup on 2023/1/12 with comments to explain how it works.
using System;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
#nullable disable
// The stand up link https://www.youtube.com/watch?v=jaPk6Nt33KM
// String vs. string
@igorpopovio
igorpopovio / 1 – myers (default) algorithm.diff
Created December 1, 2015 17:11 — forked from roryokane/1 – myers (default) algorithm.diff
Comparison between Git diff algorithms: myers (default) vs. patience (example favors patience)
diff --git a/file.c b/file.c
index 6faa5a3..e3af329 100644
--- a/file.c
+++ b/file.c
@@ -1,26 +1,25 @@
#include <stdio.h>
-// Frobs foo heartily
-int frobnitz(int foo)
+int fib(int n)
import org.gradle.api.NamedDomainObjectContainer
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.DefaultTask
import org.gradle.api.tasks.TaskAction
import liquibase.integration.commandline.Main
apply plugin: LiquibasePlugin
buildscript {