149 lines
4.2 KiB
Markdown
149 lines
4.2 KiB
Markdown
|
---
|
||
|
tags: chaostreff
|
||
|
---
|
||
|
|
||
|
# Chaostreff Alzey 01.11.2020
|
||
|
|
||
|
$\frac{\mu}{\sqrt{\Phi^x}}$
|
||
|
|
||
|
- Music PI (Spotify und AirPlay)
|
||
|
- [PI MusicBox](https://www.pimusicbox.com/)
|
||
|
- [HiFiBerry DAC+ standard](https://www.hifiberry.com/shop/boards/hifiberry-dacplus-phone/)
|
||
|
- [Micro Editor: damit du vergisst, dass du auf der Kommandozeile bist](https://micro-editor.github.io/)
|
||
|
- [Winamp: jetzt auch auf deiner Website](https://webamp.org/)
|
||
|
- [Git Befehle, graphisch erklärt](https://onlywei.github.io/explain-git-with-d3/)
|
||
|
- [Fish: die beste Shell der Welt](https://fishshell.com/)
|
||
|
- [kostenloses Hammond Orgel VST](https://sampleson.com/collab3-free-tonewheel-organ.html)
|
||
|
- [Shell-Befehle übersichtlich aufschlüsseln](https://explainshell.com/)
|
||
|
- [SbC selbst bauen](https://jaycarlson.net/embedded-linux/)
|
||
|
- [Datenspuren Workadventure Repo](https://github.com/c3d2/ds2020-workadventure-deployment)
|
||
|
- [Kludge im Jargon file](http://www.catb.org/jargon/html/K/kludge.html)
|
||
|
- [Beste Tastatur](https://www.amazon.de/-/en/Cushion-Afternoon-Creative-Keyboard-Desktop/dp/B076357FVH)
|
||
|
- [Paperwhite Bilderrahmen](https://hackaday.com/2020/10/30/color-e-ink-display-photo-frame-pranks-mom/)
|
||
|
- [Anderer Hackaday Artikel](https://hackaday.com/2020/10/29/a-look-behind-the-big-boards-at-mission-control-in-the-golden-age-of-nasa/)
|
||
|
- [Anderes Delta](https://en.wikipedia.org/wiki/%E2%88%82)
|
||
|
|
||
|
## Daniels .vimrc:
|
||
|
|
||
|
```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
|
||
|
```
|
||
|
|
||
|
## Jans .vimrc:
|
||
|
|
||
|
```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
|
||
|
```
|