.vimrc The configuration I currently use. Reference * autocmd…
read more…
This tool is designed to quickly jump to a specific directory in the Linux shell. you can find the source code and the manual at <https://github.com/execonic/linux-jcd>. Commits…
read more…
<= CodeBricklayer You can get the source code from <https://github.com/execonic/CodeBricklayer>. Usage * Describe a blueprint that tells the codeBricklayer how to code. * Select the content o…
read more…
File Structure A capture file begins with a File Header, followed by zero or more Packet Records, one per packet. All fields in the File Header and in Packet Records will always be saved according…
read more…
ARMv8 designs a synchronization model to provide non-blocking synchronization. This model includes the following key elements: * Load-Exclusive / Store-Exclusive instruction pair and Clear-Exclu…
read more…
* These instructions are used to implement the following mechanisms for power saving (Put a PE into low-power state that is IMPLEMENTATION DEFINED). * Wait for event (WFE/WFET, SEV/SEVL) * T…
read more…
Booklist <https://linuxcommand.org/index.php> The Linux Command Line By William Shotts Attachment: This book is a broad overview of living on the Linux command line. Unlike some books that co…
read more…
Steps * Run git log --oneline to list the commit (push-cmt) to be pushed and the SHA (rmt-head-sha) of the HEAD (rmt-head) of the remote repository. * Run git rebase -i rmt-head-sha to re-order…
read more…
Change prompt change prompt temporarily * Run export PS1='Combination of '. e.g. Change Prompt Permanently * Open the ~/.bashrc with editor. * Search and change the PS1 variable to 'Comb…
read more…
Steps * Find the ID (denoted by pre-cmt-id) of the previous commit of the commit that you need to modify. * Run git rebase -i pre-cmt-id. * Modify pick to edit in the line where the commit to…
read more…