Skip to content

Instantly share code, notes, and snippets.

@heikomat
heikomat / DebianOnMBP.md
Last active January 28, 2017 15:50
Macbook Pro late 2015 (`MacBookPro11,5`) Debian stretch KDE setup

Basic pre-upgrade-settings

Set keyboard-layout

  • System-settings -> input-devices -> Keyboard -> Keyboard-Model: Apple macbook pro (intl) -> apply

switch ^/° with </> key

Taken from here

  • create the file ~/.Xmodmap` with the following content:
keycode 49 = less greater less greater bar brokenbar bar 
@heikomat
heikomat / .zshrc
Last active July 8, 2020 07:16
my zshrc for iterm2
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/heiko/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="robbyrussell"
@heikomat
heikomat / settings.json
Last active March 11, 2018 17:06
vscode_settings
{
"workbench.statusBar.visible": true,
"files.insertFinalNewline": true,
"editor.scrollBeyondLastLine": false,
"editor.emptySelectionClipboard": false,
"editor.tabSize": 2,
"eslint.autoFixOnSave": true,
"tslint.autoFixOnSave": true,
"vsicons.projectDetection.autoReload": true,
"editor.rulers": [80, 120],
@heikomat
heikomat / working_environment_overview.md
Last active February 22, 2018 18:20
Working Environment Overview

Sprachen

Wer macht was

Sprache Beschreibung Sprachtyp
HTML Beschreibt was für Elemente es gibt Markup-Sprache
CSS Beschreibt wie die Elemente aussehen Stylesheet-Sprache
JavaScript Beschreibt was passieren soll Programmier-Sprache

Erweiterungen

| Sprache | Erweitert | Beschreibung |

@heikomat
heikomat / js_basics.md
Last active December 10, 2020 10:41
Introduction to ioc, di, functions, scopes, callbacks, promises and async/await

Inversion of Control via Dependency Injection

Without dependency injection

engine.ts

export class Engine {}

car.ts

@heikomat
heikomat / .zshrc for windows
Created March 11, 2018 17:57
zshrc for linux subsystem on windows (incl. docker)
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/home/heiko/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="robbyrussell"
@heikomat
heikomat / .bashrc for windows
Created March 11, 2018 17:59
bashrc for linux subsystem on windows (incl. nvm)
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@heikomat
heikomat / nvm_fast_reuse.md
Last active December 21, 2022 16:24
How to switch to fast-reuse for faster nvm loading

Install nvm-ng

  • If you use nvm via the zsh-plugin, disable it by removing nvm from the plugins of your ~/.zshrc
  • If you have nvm installed via the install-script from creationix, unistall it as described here
  • do a regular nvm-ng-install as described here

BE SURE TO NOT HAVE A PREFIX CONFIGURED IN NPM!!!

Setting a prefix changes the installation directory for global packages and is not supported by nvm.

if npm config get prefix is either not set, or a subpath of echo $NVM_DIR, then you're good to go. Otherwise run npm config delete prefix to unset your prefix.

Install sudo:

su
apt install sudo
addgroup YOURUSERNAME sudo
reboot

Install Chrome