Git: Merge Repositories/replay commits on other repo

Scenario: You have edited some code from a tarball-snapshot, creating a fresh git repository in the source tree alongthe way. Now you want to merge your edits into the original repository, but you do not have the original history in the fresh repo. You also want to selectively squash or reorder some commits.

A word of warning beforehand: Be very careful if those repositories have different roots (e.g. one has just a subdirectory of the other repo).

The repo created from the tarball will be called tmprepo in what follows. Making a bac...

MikTeX mpm: Cannot connect to server

If MikTeX' package manager tells you it cannot connect to the server withiout giving a clear reason, check twice you got the proxy settings right ..

mpm-conn-set.png

mpm-proxy-set.png

Bitwise operations in R

Bitwise logical operations in R can be realised on hexadecimal or octal inputs:

a <- as.hexmode(c("FE","eb"))
b <- as.hexmode(c(0x37,0x42))


# logical and
`&.hexmode`(a,b)
a & b

# logical or
`|.hexmode`(a,b)
a | b

# exclusive or
xor.hexmode(a,b)

The bitOps package works by interpreting the inputs as unsigned 32-bit integers.

require(bitops)
bitAnd(a, b)
bitOr (a, b)
bitXor(a, b)

Compacting and exporting an Ubuntu-Appliance from VirtualBox

So you set up your {Ku,Lu,U}buntu-VM inside VirtualBox and want to export it as an appliance as small as possible. Do this. (Tested with Lubuntu 14.04)

  1. install zerofree: sudo apt-get install zerofree

  2. remove unneeded packages (optional) sudo apt-get autoremove

  3. empty cache of downloaded packages

    sudo apt-get autoclean
    sudo apt-get clean
    
  4. to zero out the free space, we need runlevel 1, but telinit 1 is useless due to a bug around since at least Ubuntu 11.04, so...
    0. make a snapshot
    0. reboo...

Notepad++ and useful plugins

Pandoc/Markdown Export

install the NppExec-Plugin, then select Extensions -> NppExport -> Execute... (or hit F6). You can select or edit scripts here, e.g. PDF-Export through pdflatex

cd "$(CURRENT_DIRECTORY)"
pandoc "$(FILE_NAME)" -o "$(NAME_PART).pdf" -V geometry:margin=1in --latex-engine=pdflatex

or export to .docx

cd "$(CURRENT_DIRECTORY)"
pandoc "$(FILE_NAME)" -o "$(NAME_PART).docx"

see this GIST: https://gist.github.com/jrgcmu/3ccc11c0412f45f9a6a4

PreviewHTML
: v1.2 available through the Plugin-Manager is outda...

DB - Deutsche Bahn: Meldungen, Störungen, Infos

Meldungen

Fernverkehr

Übersicht Fernverkehr

Regionen/Nahverkehr

Übersicht Bundesländer

Übersicht Bayern

Aktuelle Betriebslage Bayern (inklusive S-Bahnen)

Sonstiges

Abfahrtstafeln

Die Deutsche Bahn AG setzt an ihren Betriebstellen für selbstverladendes Stückgut (kurz: P...

tar, zip, gzip, bzip

Can't remember those switches for tar etc.?

Unzipping

tar

plain: tar -xvf archive_name.tar.gz
bz2: tar -jxvf archive_name.tar.bz2 -C /tmp/extract_here/
xz: tar -Jxvf archive_name.tar.xz
gz: tar -zxvf archive_name.tar.gz

zip

unzip archive_name.zip

Zipping

tar

plain tar -cvf archive_name.tar directory_to_compress
bz2: tar -jcvf archive_name.tar.bz2 directory_to_compress
xz: tar -Jcvf archive_name.tar.xz directory_to_compress
gz: `tar -zcvf archive_name.tar.gz directory_t...