Skip to content

Instantly share code, notes, and snippets.

View yohanesokta's full-sized avatar
😆
Counter Strike 2

Yohanes Oktanio yohanesokta

😆
Counter Strike 2
View GitHub Profile
@yohanesokta
yohanesokta / dict.c
Last active April 20, 2026 05:38
C Dict
#include <stdio.h>
#include <string.h>
#define MAX 100
typedef struct {
char key[50];
char value[50];
} DictItem;
DictItem dict[MAX];
int size = 0;
@yohanesokta
yohanesokta / Dockerfile
Last active March 17, 2026 09:12
Development Server [ Franken php ]
FROM dunglas/frankenphp
RUN install-php-extensions mysqli pdo_mysql