https://raid.wiki.kernel.org/index.php/RAID_setup#RAID_setup
Author Archives: jeffrin
Startup code compliant to the ELF i386 ABI
https://github.com/lattera/glibc/blob/master/sysdeps/i386/start.S
Layout of the sysdeps Directory Hierarchy
http://www.gnu.org/software/libc/manual/html_node/Hierarchy-Conventions.html
What is the difference between an operator and a function ?
https://www.quora.com/What-is-the-difference-between-an-operator-and-a-function
PHPlot is a graph library for dynamic scientific charts and graphs
https://github.com/AJRepo/PHPlot
Working with Databases in WordPress
https://www.sitepoint.com/working-with-databases-in-wordpress/
Unable to lock the administration directory (/var/lib/dpkg/)
https://askubuntu.com/questions/15433/unable-to-lock-the-administration-directory-var-lib-dpkg-is-another-process
An Introduction to LVM Concepts, Terminology, and Operations
https://www.digitalocean.com/community/tutorials/an-introduction-to-lvm-concepts-terminology-and-operations
notes on and related to umask
umask – set file mode creation mask #include <sys/types.h> #include <sys/stat.h> mode_t umask(mode_t mask); Binary Number ————–> Decimal Number Abstraction Decide the required result to decide the needed mask. Binary Number ——————-> Resultant Binary ANDing with mask
Bit level Operations in C
Bit-Level Operations in C Technical Overview One of the reasons why C has become so popular is that it allows the programmer to do many types of machine-level applications without resorting to using machine language as the vehicle for programming. One example of that is C’s ability to work with memory addresses. Another example, or …