View sitemap.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
View arch_prctl.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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> | |