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
| PX | REM | TW | |
|---|---|---|---|
| 4 | 0.25 | 1 | |
| 8 | 0.5 | 2 | |
| 16 | 1 | 4 | |
| 32 | 2 | 8 | |
| 48 | 3 | 12 | |
| 64 | 4 | 16 | |
| 80 | 5 | 20 | |
| 96 | 6 | 24 | |
| 112 | 7 | 28 |
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
| { | |
| "ab":{ | |
| "name":"Abkhaz", | |
| "nativeName":"аҧсуа" | |
| }, | |
| "aa":{ | |
| "name":"Afar", | |
| "nativeName":"Afaraf" | |
| }, | |
| "af":{ |
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
| readinessProbe: | |
| exec: | |
| command: ["/root/grpc_health_probe", "-addr=:6666"] | |
| initialDelaySeconds: 1 | |
| livenessProbe: | |
| exec: | |
| command: ["/root/grpc_health_probe", "-addr=:6666"] | |
| initialDelaySeconds: 2 | |
| imagePullPolicy: IfNotPresent |
git config --global url."git@bitbucket.org:".insteadOf "https://bitbucket.org/"
git config --global url."git@bitbucket.org:".insteadOf "https://api.bitbucket.org/"
git config --global url."git@github.com:".insteadOf "https://github.com/"
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
| package main | |
| import ( | |
| "context" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "time" | |
| ) |
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
| $ go mod edit -replace github.com/testcontainers/testcontainer-go@v0.0.2=github.com/testcontainers/testcontainers-go@latest | |
| $ go mod edit -replace github.com/golang/lint=golang.org/x/lint@latest |
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
| // Copyright (c) 2017 Ismael Celis | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: | |
| // The above copyright notice and this permission notice shall be included in all |
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
| <?php | |
| /** | |
| * Max number of attempts to increase counter | |
| * | |
| * @var int | |
| */ | |
| const MAX_ATTEMPTS = 10; | |
| /** |

