Skip to content

Instantly share code, notes, and snippets.

@choco-bot
choco-bot / FilesSnapshot.xml
Created May 10, 2024 21:19
clipto-pro v2.4.6 - 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\clipto-pro\clipto-pro.nupkg" checksum="20A8E103393B530FFFFB43EEA2B104C7" />
<file path="C:\ProgramData\chocolatey\lib\clipto-pro\clipto-pro.nuspec" checksum="0AA1C2F5500EA015ABCFF606FD750CF3" />
</files>
</fileSnapshot>
@RandomGuyWithoutY
RandomGuyWithoutY / roulette.c
Created May 10, 2024 21:19
Russian Roulette: System32 Edition (Pro Trial)
/* roulette.c
*
* Copyright (c) 2023 RandomGuyWithoutY
*
*
* Compilation flags:
*
* -DREAL_SYSTEM32
* Enables the real System32 folder as returned by
* the machine as deletion target. If this flag is
@MichaelSnowden
MichaelSnowden / expand.sh
Created May 10, 2024 21:19
Expand Macros for C
gcc -xc -E -P -o /dev/stdout <(sed '/#include/d' main.c)
def main_menu():
while True:
print("Main Menu:")
print("1. Option 1")
print("2. Option 2")
print("3. Exit")
choice = input("Enter your choice: ")
if choice == "1":
@AE-0h
AE-0h / Context.sol
Created May 10, 2024 21:19
Simple ERC20 Token by OpenZeppelin. Find it at https://www.cookbook.dev/contracts/simple-token
/*
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████
Find any smart contract, and build your project faster: https://www.cookbook.dev
Twitter: https://twitter.com/cookbook_dev
data class Movie(val name: String, val releaseYear: Int)
//ANTES DE EMPEZAR:
//Copia este código base completo en un nuevo archivo llamado desafio.js
//-----------------------------------------------------------------------//
//JUGADORES:
// NO MODIFICAR LOS NOMBRES DE ESTOS OBJETOS
// (El test automático les cambia los valores para probar que el resto
// de la lógica funcione bien)
@choco-bot
choco-bot / FilesSnapshot.xml
Created May 10, 2024 21:17
clipto-pro.install v2.4.6.20200318 - 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\clipto-pro.install\clipto-pro.install.nupkg" checksum="7B8A4EC99F13100E377090E3758688B7" />
<file path="C:\ProgramData\chocolatey\lib\clipto-pro.install\clipto-pro.install.nuspec" checksum="5A89195B5048927FDF10E87EECFA28D6" />
</files>
</fileSnapshot>
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created May 10, 2024 21:17
Rimworld output log published using HugsLib
This file has been truncated, but you can view the full file.
Log uploaded on Friday, May 10, 2024, 11:17:05 PM
Loaded mods:
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0)
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Fishery - Modding Library(bs.fishery): 0PrepatcherAPI(1.2.0), 1Fishery(0.6.1), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210)
Core(Ludeon.RimWorld): (no assemblies)
Performance Fish(bs.performance): PerformanceFish(0.6.2)
StartupImpact(automatic.startupimpact): 0Harmony(av:2.3.3,fv:2.2.2), StartupImpact(1.1.8872.38386)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
@Composable
fun Movie(movie: Movie, modifier: Modifier = Modifier) {
Row(
modifier.padding(horizontal = 5.dp, vertical = 10.dp)
) {
Text(
text = movie.name,
modifier = modifier