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
Log uploaded on Saturday, February 8, 2025, 3:40:20 AM | |
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) | |
Better Log - Fix your errors(bs.betterlog): 0PrepatcherAPI(1.2.0), 1Fishery(av:0.6.1,fv:0.5.1.2), BetterLog(1.1.0), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210) | |
Performance Fish(bs.performance): PerformanceFish(0.6.2) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) |
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
// 219309 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define MAX_TYPES 10 | |
#define MAX_JAR_SIZE 600 | |
typedef struct { |
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
Red [ | |
Title: "Speed comparison with context keeping" | |
Description: { | |
This test compares the same function with and without the | |
initialization phase | |
The purpose of this the is to test context reusing: | |
A function has ofen an check and init phase. In stict loops | |
many of these checks and inits could be bypassed after the first | |
one if part of the function context could be passed again | |
at each run. |
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
Log uploaded on Saturday, February 8, 2025, 8:40:17 AM | |
Loaded mods: | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
简单实用(SiMeng.EzGame): (no assemblies) | |
Won hair_women (won2.hair): (no assemblies) | |
Won hair_men(won.hair): (no assemblies) |
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: 6575b749-d567-476e-9c86-0a53ea920f6d | |
-- Server started: February 08, 2025 12:39 AM UTC | Server uptime: 3 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
-- AH POST-SERVER LOGS -- | |
-- ServerID: b9317f0c-41e4-40e3-8852-0f80a0065fd5 | |
-- Server started: February 08, 2025 12:39 AM UTC | Server uptime: 12 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
-- AH POST-SERVER LOGS -- | |
-- ServerID: 7786a502-7f11-4e0e-b16e-0757f219204f | |
-- Server started: February 08, 2025 12:39 AM UTC | Server uptime: 8 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
<?xml version="1.0" encoding="utf-8"?> | |
<html> | |
<!--Created by Arma 3 Launcher: https://arma3.com--> | |
<head> | |
<meta name="arma:Type" content="list" /> | |
<meta name="generator" content="Arma 3 Launcher - https://arma3.com" /> | |
<title>Arma 3</title> | |
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css" /> | |
<style> | |
body { |
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
import queue | |
class MyQueue(queue.Queue): | |
def front(self): # Queue の先頭の値を返す。 | |
return self.queue[0] | |
Q = int(input()) | |
que = MyQueue() |
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
#!/bin/bash | |
# In retrospect I'd have preferred a python script, but hey this works. | |
# | |
# https://claude.ai/chat/baf4d2fd-ddbe-4852-9361-91c0a091f40c | |
# | |
# https://claude.site/artifacts/9b588d36-cf7e-4bf9-aed1-187adc0b8ef7 | |
# | |
# > How can I automatically delete my local git branches if the | |
# > associated github PR has been merged (the remote branch is on the |