- Introduction
- Copy and paste with VIM across instances, SSH-borders, different clipboards
- Use registers for copying and pasting WITHIN one vim instance
- Use the X clipboard to copy and paste IN AND OUT OF vim!
- Connect with ssh -X to remote machines to share the X clipoard
- Now if you have vim running under GNU screen on a remote machine (with ssh -X), you have a problem!
- Pasting into the search field with ctrl+r followed by the register
- [Copy followed by multiple paste operations: The 0 register always cont
This file contains hidden or 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
# Anton Kratz | |
# date: Sat Jul 21 17:03:22 PDT 2018 | |
suppressPackageStartupMessages(library("igraph")) | |
suppressPackageStartupMessages(library("ggplot2")) | |
# Load the PG Yeast Net file - two large components and many small ones | |
rf <- read.table("~/git/assets/INT.PG.YeastNet.v3.2463gene.54496link.txt", sep="\t") | |
akg <- graph_from_data_frame(rf, directed = FALSE, vertices = NULL) | |
# List of degrees |
This file contains hidden or 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
#!/usr/bin/Rscript | |
# author: Anton Kratz | |
# created: Fri Jul 20 11:00:06 PDT 2018 | |
# given a graph in edge list with score field, i.e.: | |
# FROM_NODE TO_NODE SCORE | |
# determine the # of components in this graph | |
suppressPackageStartupMessages(library(igraph)) |
This file contains hidden or 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
how to install Gnumeric 1.12.35 under Xubuntu 16.04.2 LTS | |
wget http://ftp.gnome.org/pub/GNOME/sources/gnumeric/1.12/gnumeric-1.12.35.tar.xz | |
tar xvf gnumeric-1.12.35.tar.xz | |
cd gnumeric-1.12.35/ | |
./configure | |
make | |
sudo make install | |
sudo ldconfig | |
how to install Gnumeric 1.12.34 under Xubuntu 16.04.2 LTS |
NewerOlder