Skip to content

Instantly share code, notes, and snippets.

View violen's full-sized avatar

André Hauser violen

View GitHub Profile
@violen
violen / putty_run.bat
Created April 29, 2025 12:40
Putty Click & Play
@echo off
pwsh -file %cd%\putty_run.ps1
@violen
violen / workspace-name.code-workspace
Created May 2, 2024 08:29
Dart / FVM Workspace Configuration
{
"folders": [
{
"path": ".."
}
],
"settings": {
"dart.flutterSdkPath": "C:\\PATH\\TO\\PROJECT\\.fvm\\flutter_sdk",
// Workaround - VSCode can not extend your PATH
// ADD CUSTOM_PATH to your PATH variable
@violen
violen / Microsoft.PowerShell_profile.ps1
Created April 12, 2024 10:21
WIndows Powershell Profile
### "C:\Users\username\Documents\PowerShell\Microsoft.VSCode_profile.ps1"
### "C:\Users\username\Documents\PowerShell\Microsoft.PowerShell_profile.ps1"
# Install oh-my-posh via winget install JanDeDobbeleer.OhMyPosh
Import-Module posh-git
# Update Terminal-Icons
# Install-Module -Name Terminal-Icons -Repository PSGallery
Import-Module -Name Terminal-Icons
# Update PSReadLine
# Install-Module PSReadLine
@violen
violen / Verein.md
Created October 31, 2021 21:33
Szenario zur Modellierung

Szenario Sportverein

  • Verwaltung von Sportplätzen
  • Sportarten
    • Tennis
    • Fußball
    • Leichtathletik
  • Verwaltung von Mitgliedern
    • Mitglieder können mehrere Sportarten anwählen
  • Verwaltung von Angestellten
@violen
violen / persons.mongodb
Created October 31, 2021 16:51
Personen Mongo PG
// MongoDB Playground
// To disable this template go to Settings | MongoDB | Use Default Template For Playground.
// Make sure you are connected to enable completions and to be able to run a playground.
// Use Ctrl+Space inside a snippet or a string literal to trigger completions.
// Select the database to use.
use('fiae08');
// const inserted = db.Persons.insertOne({
// "_id": ObjectId(),
# Compose File for ITBH - FIAE08
version: '3'
services:
db:
image: mysql
restart: 'no'
command: --default-authentication-plugin=mysql_native_password
ports:
@violen
violen / ff-theme.txt
Last active May 8, 2021 12:45
Firefox Theme
https://color.firefox.com/?theme=XQAAAAI8AQAAAAAAAABBqYhm849SCia3ftKEGccwS-xMDPr1qJSH3zv3-NMocCR71lOdsdz5VoEOAnHZ6BQTlyEzh-HE4WbeFAIOqLKDjQshDwfMlWb2VwxDKo3JtFyb9NVPOFrcAFBpjYGX7IHvcjEzuJe8-i2bCl1mIZt6BN7_PwqDhakBq_QMUkR_OJTIuWng2CEbVFI7flHGR5kvyVlAmGD6mCD42cHzEWob5F5cUPqRqTR0y3Pc30DLBtWunugL50a7ZV0oZCe9YIoEtd5xat8U7P_-PUd6
@violen
violen / otf2ttf.sh
Created November 7, 2019 13:52
Convert *.otf to *.ttf with fontforge.github.io
#!/usr/bin/fontforge
# You need fontforge to use this script!
# Example: fontforge -script otf2ttf.sh font.otf
# This converts *.otf to *.ttf
Print("opening "+$1);
Open($1);
Print("converting "+$1:r+".ttf");
Generate($1:r+".ttf");
@violen
violen / wsl.conf
Created June 11, 2019 11:56
WSL Example Config /etc/wsl.conf
# See MS Blog https://blogs.msdn.microsoft.com/commandline/2018/02/07/automatically-configuring-wsl/
# Let’s enable extra metadata options by default
[automount]
enabled = true
root = "/mnt/"
options = "metadata,umask=22,fmask=11"
mountFsTab = true
@violen
violen / .inputrc
Created December 2, 2018 12:17
Case Insenitive Bash Completion
# Include inputrc for readline dependent programms
$include /etc/inputrc
set completion-ignore-case on