Skip to content

Instantly share code, notes, and snippets.

Avatar
🏋️
Awali dengan basmalah..

Muhammad Ichsanul Fadhil ichsanputr

🏋️
Awali dengan basmalah..
View GitHub Profile
@VladSem
VladSem / sitemap.html
Last active October 28, 2021 01:04
Sitemap for Blogger
View sitemap.html
Step 1. Login to your Blogger Dashboard and select your blog
Step 2. Go to Pages > click the New Page button and select Blank page
Step 3. Click on the HTML tab and paste the following code inside the empty box:
<style>
p.labels a{color: #242424; text-transform: uppercase;font-size: 15px;}
a.post-titles {color: #0000FF;}
ol li{list-style-type:decimal;line-height:25px;}
</style>
@newsoft
newsoft / arch_prctl.c
Last active November 25, 2022 12:50
Playing with arch_prctl()
View arch_prctl.c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <asm/ldt.h>
#include <asm/prctl.h>
#include <sys/prctl.h>