Skip to content

Instantly share code, notes, and snippets.

View igorfarias30's full-sized avatar
🎸
Composing beautiful lines of codes and songs, I hope.

Igor Farias igorfarias30

🎸
Composing beautiful lines of codes and songs, I hope.
View GitHub Profile
@AlbertoMonteiro
AlbertoMonteiro / alberto-theme.psm1
Last active August 14, 2021 10:25
My powershell theme
#requires -Version 2 -Modules posh-git
function Write-Theme {
param(
[bool]
$lastCommandFailed,
[string]
$with
)
@AlbertoMonteiro
AlbertoMonteiro / ObjectSpread.cs
Created February 14, 2018 23:24
Spread object in C#
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
namespace Playground
{
public class Program