Skip to content

Instantly share code, notes, and snippets.

View batuhanozkose's full-sized avatar
🤠
If you can dream it, you can do it.

Batuhan Özköse batuhanozkose

🤠
If you can dream it, you can do it.
View GitHub Profile
@batuhanozkose
batuhanozkose / wp-adv-admin-handbook.md
Created May 10, 2025 20:14 — forked from kasparsd/readme.md
WordPress handbooks as a single markdown file for LLMs (source https://developer.wordpress.org)

Advanced Administration Handbook

Source: https://developer.wordpress.org/advanced-administration/

Welcome to the WordPress Advanced Administration Handbook! Here you will find WordPress advanced documentation. Use the “Contents” menu on the left to navigate topics.

Why Advanced Administration?

Not all users who use WordPress have to know about technology, and therefore in its documentation should not appear either, and developers do not have to know certain advanced system configurations.

@batuhanozkose
batuhanozkose / rarreg.key
Created May 7, 2023 08:58 — forked from MuhammadSaim/rarreg.key
Step 1: Create a file called rarreg.key Step 2: Paste into the file the raw content of this gist Step 3: Go to Winrar install directory (by default => c:\ProgramFiles\WinRAR\ ) Step 4: Paste the rarreg.key into WinRAR directory Step 5: Enjoy
RAR registration data
WinRAR
Unlimited Company License
UID=4b914fb772c8376bf571
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9
@batuhanozkose
batuhanozkose / main.c
Created January 23, 2022 15:28
C ile switch case örneği.
#include <stdio.h>
int main() {
char operator;
printf("Lutfen operator giriniz: \n");
scanf("%c", &operator);
float sayi1, sayi2;
printf("Lutfen iki sayi giriniz: \n");
scanf("%f %f", &sayi1, &sayi2);
@batuhanozkose
batuhanozkose / main.c
Created January 20, 2022 19:19
C'de Basit olarak; While , DoWhile , For , ForEach kullanımı.
#include <stdio.h>
int main() {
//While kullanımı
int sayi = 0;
@batuhanozkose
batuhanozkose / main.c
Created January 20, 2022 18:57
C çok basit if else yapısı kullanımı.
#include <stdio.h>
int main() {
int a = 3;
int b = 3;
if (a > b) {
printf("a is greater than b\n");
} else if(a < b) {
@batuhanozkose
batuhanozkose / main.c
Created January 11, 2022 15:56
Çok basic bir şekilde C dilinde karşılaştırma operatörleri.
#include <stdio.h>
#include <locale.h>
int main() {
setlocale(LC_ALL, "Turkish");
//Karşılaştırma operatörü
int a = 10;
int b = 20;
int c = 30;
@batuhanozkose
batuhanozkose / main.c
Created January 9, 2022 11:56
C'de değişken türleri ne kadar yer kaplıyor?
#include <stdio.h>
#include <locale.h>
int main() {
setlocale(LC_ALL, "Turkish");
int tamsayi;
char karakter;
float ondalik;
double ondalik2;
@batuhanozkose
batuhanozkose / main.c
Created January 8, 2022 11:44
C ile çok basit karakter toplama işlemi.
#include <stdio.h>
int main() {
int a;
int b;
printf("Enter a character: \n");
scanf("%d", &a);
printf("Enter another character: \n");