Skip to content

Instantly share code, notes, and snippets.

View skarllot's full-sized avatar
💭
I may be slow to respond.

Fabrício Godoy skarllot

💭
I may be slow to respond.
View GitHub Profile
@skarllot
skarllot / CreateArchive.ps1
Created April 4, 2025 19:49
Create archive ignoring folders using 7-Zip
& 'C:\Program Files\7-Zip\7z.exe' a dest.zip . -r "-x!.git" "-x!.terraform"
& 'C:\Program Files\7-Zip\7z.exe' a dest.zip MyFolder\ -r -x!bin -x!obj
@skarllot
skarllot / AutoFixtureExtensions.cs
Created April 2, 2025 12:17
Set custom value for init-only properties on AutoFixture
using System.Linq.Expressions;
using AutoFixture;
public static class AutoFixtureExtensions
{
public static FixtureCustomization<T> For<T>(this Fixture fixture) => new(fixture);
public class FixtureCustomization<T>(Fixture fixture)
{
public FixtureCustomization<T> With<TProp>(Expression<Func<T, TProp>> expr, TProp value)
@skarllot
skarllot / config.toml
Created March 1, 2025 23:28
Gitlab runner configuration using Powershell on Windows
concurrent = 5
check_interval = 0
connection_max_age = "15m0s"
shutdown_timeout = 0
[session_server]
session_timeout = 1800
[[runners]]
name = "gitlab-runner01"
@skarllot
skarllot / ServiceCollectionExtensions.cs
Created February 25, 2025 22:20
The equivalent of AsImplementedInterfaces+InstancePerLifetimeScope from AutoFac on Microsoft DependencyInjection
using System.Reflection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
namespace Example;
public static class ServiceCollectionExtensions
{
public static IServiceCollection AddImplementedInterfacesAsScoped(
this IServiceCollection services,
@skarllot
skarllot / ImmutableListSpecimenBuilder.cs
Created January 30, 2025 21:49
AutoFixture support to ImmutableList
using System.Collections.Immutable;
using AutoFixture.Kernel;
public class ImmutableListSpecimenBuilder : ISpecimenBuilder
{
public object Create(object request, ISpecimenContext context)
{
if (context == null)
{
throw new ArgumentNullException(nameof(context));
@skarllot
skarllot / .gitleaks.toml
Created December 27, 2024 12:42
Setup Gitleaks to ignore a non-secret value
[extend]
useDefault = true
[allowlist]
description = "Fake secrets"
regexTarget = "match"
regexes = [
"6a654835c594485b8980ba2c73af6f18"
]
@skarllot
skarllot / subnet.bicep
Created December 19, 2024 15:22
Example condition that does not work on Bicep
resource natGateway 'Microsoft.Network/natGateways@2023-11-01' = if (hasNatGateway) {
name: natGatewayName
location: location
sku: {
name: 'Standard'
}
}
resource subnets 'Microsoft.Network/virtualNetworks/subnets@2022-11-01' = {
name: name
@skarllot
skarllot / script.sh
Last active November 30, 2024 20:48
Install magic-quill on Pop!_OS 22.04
sudo apt install nvidia-cuda-toolkit
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
pip install bitsandbytes
git clone --recursive https://github.com/magic-quill/MagicQuill.git
cd MagicQuill
wget -O models.zip "https://hkustconnect-my.sharepoint.com/:u:/g/personal/zliucz_connect_ust_hk/EWlGF0WfawJIrJ1Hn85_-3gB0MtwImAnYeWXuleVQcukMg?e=Gcjugg&download=1"
unzip models.zip
@skarllot
skarllot / configuration.cs
Created October 24, 2024 21:04
Polly retry configuration for exponential backoff
options.RetryCount, retryAttempt => TimeSpan.FromMilliseconds(options.RetryDelayMilliseconds * Math.Pow(2, retryAttempt-1))
@skarllot
skarllot / packages-versions-releasenotes.ipynb
Last active December 8, 2024 21:07
Remove duplicates from GitHub release notes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.