- css
- flexbox, online - https://flexboxfroggy.com/
- selectors, online - https://flukeout.github.io/
- concurrency, c#, online - https://deadlockempire.github.io/
- git
- offline - https://ohmygit.org/
- online - https://learngitbranching.js.org/
- regex
- online - https://regexcrossword.com/
- online - https://alf.nu/RegexGolf
This file contains hidden or 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
| #!/bin/bash | |
| # ============================================================================= | |
| # inet-blocker-cronjob.sh | |
| # | |
| # Zwei Modi, gesteuert über die Umgebungsvariable MODE: | |
| # | |
| # MODE=fetch-prices | |
| # Holt die aWATTar-Stundenpreise für heute und morgen und legt sie | |
| # im Cache ab. Täglich einmal aufrufen, nachdem aWATTar die EPEX-Preise | |
| # veröffentlicht hat (typisch gegen 14:00 Uhr). |
This file contains hidden or 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
| #!/bin/bash | |
| set -ex | |
| export WINEPREFIX=~/.wine-sse2024 | |
| # download from https://download.steuertipps.de/software/SSE29Standard | |
| # install winetricks via https://github.com/Winetricks/winetricks | |
| winetricks settings win10 |
This file contains hidden or 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
| #!/bin/bash | |
| set -ex | |
| export WINEPREFIX=~/.wine-sse2023 | |
| # install winetricks via https://github.com/Winetricks/winetricks | |
| winetricks settings win10 | |
| #winetricks --self-update |
This file contains hidden or 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
| #!/bin/bash | |
| if [[ ! -f $(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh ]]; then | |
| echo "installing first time bash-git-prompt" | |
| brew install bash-git-prompt | |
| fi | |
| if [[ -f $(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh ]]; then | |
| __GIT_PROMPT_DIR=$(brew --prefix)/opt/bash-git-prompt/share |
This file contains hidden or 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
| #!/bin/bash | |
| set -ex | |
| function convertPdf(){ | |
| local file=$1 | |
| set -e | |
| echo $file |
This file contains hidden or 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
| #!perl | |
| use strict; | |
| use warnings; | |
| $| = 1; | |
| # use module | |
| use XML::Simple; | |
| use Data::Dumper; |
I hereby claim:
- I am lkwg82 on github.
- I am lkwg82 (https://keybase.io/lkwg82) on keybase.
- I have a public key ASBl04qbPsRW33q1X66G9v8NXX7ILxphWXuhkU5ZY7Dxvgo
To claim this, I am signing this object:
This file contains hidden or 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
| import static java.util.concurrent.TimeUnit.MILLISECONDS; | |
| import static org.assertj.core.api.Assertions.assertThat; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Random; | |
| import java.util.concurrent.ExecutionException; | |
| import org.junit.ClassRule; |
NewerOlder