/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
This file contains 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
export DISPLAY=:0 | |
bash -c zsh | |
case $- in | |
# Install Ruby Gems to ~/gems | |
export GEM_HOME=$HOME/gems | |
export PATH=$HOME/gems/bin:$PATH | |
# Install Ruby Gems to ~/gems | |
export GEM_HOME="$HOME/gems" | |
export PATH="$HOME/gems/bin:$PATH" |
This file contains 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
export PATH="/usr/local/opt/llvm/bin:$PATH" | |
export LDFLAGS="-L/usr/local/opt/llvm/lib" | |
export CPPFLAGS="-I/usr/local/opt/llvm/include" | |
export PATH="/usr/local/opt/ruby/bin:$PATH" | |
export LDFLAGS="-L/usr/local/opt/ruby/lib" | |
export CPPFLAGS="-I/usr/local/opt/ruby/include" | |
source $HOME/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
source $HOME/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh |
- NICE v2 in Go
- Tun/Tap with Water
- x86 Emulator
- Athena
- alexandria
- Continue Sane
This file contains 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
using System; | |
using System.Globalization; | |
using System.IO; | |
using CsvHelper; | |
using CsvHelper.Configuration; | |
(string csv, string filename) GenerateUmsatzTabelle(TextReader inputCsv) | |
{ | |
var csvReader = new CsvReader(inputCsv, new CsvConfiguration(CultureInfo.InvariantCulture) { Delimiter = ";" }); | |
csvReader.Read(); |
This file contains 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
include ./theme.conf | |
font_family Fira Code Nerd Font Mono | |
bold_font auto | |
italic_font auto | |
bold_italic_font auto | |
font_size 18.0 | |
disable_ligatures never | |
tab_bar_edge bottom |