Skip to content

Instantly share code, notes, and snippets.

View vrobel's full-sized avatar

Michał Wróblewski vrobel

View GitHub Profile
@cablej
cablej / default.md
Created June 21, 2025 18:46
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@1nF0rmed
1nF0rmed / 100k_main.cu
Created July 1, 2025 16:52
100k x 100k matrix mat mul
// build with: nvcc -O3 -std=c++17 -lcublas -arch=sm_75 100k_main.cu
// note: uses ~3GB VRAM. Took 20 min on 1080
#include <cstdio>
#include <cstdlib>
#include <cublas_v2.h>
#include <cuda_runtime.h>
using ll = long long;
constexpr ll N = 100'000LL;
constexpr int BS = 16384;