Skip to content

Instantly share code, notes, and snippets.

View vivi90's full-sized avatar
🚀
Science serves the purpose of making fantasy come true.

Vivien Richter vivi90

🚀
Science serves the purpose of making fantasy come true.
View GitHub Profile
@vivi90
vivi90 / autoexec.cfg
Created November 17, 2021 22:26 — forked from sebastiandero/autoexec.cfg
Autoexec.cfg for CS:GO
//~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--
//
//.----------------. .----------------. .----------------. .----------------. .----------------. .----------------. .----------------.
//| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
//| | ________ | || | _________ | || | ____ ____ | || | _________ | || | ____ ____ | || | _ | || | _______ | |
//| | |_ ___ `. | || | |_ ___ | | || ||_ _| |_ _| | || | |_ ___ | | || | |_ _||_ _| | || | | | | || | / ___ | | |
//| | | | `. \ | || | | |_ \_| | || | \ \ / / | || | | |_ \_| | || | \ \ / / | || | \_| | || | | (__ \_| | |
//| | | | | | | || | | _| _ | || | \ \ / / | || | | _| _ | || | > `' < | || | | || | '.___`-. | |
//| | _| |___.'
@vivi90
vivi90 / RemoveWin10DefaultApps.ps1
Created October 27, 2021 04:27 — forked from tkrotoff/RemoveWin10DefaultApps.ps1
Remove Windows 10 default apps
# See Remove default Apps from Windows 10 https://thomas.vanhoutte.be/miniblog/delete-windows-10-apps/
# See Debloat Windows 10 https://github.com/W4RH4WK/Debloat-Windows-10
# Command line to list all packages: Get-AppxPackage -AllUsers | Select Name, PackageFullName
Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage
Get-AppxPackage Windows.ContactSupport | Remove-AppxPackage
Get-AppxPackage Microsoft.Xbox* | Remove-AppxPackage
Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage # Mail and Calendar
#Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage
Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage
@vivi90
vivi90 / sitemap.xml
Created August 24, 2021 13:18
Global multilingual sitemap for Jekyll based websites
---
# Global multilingual sitemap for Jekyll based websites
#
# Version: 1.0.0
# Author: Vivien Richter <vivien-richter@outlook.de>
# License: CC-BY-4.0
#
# Based on: https://sylvaindurand.org/making-jekyll-multilingual/#with-a-sitemaps-file
#
# See also:
@vivi90
vivi90 / .gitattributes
Created May 30, 2021 16:50
.gitattributes file for Unity projects
# Modified from:
# https://hextantstudios.com/unity-gitattributes
# Macro for Unity YAML-based asset files.
[attr]unityyaml -text merge=unityyamlmerge diff
# Macro for all binary files that should use Git LFS.
[attr]lfs -text filter=lfs diff=lfs merge=lfs lockable
# Default to auto-normalized line endings.
@vivi90
vivi90 / .gitignore
Last active May 30, 2021 15:48
.gitignore file for Unity projects
# This .gitignore file should be placed at the root of the Unity project directory
#
# Modified from:
# https://github.com/github/gitignore/blob/master/Unity.gitignore
# https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
# https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
# https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
@vivi90
vivi90 / php-badge-template
Last active September 4, 2019 21:30 — forked from nebrelbug/template
An SVG template for PHP which will render ReadMe badges
<?php
$leftWidth = strlen($leftText) * 10;
$rightWidth = strlen($rightText) * 13 + 5;
$totalWidth = $leftWidth + $rightWidth - 5;
?>
<svg xmlns="http://www.w3.org/2000/svg" width="<?= $totalWidth ?>" height="20">
<linearGradient id="smooth" x2="0" y2="100%">
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
<stop offset="1" stop-opacity=".1"/>
</linearGradient>
@vivi90
vivi90 / sources.bib
Last active June 11, 2019 20:59
Sources
@book{DE:TilkovREST,
title = {REST und HTTP : Entwicklung und Integration nach dem Architekturstil des Web},
author = {Tilkov, Stefan},
edition = {3},
year = {2015},
publisher = {dpunkt-Verlag},
address = {Heidelberg}
}
@article{EN:MartinsHypermedia,