Skip to content

Instantly share code, notes, and snippets.

View sajjadcodes's full-sized avatar
🌴
Living somewhere in the palm trees jungle

Sajjad Hussain sajjadcodes

🌴
Living somewhere in the palm trees jungle
View GitHub Profile
@sajjadcodes
sajjadcodes / kli-plugin-isolation.php
Created October 11, 2020 01:24 — forked from klihelp/kli-plugin-isolation.php
WordPress Plugin Isolation helper
<?php
/**
* WordPress Plugin Isolation helper
* This helps your plugin/theme to have isolated webpages, keeping only your organized prefixed hooks.
* @package Hashtagg
* @subpackage Base
* @author Klipolis
* @copyright 2014 Klipolis
* @since 0.1.0
* @version 0.1.0
@sajjadcodes
sajjadcodes / r-debug.php
Created October 11, 2020 01:24 — forked from Rarst/r-debug.php
R Debug (set of dump helpers for debug)
<?php
/*
Plugin Name: R Debug
Description: Set of dump helpers for debug.
Author: Andrey "Rarst" Savchenko
Author URI: https://www.rarst.net/
License: MIT
*/
@sajjadcodes
sajjadcodes / shmCreateAndWrite.c
Created December 27, 2019 11:28 — forked from mtak/shmCreateAndWrite.c
Shared memory in Linux using C
#include <stdio.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/stat.h>
int main ()
{
int segment_id;
char bogus;