Skip to content

Instantly share code, notes, and snippets.

View akashks1998's full-sized avatar
😛
Chill mar

Akash kumar singh akashks1998

😛
Chill mar
View GitHub Profile
@alexdlaird
alexdlaird / daemon.cpp
Last active August 17, 2024 21:27
Useful as a starting point for a C++ based Linux daemon application.
#include <dirent.h>
#include <iterator>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <iostream>
#include <stdlib.h>
#include <string>
#include <sys/stat.h>
#include <syslog.h>