chaostreff-alzey.de/treffen/2020-11-01/index.html

169 lines
4.9 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Chaostreff Alzey 01.11.2020</title>
<head>
<link rel="stylesheet" href="/assets/css/default.css">
</head>
<body>
<header>
<h1>Chaostreff Alzey 01.11.2020</h1>
</header>
<p>$\frac{\mu}{\sqrt{\Phi^x}}$</p>
<ul>
<li>Music PI (Spotify und AirPlay)
<ul>
<li><a href="https://www.pimusicbox.com/">PI MusicBox</a></li>
<li><a href="https://www.hifiberry.com/shop/boards/hifiberry-dacplus-phone/">HiFiBerry DAC+ standard</a></li>
</ul>
</li>
<li><a href="https://micro-editor.github.io/">Micro Editor: damit du vergisst, dass du auf der Kommandozeile bist</a></li>
<li><a href="https://webamp.org/">Winamp: jetzt auch auf deiner Website</a></li>
<li><a href="https://onlywei.github.io/explain-git-with-d3/">Git Befehle, graphisch erklärt</a></li>
<li><a href="https://fishshell.com/">Fish: die beste Shell der Welt</a></li>
<li><a href="https://sampleson.com/collab3-free-tonewheel-organ.html">kostenloses Hammond Orgel VST</a></li>
<li><a href="https://explainshell.com/">Shell-Befehle übersichtlich aufschlüsseln</a></li>
<li><a href="https://jaycarlson.net/embedded-linux/">SbC selbst bauen</a></li>
<li><a href="https://github.com/c3d2/ds2020-workadventure-deployment">Datenspuren Workadventure Repo</a></li>
<li><a href="http://www.catb.org/jargon/html/K/kludge.html">Kludge im Jargon file</a></li>
<li><a href="https://www.amazon.de/-/en/Cushion-Afternoon-Creative-Keyboard-Desktop/dp/B076357FVH">Beste Tastatur</a></li>
<li><a href="https://hackaday.com/2020/10/30/color-e-ink-display-photo-frame-pranks-mom/">Paperwhite Bilderrahmen</a></li>
<li><a href="https://hackaday.com/2020/10/29/a-look-behind-the-big-boards-at-mission-control-in-the-golden-age-of-nasa/">Anderer Hackaday Artikel</a></li>
<li><a href="https://en.wikipedia.org/wiki/%E2%88%82">Anderes Delta</a></li>
</ul>
<h2 id="daniels-vimrc">Daniels .vimrc:</h2>
<pre><code class="language-vim=">set nocompatible " be iMproved, required
filetype off " required
set number
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
Plugin 'l04m33/vlime', {'rtp': 'vim/'}
Plugin 'supercollider/scvim'
Plugin 'rust-lang/rust.vim'
Plugin 'vim-syntastic/syntastic'
Plugin 'luochen1990/rainbow'
Plugin 'ycm-core/YouCompleteMe'
Plugin 'preservim/nerdtree'
Plugin 'vim-airline/vim-airline'
Plugin 'tpope/vim-fugitive'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
" YCM-stuff
let g:ycm_language_server =
\ [
\ {
\ 'name': 'rust',
\ 'cmdline': ['rust-analyzer'],
\ 'filetypes': ['rust'],
\ 'project_root_files': ['Cargo.toml']
\ }
\ ]
" some variables
let g:sclangTerm = "st"
let g:rainbow_active = 1
set foldmethod=syntax
set foldnestmax=1
set tabstop=3
set softtabstop=0 noexpandtab
set shiftwidth=3
set splitbelow
" activates syntax highlighting among other things
syntax on
color industry
" highlight text over 80 characters long
highlight OverLength ctermbg=DarkGray ctermfg=Red guibg=#592929
match OverLength /\%81v.\+/
" allows you to deal with multiple unsaved
" buffers simultaneously without resorting
" to misusing tabs
set hidden
" Make tabs work
augroup expandtabFTW
autocmd!
autocmd FileType * setlocal tabstop=3 shiftwidth=3 softtabstop=0 noexpandtab
augroup END
" Open NerdTree
autocmd vimenter * NERDTree
" just hit backspace without this one and
" see for yourself
set backspace=indent,eol,start
</code></pre>
<h2 id="jans-vimrc">Jans .vimrc:</h2>
<pre><code class="language-vim=">set number
set nowrap
set showbreak=+++
set textwidth=100
set showmatch
set visualbell
set hlsearch
set smartcase
set ignorecase
set incsearch
set autoindent
set expandtab
set shiftwidth=4
set smartindent
set smarttab
set softtabstop=4
set ruler
set undolevels=1000
set backspace=indent,eol,start
set term=xterm-256color
filetype plugin indent on
syntax on
</code></pre>
</body>