This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
& '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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
concurrent = 5 | |
check_interval = 0 | |
connection_max_age = "15m0s" | |
shutdown_timeout = 0 | |
[session_server] | |
session_timeout = 1800 | |
[[runners]] | |
name = "gitlab-runner01" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[extend] | |
useDefault = true | |
[allowlist] | |
description = "Fake secrets" | |
regexTarget = "match" | |
regexes = [ | |
"6a654835c594485b8980ba2c73af6f18" | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options.RetryCount, retryAttempt => TimeSpan.FromMilliseconds(options.RetryDelayMilliseconds * Math.Pow(2, retryAttempt-1)) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder