Skip to content

Instantly share code, notes, and snippets.

View bahadirbklg's full-sized avatar
🏠

Bahadır bahadirbklg

🏠
  • istanbul
View GitHub Profile
@bahadirbklg
bahadirbklg / linux_ad_auth_via_centrify.md
Last active April 8, 2025 12:14 — forked from jmenbo/linux_ad_auth_via_centrify.md
AD Authentication for Linux Systems using Centrify

AD Authentication for Linux Systems via Centrify

Background

From time to time it is useful to be able to have Linux systems authenticate off a Windows AD domain controller

Centrify is a third party product that makes this process easy to setup

Centrify provides two versions of their products, the commercial and the free version

For our purposes, the free version provides all the functionality we need

@bahadirbklg
bahadirbklg / parser.c
Last active July 28, 2023 13:32
compiler design homework - parser
#include <stdio.h>
#include <ctype.h>
char currentToken;
void getToken() {
currentToken = getchar();
}
int P();