Map | Action |
---|---|
<F1> | Causes Netrw to issue help |
<cr> | Netrw will enter the directory or read the file |
<del> | Netrw will attempt to remove the file/directory |
- | Makes Netrw go up one directory |
a | Toggles between normal display, hiding (suppress display of files matching g:netrw_list_hide) showing (display only files which match g:netrw_list_hide) |
c | Make browsing directory the current directory |
C | Setting the editing window |
d | Make a directory |
#!/usr/bin/env python | |
# export data sheets from xlsx to csv | |
from openpyxl import load_workbook | |
import csv | |
from os import sys | |
def get_all_sheets(excel_file): | |
sheets = [] |
As configured in my dotfiles.
start new:
tmux
start new with session name:
###Setting up Pi Zero OTG - The quick way (No USB keyboard, mouse, HDMI monitor needed)
More details - http://blog.gbaman.info/?p=791
For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).
1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt
file dtoverlay=dwc2
on a new line, then save the file.
3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh
in the SD card as well. By default SSH is
Disable vim automatic visual mode on mouse select | |
issue: :set mouse-=a | |
add to ~/.vimrc: set mouse-=a |
http://m.stitcher.com/podcast/nhpr/word-of-mouth/episode/35309882?eid=35309882&refid=eml |
%Developers : Jinbo Li -- [email protected] | |
% Technical university of Denmark | |
%Date : 30-11-2005 | |
%Version : 1,0 | |
close all | |
clear all | |
%set varible | |
% Transmit QMF Variable Declarations | |
tqmf=zeros(1,24); | |
%Receive QMF Variable Declarations |
function [y,ny] = conv_m(x,nx,h,nh) | |
% Modified convolution routine for signal processing | |
% -------------------------------------------------- | |
% [y,ny] = conv_m(x,nx,h,nh) | |
% y = convolution result |