- \u{g} – ğ
- \u{G} – Ğ
- \c{c} – ç
- \c{C} – Ç
- \c{s} – ş
- \c{S} – Ş
- \”{u} – ü
- \”{U} – Ü
- \”{o} – ö
- \”{O} – Ö
| # application.yml file of the config server (Spring Cloud Config Server) | |
| server: | |
| port: 9999 # or whatever | |
| spring: | |
| application: | |
| name: config-service | |
| cloud: | |
| config: | |
| server: | |
| git: |
| #!/usr/bin/env python | |
| """ | |
| Print (and write to JSON file) system information in a cross-platform manner. | |
| Output contains information about platform, BIOS, CPU, memory, disk, GPU, network, peripheral devices, installed | |
| packages, motherboard and users. | |
| This script heavily relies on psutil and some other bash/powershell commands. See requirements.txt for dependency list. |
Dump of all commands from "So You Think You Know Git - FOSDEM 2024":
The full blog post: https://blog.gitbutler.com/git-tips-and-tricks/
This guide walks through the full workflow for publishing a Python package to PyPI using GitHub Actions and PyPI's Trusted Publishers (OIDC) feature. No long‑lived API tokens are required—PyPI issues temporary credentials to GitHub at publish time.
- A PyPI account with two-factor authentication enabled.
| JALE | |
| ALİ | |
| MAHMUT | |
| MANSUR KÜRŞAD | |
| GAMZE | |
| MİRAÇ | |
| YÜCEL | |
| KUBİLAY | |
| HAYATİ | |
| BEDRİYE MÜGE |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
This guide walks through the full workflow for setting up your own VPN server using Linode.