Skip to content

Instantly share code, notes, and snippets.

Model AGIEval GPT4All TruthfulQA Bigbench
Dare_Angel_8B Error: File does not exist Error: File does not exist Error: File does not exist Error: File does not exist

AGIEval

Average: Error: File does not exist%

GPT4All

@magick93
magick93 / topolvm-debug-lvmdEmbedded-true.txt
Created May 21, 2025 02:52
[blockprint] TopoLVM v15.5.5 Debug Output (lvmdEmbedded=true) v15.0.0
[OK] kubectl is available
=== Kubernetes Pod Status ===
Checking pods in namespace: topolvm-system
[ERROR] Failed to get pod data from Kubernetes
Note: For detailed debugging, use 'kubectl describe pod <name> -n topolvm-system'
@rjolaverria
rjolaverria / coding-interview-tutor-prompt.txt
Created May 21, 2025 02:51
Coding Interview tutor prompt
You are a coding interview tutor. When I present you with a problem statement, do not give me the answer. Instead, guide me through the problem-solving process by:
1. **Restating the problem** in your own words to check understanding.
2. **Asking clarifying questions** about inputs, outputs, constraints, and edge cases.
3. **Walking through a few simple examples** (including edge cases) and asking me to predict what should happen.
4. **Prompting me to brainstorm possible approaches**, discussing the pros/cons of each (e.g., brute force vs. optimized, different data structures).
5. **Helping me analyze time and space complexity** for each approach.
6. **Encouraging me to outline a high-level plan or pseudocode**, step by step.
7. **At each step**, ask me questions like “What would you do next?” or “How would you handle this case?” rather than telling me directly.
8. **Only offer incremental hints if I ask for them**. Whenever you provide a hint, make it genuinely useful and **explain why** that
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created May 21, 2025 02:51
Rimworld output log published using HugsLib
Log uploaded on Tuesday, May 20, 2025, 10:51:15 PM
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)
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies)
Vanilla Backgrounds Expanded(vanillaexpanded.backgrounds): VBE(1.0.0)
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.5]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.5)
# Fib seq
def fibs(num)
fib_seq = [0,1,1]
num -= 3
while num > 0
fib_seq.push(fib_seq[-1] + fib_seq[-2])
num -= 1
end
print fib_seq
end
@mysoyul
mysoyul / StudentTable.jsx
Created May 21, 2025 02:49
Vite 기반 ReactJS Student Client 예제
const StudentTable = ({ students, onDetail, onEdit, onDelete }) => {
// 텍스트 잘라내기 + 툴팁 데이터 설정
const renderCell = (content) => {
if (!content || content === "-") return "-";
return (
<div className="truncate" title={content}>
{content}
</div>
);
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created May 21, 2025 02:48
Rimworld output log published using HugsLib
This file has been truncated, but you can view the full file.
Log uploaded on Tuesday, May 20, 2025, 7:48:36 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Better Log - Fix your errors(bs.betterlog): 0PrepatcherAPI(1.2.0), 1Fishery(0.5.1.2), BetterLog(1.1.0), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Better Gene Graphics Framework(telardo.BetterGeneGraphicsFramework): BetterGeneGraphicsFramework(1.0.0)
@MilcoCova
MilcoCova / main.py
Created May 21, 2025 02:48
Programa en Micropython para Raspberry Pi Pico - Parpadeo de LED (Blink)
from machine import Pin
import time
led = Pin(25, Pin.OUT)
while True:
led.toggle()
time.sleep(0.5)

Level Up: Wiring Firebase Auth → DRF in Next.js

File: .env.sample

Call out: At the top of .env.sample, remove the old Firebase-specific vars and add the unified URL var.

Delete these lines:

NEXT_PUBLIC_FIREBASE_DATABASE_URL=""
@mysoyul
mysoyul / StudentSearch.jsx
Created May 21, 2025 02:48
Vite 기반 ReactJS Student Client 예제
import { useState } from 'react';
const StudentSearch = ({ onSearch, onShowAll }) => {
// 검색 폼 상태
const [searchForm, setSearchForm] = useState({
name: '',
studentNumber: '',
address: ''
});