press Control and semicolon
Tips and tutorials on Wi-Fi(802.11), Windows, Linux, PHP, MySQL, Codeigniter, Android
Search This Blog
-
Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...
-
For converting Error Vector Magnitude (EVM) from db to %(percentage), we can use the below formula EVM in % = 100 * (10^(EVM in dB/20)) ...
-
For excluding files and directories while using diff, we can pass the exclude pattern in the command line. Say for you u want to exclud...
29 January, 2015
11 June, 2014
reverting the applied patch
for reverting the patch we applied using the patch command
patch -p1 < diff.patch
use
patch -R -p1 < diff.patch
patch -p1 < diff.patch
use
patch -R -p1 < diff.patch
05 June, 2014
26 May, 2014
vim showing all opened files using sp/vsp
showing all opened files in vim
in vimrc file paste the below line
map <F4> :ls<CR>:buffer<space>
after opening the files in vim, type F4 and you can see the files and jump by pressing the corresponding the number
21 May, 2014
Android Hidden phone informations
1) *#*#4636#*#*
give you details about phone details like below
2) To get IMEI : *#06# works with types of mobiles
give you details about phone details like below
- Phone Information
- Battery INformation
- Usage Statistics
- Wi-Fi Information
2) To get IMEI : *#06# works with types of mobiles
11 May, 2014
printing hex values in linux kernel module
for printing the hex values in the kernel modules/kernel space we can use the print_hex_dump function
the format is as follows
print_hex_dump("KERN_ERROR", "Message: ", DUMP_PREFIX_OFFSET,
16, 2, data_buffer, length_of_buffer, 1);
the format is as follows
print_hex_dump("KERN_ERROR", "Message: ", DUMP_PREFIX_OFFSET,
16, 2, data_buffer, length_of_buffer, 1);
24 April, 2014
vim converting tabs to spaces
For converting tabs to spaces while editing the source codes
1) To insert space characters whenever the tab key is pressed.
2) To control the number of space characters that will be inserted when the tab key is pressed, set the 'tabstop' option.
To insert 4 spaces for a tab, you have to type the below command
1) To insert space characters whenever the tab key is pressed.
:set expandtab
2) To control the number of space characters that will be inserted when the tab key is pressed, set the 'tabstop' option.
To insert 4 spaces for a tab, you have to type the below command
:set tabstop=4
Subscribe to:
Posts (Atom)
tmux enabling mouse interaction
Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...