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
| Alligator | |
| Anteater | |
| Armadillo | |
| Axolotl | |
| Badger | |
| Bat | |
| Beaver | |
| Buffalo | |
| Camel | |
| Capybara |
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
| airhead | |
| allah | |
| altar | |
| anal | |
| anus | |
| aryan | |
| ass | |
| ass lick | |
| asshole | |
| asshole cleaner |
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
| sudo apt-get update | |
| sudo apt-get upgrade -y | |
| # install hfs tools (for macos extended journaled) | |
| sudo apt-get install hfsplus hfsutils hfsprogs | |
| sudo reboot | |
| # get device id | |
| df -h | |
| # example: |
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
| # https://github.com/dotnet/diagnostics/issues/573#issuecomment-543886037 | |
| # dotnet tools are currently available as part of SDK so we need to create them in an sdk image | |
| # and copy them to our final runtime image | |
| FROM mcr.microsoft.com/dotnet/core/sdk:3.0 AS tools-install | |
| RUN dotnet tool install --tool-path /dotnetcore-tools dotnet-sos | |
| RUN dotnet tool install --tool-path /dotnetcore-tools dotnet-trace | |
| RUN dotnet tool install --tool-path /dotnetcore-tools dotnet-dump | |
| RUN dotnet tool install --tool-path /dotnetcore-tools dotnet-counters |
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
| select version(); | |
| -- PostgreSQL 9.6.12 on x86_64-pc-linux-musl, compiled by gcc (Alpine 8.2.0) 8.2.0, 64-bit | |
| SHOW server_version; | |
| -- 9.6.12 | |
| SELECT current_setting('server_version_num'); | |
| -- 90612 | |
| select current_setting('server_version'); |
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
| function text_replace() { | |
| case "${OSTYPE}" in | |
| darwin*) PLATFORM="OSX" ;; | |
| linux*) PLATFORM="LINUX" ;; | |
| bsd*) PLATFORM="BSD" ;; | |
| *) PLATFORM="UNKNOWN" ;; | |
| esac | |
| if [[ "${PLATFORM}" == "OSX" || "${PLATFORM}" == "BSD" ]]; then | |
| find $1 -type f -name $2 -exec sed -i "" "s/$3/$4/g" {} + |
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/sh | |
| [[ -n $DEBUG ]] && set -x | |
| set -eou pipefail | |
| usage() { | |
| cat <<"EOF" | |
| USAGE: | |
| kubetool : show this message | |
| kubetool ctx get : gets the current context |
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
| /// <summary> | |
| /// More information on cache headers can be found here: | |
| /// | |
| /// https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching | |
| /// | |
| /// The important ones: | |
| /// | |
| /// no-store: | |
| /// | |
| /// The cache should not store anything about the client request |
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
| public static class Tests | |
| { | |
| public const string Integration = "IntegrationTests"; | |
| } | |
| public class IntegrationTestApplicationFactory : WebApplicationFactory<Startup> | |
| { | |
| protected override IWebHostBuilder CreateWebHostBuilder() | |
| { | |
| return new WebHostBuilder() |
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
| function text_replace() { | |
| case "${OSTYPE}" in | |
| darwin*) PLATFORM="OSX" ;; | |
| linux*) PLATFORM="LINUX" ;; | |
| bsd*) PLATFORM="BSD" ;; | |
| *) PLATFORM="UNKNOWN" ;; | |
| esac | |
| if [[ "${PLATFORM}" == "OSX" || "${PLATFORM}" == "BSD" ]]; then | |
| find artifacts/ -type f -name "*.yml" -exec sed -i "" "s/$1/$2/g" {} + |