Discover gists
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
// Copyright (C) 2015, 2016, 2017 Dapphub | |
// This program is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or | |
// (at your option) any later version. | |
// This program is distributed in the hope that it will be useful, | |
// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
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
-- AH POST-SERVER LOGS -- | |
-- ServerID: 91e56f20-3706-4923-ab8c-2ade236a237e | |
-- Server started: February 08, 2025 12:05 AM UTC | Server uptime: 1377 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
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
[WSL2] | |
Processors=2 | |
memory=4GB | |
Swap=0 |
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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\frink\frink.nupkg" checksum="CB164CB07F9EE4385D683DA7E733B705" /> | |
<file path="C:\ProgramData\chocolatey\lib\frink\frink.nuspec" checksum="7B42F7F6E94FF565EC49865465A830B5" /> | |
<file path="C:\ProgramData\chocolatey\lib\frink\tools\chocolateyinstall.ps1" checksum="59B0EBF6EBA9680B2D344B5882870740" /> | |
<file path="C:\ProgramData\chocolatey\lib\frink\tools\chocolateyuninstall.ps1" checksum="A511B2891E84F19F7A48AEC01942A84A" /> | |
<file path="C:\ProgramData\chocolatey\lib\frink\tools\frink.ico" checksum="87FA7C606E64705E6DD249477D1A5F74" /> | |
<file path="C:\ProgramData\chocolatey\lib\frink\tools\frink.jar" checksum="4C5E7B070ED152933CFC03BC7D16B1C2" /> | |
</files> |
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
// 🚫 Avoid This - Tests should not contain any logic | |
[Theory] | |
[InlineData(6, 2, 3)] | |
[InlineData(1, 0, 0)] | |
public void Divide_ShouldDivideTwoNumbers_WhenTwoNumbersAreIntegers_AndThrowExceptionWhenDividingByZero(int a, int b, int expected) | |
{ | |
if (b == 0) // ❌ Conditional logic | |
{ | |
Assert.Throws<DivideByZeroException>(_calculator.Divide(a, b)); |
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
ARG BASE_IMAGE_TAG=latest | |
FROM registry.example.com/root/my-app/base:${BASE_IMAGE_TAG} AS builder | |
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. | |
RUN apk update | |
RUN apk add --no-cache libc6-compat | |
# Set working directory | |
WORKDIR /app |
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
bool UFF_OCCTBPLibrary::FF_OCCT_STP_to_GLB(FString Path_Step, FString Path_Export) | |
{ | |
FPaths::NormalizeFilename(Path_Step); | |
FPaths::NormalizeFilename(Path_Export); | |
if (!FPaths::FileExists(Path_Step)) | |
{ | |
UE_LOG(LogTemp, Warning, TEXT("STEP file does not exist: %s"), *Path_Step); | |
return false; | |
} |
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
<?xml version="1.0" encoding="utf-8"?> | |
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<user>S-1-5-21-534374257-315500514-3039820050-1000</user> | |
<keys> | |
<key installerType="InnoSetup" displayName="Driver Booster 12" displayVersion="12.2.0"> | |
<RegistryView>Registry32</RegistryView> | |
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Driver Booster_is1</KeyPath> | |
<DefaultValue /> | |
<InstallLocation><![CDATA[C:\Program Files (x86)\IObit\Driver Booster\]]></InstallLocation> | |
<UninstallString><![CDATA["C:\Program Files (x86)\IObit\Driver Booster\12.2.0\unins000.exe" /SILENT]]></UninstallString> |
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
-- AH POST-SERVER LOGS -- | |
-- ServerID: 43f3b295-5154-4f16-a6a9-d306819fd0f4 | |
-- Server started: February 08, 2025 12:19 AM UTC | Server uptime: 183 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |