Skip to content

Instantly share code, notes, and snippets.

View roz3x's full-sized avatar
πŸ‘¨β€πŸŽ“
πŸ«΅πŸ‘Œ

shivang upadhyay roz3x

πŸ‘¨β€πŸŽ“
πŸ«΅πŸ‘Œ
  • IBM
  • banglore
  • 14:27 (UTC -12:00)
  • X @oroz3x
View GitHub Profile
@roz3x
roz3x / gist:5088b370b1288e13fc6b61a75f21da4c
Last active May 12, 2024 17:34
zig compile on Mac M1
#!/bin/sh
# make sure you have homebrew already installed
brew installed llvm
git clone https://github.com/ziglang/zig.git
cd zig
mkdir -p build
cd build
# for fast build
@roz3x
roz3x / cpp.json
Created June 29, 2025 16:17
codeforces c++ plain snippet
{
// go to Ctrl-p > configure snnippets > c++
// then copy paste this file
// use keyword `omg` to trigger
"plain ahh cp snippet": {
"prefix": ["omg"],
"body": ["#include <bits/stdc++.h>\nusing namespace std;\n\nvoid solve() {\n\t$0\n}\n\nint32_t main(){\n\tint t;cin>>t;while(t--) solve();\n}\n"],
"description": "chads only template"
}
}