Skip to content

Instantly share code, notes, and snippets.

@NicolasCARPi
NicolasCARPi / LICENSE
Last active September 1, 2026 04:38
VibeCoded AI-Slop License v1.0
VibeCoded AI-Slop License v1.0
Copyright (c) [YEAR] [AUTHOR]
This software, source code, documentation, configuration, generated artifacts,
and whatever else happened to end up in this repository (collectively, the
"Software") is released under the VibeCoded AI-Slop License v1.0.
1. Permission
@Anarabdulaev
Anarabdulaev / windows-keys.md
Created September 1, 2026 03:39
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@CayvenHighcroft
CayvenHighcroft / ai-quiz.md
Created August 31, 2026 21:53
Best AI Quiz Generator for Students & Teachers in 2026 – Detailed & Unique Guide

Best AI Quiz Generator for Students in 2026 – Detailed & Unique Guide

Students today deal with more study material than ever — lecture slides, dense PDFs, handwritten notes, YouTube recordings, and online resources. The biggest challenge is not finding information. It is turning that information into effective practice questions that actually prepare you for exams.

Manually writing quizzes is slow and often incomplete. AI quiz generators solve this by converting your own materials into high-quality practice tests within minutes. The right tool can save hours every week and improve retention through active recall.

In this detailed 2026 guide, we rank the best AI quiz generators for students using a fresh set of competitors. Evaluation is based on:

  • Accuracy and source grounding of questions
  • Supported input types (PDF, images, audio, video, notes)
@fourlexboehm
fourlexboehm / gist:a60e4ef9306744483731cd176bd02e9f
Last active September 1, 2026 04:33
Minimal CLI Agent in C
// This is an entire CLI agent, it can do everything Claude code can do, using raw mode to support pasting, backspace,
// escape to cancel agents turn, and multiline prompts with Shift + enter,
// but with 2MB of RAM, neglibible CPU usage and one small C file.
// It is a single C file for the openai responses api, with no dependency other than libcurl, and an
// OPENAI_API_KEY env var.
// compile with `cc -lcurl -o cgent this_file.c` then install where you please.
// AI USAGE - This code was written without AI agents, largely to maintain my c skills, as such it is likely to have
// memory safety bugs.
#include <ctype.h>