Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
static void Main() | |
{ | |
var config = new JobHostConfiguration(); | |
// Log Console.Out to SQL using custom TraceWriter | |
// Note: Need to update default Microsoft.Azure.WebJobs package for config.Tracing.Tracers to be exposed/available | |
config.Tracing.Tracers.Add(new SqlTraceWriter( | |
TraceLevel.Info, | |
"{{SqlConnectionString}}", | |
"{{LogTableName}}")); |
using System; | |
using System.Reflection; | |
using System.Collections.Generic; | |
using System.Linq.Expressions; | |
public static class ExpressionUtilities | |
{ | |
public static object GetValue(Expression expression) | |
{ | |
return getValue(expression, true); |
using System; | |
using System.Linq; | |
namespace Extensions | |
{ | |
/// <summary> | |
/// Allow the up to the first eight elements of an array to take part in C# 7's destructuring syntax. | |
/// </summary> | |
/// <example> | |
/// (int first, _, int middle, _, int[] rest) = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Security.Cryptography; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; |
using System; | |
using Microsoft.Extensions.Options; | |
using Microsoft.AspNetCore.HttpOverrides; | |
using Lib.AspNetCore.CloudFlareConnectingIp; | |
namespace Microsoft.AspNetCore.Builder | |
{ | |
public static class CloudFlareConnectingIpExtensions | |
{ | |
public static IApplicationBuilder UseCloudFlareConnectingIp(this IApplicationBuilder app) |
feat: new feature
fix(scope): bug in scope
feat!: breaking change
/ feat(scope)!: rework API
chore(deps): update dependencies
build
: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)ci
: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)chore
: Changes which doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries#################################################################################################### | |
# dotNetDave's (David McCarter) Editor Config - dotNetTips.com | |
# Updates to this file are posted quarterly at: https://bit.ly/EditorConfig5 | |
# Updated March 1, 2025 | |
# NEW code performance book is available at: https://bit.ly/DotNetCodePerf4 | |
# NEW coding standards book is available at: https://bit.ly/CodingStandards8 | |
# Rockin' the Code World with dotNetDave: https://bit.ly/RockinCodeWorldShows | |
#################################################################################################### | |
root = true |
$GuardianName = 'UntrustedGuardian' | |
$CertificatePassword = Read-Host -Prompt 'Please enter a password to secure the certificate files' -AsSecureString | |
$guardian = Get-HgsGuardian -Name $GuardianName | |
if (-not $guardian) | |
{ | |
throw "Guardian '$GuardianName' could not be found on the local system." | |
} |