Skip to content

Instantly share code, notes, and snippets.

View cranehuang's full-sized avatar

Glenna Koepp cranehuang

View GitHub Profile
@cranehuang
cranehuang / mkl.dockerfile
Created July 3, 2023 06:30 — forked from mgoldey/mkl.dockerfile
install basic mkl libraries in debian docker image
# install mkl
RUN apt update && apt install -y --force-yes apt-transport-https && \
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB && \
apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB && \
sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list' && \
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install cpio intel-mkl-64bit-2018.3-051 && \
(find /opt/intel -name "ia32*" -exec rm -rf {} \; || echo "removing ia32 binaries") ; \
(find /opt/intel -name "examples" -type d -exec rm -rf {} \; || echo "removing examples") ; \
(find /opt/intel -name "benchmarks" -exec rm -rf {} \; || echo "removing benchmarks") ; \
(find /opt/intel -name "documentation*" -exec rm -rf {} \; || echo "removing documentation") ; \
" Settings
set nohud
" set nosmoothscroll
" set noautofocus "The opposite of autofocus; this setting stops sites from focusing on an input box when they load
set typelinkhints
set cncpcompletion
let searchlimit = 30
let scrollstep = 70
let barposition = "bottom"
@cranehuang
cranehuang / .cvimrc
Created May 28, 2016 10:34 — forked from marcusramberg/.cvimrc
My cvimrc
set autoupdategist
set noautofocus
set nocncpcompletion
set smoothscroll
set hud
set noregex
set noinsertmappings
set typelinkhints
set defaultnewtabpage
let scrollduration = 10