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
terraform { | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "~> 4.16" | |
} | |
} | |
required_version = ">= 1.2.0" | |
} |
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
373 | |
334 | |
315 | |
318 | |
298 | |
313 | |
299 | |
352 | |
338 | |
366 |
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
#include <string.h> | |
#include <sys/param.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
#include "esp_log.h" | |
#include "nvs_flash.h" | |
#include "esp_event.h" | |
#include "esp_netif.h" | |
#include "esp_tls.h" |
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
package main | |
import ( | |
"encoding/base64" | |
"fmt" | |
"github.com/matisiekpl/figma" | |
"image" | |
"image/draw" | |
) |
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
{ | |
"heading": "AED Map", | |
"subheading": "{count} AEDs available", | |
"@subheading": { | |
"placeholders": { | |
"count": { | |
"type": "int", | |
"example": "4878" | |
} | |
} |
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
{ | |
"heading":"AED-Karte", | |
"subheading":"{count} verfügbare AEDs", | |
"@subheading":{ | |
"placeholders":{ | |
"count":{ | |
"type":"int", | |
"example":"4878" | |
} | |
} |
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
using Microsoft.EntityFrameworkCore; | |
namespace WebApplication6; | |
public class DatabaseContext: DbContext | |
{ | |
public DbSet<Match> Matches { get; set; } | |
public DbSet<Team> Teams { get; set; } | |
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) => |
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
Adam Mickiewicz | |
Pan Tadeusz | |
czyli ostatni zajazd na Litwie | |
Księga pierwsza | |
Gospodarstwo | |
Powrót panicza — Spotkanie się pierwsze w pokoiku, drugie u stołu — Ważna Sędziego nauka o grzeczności — Podkomorzego uwagi polityczne nad modami — Początek sporu o Kusego i Sokoła — Żale Wojskiego — Ostatni Woźny Trybunału — Rzut oka na ówczesny stan polityczny Litwy i Europy |
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
! task1 | |
conf t | |
int vlan1 | |
ip address 200.200.200.1 255.255.255.0 | |
no sh | |
! task2 | |
conf t | |
vlan 20 | |
exit |
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
-- 1. Napisz funkcję uzupełnijWybory, która przyjmuje idZamówienia. Funkcja ma uzupełnić te dni (w tabeli wybory), dla których nie | |
-- zostało wybrane jeszcze danie. Ma do niego wpisać danie o największej kaloryczności, które jest dostępne w tym dniu i w tej | |
-- diecie. | |
create or replace function uzupelnijWybory(in idZamowienia integer) | |
returns void | |
as | |
$$ | |
declare |
NewerOlder