Skip to content

Instantly share code, notes, and snippets.

View Azer0s's full-sized avatar
🦥

Ariel Simulevski Azer0s

🦥
View GitHub Profile
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
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();

tin

Hello world

echo "Hello, world!"

Fibonacci sequence

  • NICE v2 in Go
    • Tun/Tap with Water
  • x86 Emulator
  • Athena
  • alexandria
  • Continue Sane
@Azer0s
Azer0s / setup.md
Last active January 21, 2020 15:32

Install homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor

Install ZSH and set as default shell

@Azer0s
Azer0s / .zshrc
Last active April 13, 2020 14:44
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
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"