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
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous"> | |
| <meta charset="utf-8"> | |
| <div class="container-fluid"> | |
| <div class="row mt-5"> | |
| <div class="col"> | |
| <select class="form-control mb-2"> | |
| <option selected>IVXLCDM</option> | |
| <option>🐶🦍🫎🦄🐽🐏🐬</option> | |
| </select> | |
| <input type="number" class=form-control max="3999" min=0> |
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
| #!/usr/bin/env bash | |
| OP_ACCOUNT="${OP_ACCOUNT:-my.1password.com}" | |
| op() { | |
| command op --account "$OP_ACCOUNT" "$@" --format=json | |
| } | |
| countids() { | |
| echo $# |
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
| #!/usr/bin/env bash | |
| main() { | |
| declare account="$1" uuid="$2" field="${3:-password}" | |
| /opt/homebrew/bin/op read --account "$account" "op://Employee/$uuid/$field" | |
| } | |
| main "$@" |
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
| #!/usr/bin/env bash | |
| if [[ -z "$GITHUB_PRIVATE_KEY" || -z "$GITHUB_APP_ID" ]]; then | |
| echo "Error: Required environment variables are not set." >&2 | |
| echo "Ensure GITHUB_PRIVATE_KEY and GITHUB_APP_ID are set." >&2 | |
| exit 1 | |
| fi | |
| if [[ -f "$GITHUB_PRIVATE_KEY" ]; then | |
| GITHUB_PRIVATE_KEY="$(cat "$GITHUB_PRIVATE_KEY")" |
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
| $icon-size: 16px; | |
| $icon-sizes: ( | |
| sm: $icon-size / 1.5; | |
| md: $icon-size; | |
| lg: $icon-size * 1.5; | |
| ) |
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
| [default] | |
| aws_access_key_id = | |
| aws_secret_access_key = |
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
| From: Puck <[email protected]> | |
| Newsgroups: alt.pl.fan.gopher | |
| Subject: Re: Czy aby Hakiery :)) (fwd) | |
| Date: Thu, 01 Aug 2002 09:13:42 +0200 | |
| Message-ID: <[email protected]> | |
| Oto rezultat stukania w klawisze przez osobę, pragnącą być | |
| identyfikowana jako "Adam `Gophi' Wysocki" <[email protected]>: | |
| > > > Adam informuje Cie grzecznie, ze masz kurs do Gdanska. |
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
| describe('ConnectionIdentifierLabelFactory', () => { | |
| // test cases declarations using gherkin syntax: | |
| test('call pstn number', () => { | |
| when_i_call('+48500100100'); | |
| then_i_expect_label_to_be('+48 500 100 100'); | |
| }); | |
| test('call task by id with prefix', () => { | |
| const id = uuid(); |
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 | |
| // region $sut = new WaitingScriptFactory() | |
| $sut = new WaitingScriptFactory( | |
| new CallerContextFactory( | |
| new StaticWaitingMusicRepository(self::MUSIC_URL), | |
| new StaticLinePositionAnnouncementConfiguration(), | |
| new StaticAnnouncementFactory($this->announcement), | |
| ), | |
| new StaticResponseBuilderFactory($this->responseBuilder), |
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 function findUpcomingForPatient(Patient $patient): ?Visit | |
| { | |
| - return $this->cache->fetch($patient->getId()) | |
| - ?: $this->visits->findUpcomingForPatient($patient); | |
| + $key = $patient->getId(); | |
| + if ($this->cache->contains($key)) { | |
| + return $this->cache->fetch($key); | |
| + } | |
| + | |
| + return $this->visits->findUpcomingForPatient($patient); |
NewerOlder