Skip to content

Instantly share code, notes, and snippets.

@choco-bot
choco-bot / Install.txt
Created February 7, 2025 02:32
commander v2022.0420.175353 - Passed - Package Tests Results
2025-02-07 02:30:41,392 5172 [DEBUG] - XmlConfiguration is now operational
2025-02-07 02:30:41,530 5172 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-02-07 02:30:41,549 5172 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco'
2025-02-07 02:30:41,549 5172 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-02-07 02:30:41,549 5172 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco'
2025-02-07 02:30:41,560 5172 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco'
2025-02-07 02:30:41,624 5172 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco'
2025-02-07 02:30:41,624 5172 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-02-07 02:30:41,642 5172 [DEBUG] - Adding new typ
@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created February 7, 2025 02:32
Text file created by Roblox
-- AH POST-SERVER LOGS --
-- ServerID: 99122e17-f504-4df1-b7ce-b70afceb3c19
-- Server started: February 07, 2025 02:32 AM UTC | Server uptime: 12 seconds
------------------ LOADB LOGS ------------------
{
}
# Homework: Classes
# Read carefully until the end before you start solving the exercises.
# Practice the Basics
# Basic Class
# - Create an empty class HouseForSale
# - Create two instances.
# - Add number_of_rooms and price as instance attributes.
@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created February 7, 2025 02:31
Text file created by Roblox
-- AH POST-SERVER LOGS --
-- ServerID: 3020cbcb-e3e5-488a-9548-84d2b2fd1d1d
-- Server started: February 07, 2025 02:31 AM UTC | Server uptime: 5 seconds
------------------ LOADB LOGS ------------------
{
}
@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created February 7, 2025 02:30
Text file created by Roblox
-- AH POST-SERVER LOGS --
-- ServerID: d3a46860-feaa-49ce-8251-06cc685f7204
-- Server started: February 07, 2025 02:30 AM UTC | Server uptime: 9 seconds
------------------ LOADB LOGS ------------------
{
}
@choco-bot
choco-bot / FilesSnapshot.xml
Created February 7, 2025 02:30
sc3plugins v3.11.1 - Passed - Package Tests Results
<?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\sc3plugins\sc3-plugins-3.11.1-Windows-64bit-VS.zip.txt" checksum="6BDFEE3BD64E2419F50AC7A1A912E7DA" />
<file path="C:\ProgramData\chocolatey\lib\sc3plugins\sc3plugins.nupkg" checksum="39BD93985D02755D34FA2E09AC42FC33" />
<file path="C:\ProgramData\chocolatey\lib\sc3plugins\sc3plugins.nuspec" checksum="A97469E65A00352095DE3C13EF4B71B1" />
<file path="C:\ProgramData\chocolatey\lib\sc3plugins\tools\chocolateyinstall.ps1" checksum="22285A024088E1FC899FD058E5775F44" />
<file path="C:\ProgramData\chocolatey\lib\sc3plugins\tools\chocolateyuninstall.ps1" checksum="938A61D438414838526D70D06C24F425" />
</files>
</fileSnapshot>
@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created February 7, 2025 02:29
Text file created by Roblox
-- AH POST-SERVER LOGS --
-- ServerID: 42f536cf-467c-45fc-87f0-56062597c0a6
-- Server started: February 07, 2025 02:29 AM UTC | Server uptime: 3 seconds
------------------ LOADB LOGS ------------------
{
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./PhygitalAssetsStruct.sol";
contract PhygitalAssets is ERC1155, Ownable {
@rwv
rwv / remove.js
Last active February 7, 2025 02:28
Remove old GitHub Actions artifacts
// Script to delete old GitHub Actions artifacts from the 'user/repo' repository
const githubToken = 'github_pat_xxxxxxx'; // Replace with your GitHub token
const headers = {
'Accept': 'application/vnd.github.v3+json',
'Authorization': `Bearer ${githubToken}`,
'User-Agent': 'ArtifactsCleaner/1.0'
};