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
//~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~-- | |
// | |
//.----------------. .----------------. .----------------. .----------------. .----------------. .----------------. .----------------. | |
//| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. | | |
//| | ________ | || | _________ | || | ____ ____ | || | _________ | || | ____ ____ | || | _ | || | _______ | | | |
//| | |_ ___ `. | || | |_ ___ | | || ||_ _| |_ _| | || | |_ ___ | | || | |_ _||_ _| | || | | | | || | / ___ | | | | |
//| | | | `. \ | || | | |_ \_| | || | \ \ / / | || | | |_ \_| | || | \ \ / / | || | \_| | || | | (__ \_| | | | |
//| | | | | | | || | | _| _ | || | \ \ / / | || | | _| _ | || | > `' < | || | | || | '.___`-. | | | |
//| | _| |___.' |
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
# 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 |
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
--- | |
# Global multilingual sitemap for Jekyll based websites | |
# | |
# Version: 1.0.0 | |
# Author: Vivien Richter <[email protected]> | |
# License: CC-BY-4.0 | |
# | |
# Based on: https://sylvaindurand.org/making-jekyll-multilingual/#with-a-sitemaps-file | |
# | |
# See also: |
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
# 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. |
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
# 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/ |
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
<?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> |
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
@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, |