- First generate an API key using Notify's admin interface. The API key consists of three parts:
erDiagram
User ||--o{ Application : makes
Application ||--o{ Course : "for a"
Application ||--o{ "Lead Provider" : "provides"
School o|--o{ "Application" : ""
"Private childcare provider" o|--o{ Application : ""
Cohort ||--o{ Application : ""
Cohort ||--o{ Statement : ""
Cohort ||--o{ Schedule : "belongs to"
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
| diff --git a/documentation/providers/ecf-call-off-contract-2023-2024-redacted.adoc b/documentation/providers/ecf-call-off-contract-2023-2024-redacted.adoc | |
| index c0dbeff..ca2fe44 100644 | |
| --- a/documentation/providers/ecf-call-off-contract-2023-2024-redacted.adoc | |
| +++ b/documentation/providers/ecf-call-off-contract-2023-2024-redacted.adoc | |
| @@ -3393,9 +3393,9 @@ of the KPI target | |
| [width="100%",cols="57%,27%,16%",options="header",] | |
| |=== | |
| -|*KPI;* |*Measure* | | |
| -a| |
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
| wheel = (0..99).to_a | |
| wheel.rotate!(50) | |
| data = File.read("input.txt").chomp.split("\n") | |
| puts "Part 1" | |
| part_1_hits = 0 | |
| part_1_wheel = wheel.dup | |
| current_position = part_1_wheel.first |
OlderNewer