Skip to content

Instantly share code, notes, and snippets.

View v0lkan's full-sized avatar
🎸
totally rocking it 🚀.

Volkan Özçelik v0lkan

🎸
totally rocking it 🚀.
View GitHub Profile
@v0lkan
v0lkan / SKILL.md
Created March 4, 2026 10:37
Recruiter Responder
name description
_recruiter-responder
Draft recruiter replies that are crisp, polite, and door-open (or not). Saves a ready-to-edit draft into an outbox folder.

Generate a high-quality reply to a recruiter email, aligned to the user's intent and constraints, then write the draft to an outbox folder so the user can edit and send.

This skill is optimized for repeatability: consistent tone, minimal

> make start
./hack/bare-metal/startup/start.sh
DNS resolution for spire.spike.ist:
spire.spike.ist. 579395 IN A 127.0.0.1
Domain check passed. Continuing with the script...
Data cleared successfully
Building SPIKE binaries...
!!! The symbols have been stripped from binaries for security.
!!! Use 'readelf --symbols #binary_name#' to verify.
@v0lkan
v0lkan / Vadideki-Geyik.txt
Created January 24, 2025 07:56
Vadideki-Geyik.txt
/)/)/) /).-')
////((.'_.--' .(\(\(\ n/(/.')_ .
((((_/ .' .-`))))))) `-._ ('.' \`(\
(_._ ` ( `. (/ | \ ( `-.\
`-. \ `-. / `.`. \ \
`.`. | / /) \ \ | L
`.`._. ||_ (() `.\ ) F
(`._ `. < .'.-' \`-._____ || .' /
`(\`._.._(\(\)_.'.'-------------.___ `-.(`._ `-./ / _.' .'
@v0lkan
v0lkan / keybase.md
Last active December 8, 2024 07:04
keybase proof

Keybase proof

I hereby claim:

  • I am v0lkan on github.
  • I am v0lk4n (https://keybase.io/v0lk4n) on keybase.
  • I have a public key ASBcTEvSicIb6HbeItS2FiepUGtONh36RSDtysYu8GqcLgo

To claim this, I am signing this object:

@v0lkan
v0lkan / kubedump.sh
Created October 24, 2022 01:38
Dump everything in your Kubernetes cluster into folders a YAML files
#!/usr/bin/env bash
# Dumps everything in your Kubernetes cluster into folders a YAML files.
# Use it at your own risk.
set -e
CONTEXT=“$1”
if [[ -z ${CONTEXT} ]]; then
@v0lkan
v0lkan / nginx-ssl.md
Created October 1, 2022 01:48
Add Self-Signed Certificate to Enable SSL on NGINX
@v0lkan
v0lkan / replace.md
Created September 25, 2022 17:41
Use `replace` in `go.mod` for local development.

If you don’t want to push your dependencies and tag them all the time and just want to use whatever the local version of code you have to speed up local development and also not break anyone’s code by merging unstable stuff to main, then you can use replace in your go.mod.

The replace line goes above your require statements, as follows:

module github.com/zerotohero-dev/sample-go-app
@v0lkan
v0lkan / LS_COLORS.md
Last active October 17, 2022 13:40
How do I change that ugly dark blue color in my linux terminal?

Those colors are defined in LS_COLORS.

In the terminal

echo $LS_COLORS

Save it to a text file, and edit to your heart’s desire.

@v0lkan
v0lkan / install-go.sh
Created September 11, 2022 22:49
Install Go on Linux
# ref: https://go.dev/learn/
curl https://go.dev/dl/go1.19.1.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.1.linux-amd64.tar.gz