Skip to content

Commit 645f1a7

Browse files
committed
fix: fix the return email addresses
1 parent a145377 commit 645f1a7

8 files changed

+25
-96
lines changed

README.MD

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
# ICT Conscript Admission Test
22
Thank you for taking interest in applying into our ICT Conscript Program.
3-
In this repository you will find our **Admission Test** to the program.
4-
### The test is a voluntary (but **highly recommended**) part of the Admission:
5-
- We will evaluate your OmaIntti application even if you couldn't complete the Admission test.
6-
### **However we highly recommend you take the test, if possible. It greatly improves your chances of being selected.**
7-
83

4+
In this repository you will find our **Admission Test** to the program.
95

106
# 1. What we are looking for?
117
We’re looking for individuals who are eager to grow and contribute in the following roles:
@@ -34,20 +30,22 @@ The process is straightforward: choose a task, fork the repository, complete you
3430
Make sure to link all deliverables (e.g., wireframes, research notes, plans) in your README.md.
3531

3632
### 4. Submit your Admission Test
37-
Once your test is ready, send an email to: ```ictvmrekry.pvjjk (at) mil.fi```
33+
Once your test is ready, send an email to: ```ictvmhaku.pvjjk (at) mil.fi```
3834
Include the following in your message:
3935
- Your full name
40-
- A link to your forked GitHub repository
36+
- A link to your forked, public GitHub repository
4137
- See the format below, use that!
4238

4339
⚠️ All other documentation should already be in your repository. Do not include additional details in the email.
4440

41+
**You can return an incomplete Test** (a task that fails to fulfill the given goals) **as well. If you do so, please detail in your email why you couldn't complete the task.**
42+
4543
### 5. Await pre-selection results
4644
After submitting your test:
47-
- We will evaluate your work
45+
- We will evaluate your work.
4846
- Based on both your OmaIntti application and Admission Test, if applicable, we’ll decide if you move to the interview stage.
4947

50-
You will be notified whether you are selected for an interview, or not moving forward in the process.
48+
You will be notified if you are selected for an interview.
5149

5250
Final selections are made after all interviews are completed.
5351

@@ -69,4 +67,7 @@ https://github.com/(your github user)/your-repository
6967
OmaNimi
7068
````
7169
72-
Make sure to follow return instructions closely.
70+
Make sure to follow the return instructions closely.
71+
72+
### Thank you!
73+
```- The ICT Conscript Program team```

challenges/01a-swdev-frontend.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ Build a frontend application that
4949
- [ ] GitHub Pages deployment live.
5050
- [ ]
5151
URL in your fork’s README.
52-
- [ ] Mail link to your forked repository to ictvmrekry.pvjjk at mil.fi.
52+
- [ ] Return your done Test to ```ictvmhaku.pvjjk at mil.fi```.

challenges/01b-swdev-backend-api.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ Add the **public base URL** to your fork’s root README.
7878
| | Public URL in root README responds to `GET /health` with `200 OK`. |
7979
| | `GET /entries` returns the 10 sample items. |
8080
| | README contains route docs **or** OpenAPI spec link. |
81-
- [ ] Mail link to your forked repository to ictvmrekry.pvjjk at mil.fi.
81+
- [ ] Return your done Test to ```ictvmhaku.pvjjk at mil.fi```.

challenges/01c-swdev-backend-auth.MD

Lines changed: 0 additions & 71 deletions
This file was deleted.

challenges/02a-devops-docker.MD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Your assignment is to deliver a **Docker Compose stack** that exposes a simple *
1919
* **hello-world container** (plain nginx serving `index.html` with “Unit Logbook OK”)
2020
* optional **log forwarding** or **health-check** side-container.
2121
2. Obtain and renew **Let’s Encrypt TLS** certificates automatically.
22-
3. Ship a **CI-based deploy** (GitHub Actions) that, on every push to `main`, redeploys the stack to a free-tier VPS or container platform.
23-
4. Pin all container images to **immutable version tags** (no `:latest`).
22+
3. Ship a **CI-based deploy** (GitHub Actions) that, on every push to `main`, redeploys the stack to a eg. free-tier VPS, container platform, your homeserver behind a DDNS or other service of your choice.
23+
2424

2525
---
2626

@@ -42,7 +42,7 @@ Your assignment is to deliver a **Docker Compose stack** that exposes a simple *
4242
* **Reverse-proxy choice** – Traefik v2, Caddy 2, or nginx with `certbot` / `acme.sh`.
4343
* **Hosting target** – free tier is fine (Fly.io, Oracle Arm Ampere, CapRover, Dokku, Render, Railway, Hetzner CX11 + Cloud DNS…).
4444
* **DNS** – use a sub-domain you control (e.g. `logbook-<yourname>.example.org`). Synthetic (`duckdns.org`, `nip.io`) is acceptable.
45-
* **Zero manual steps** after first `terraform apply` / VM creation – deploy script must recreate the stack end-to-end.
45+
* **Zero manual steps** except for starting the docker compose.
4646

4747
---
4848

@@ -51,6 +51,7 @@ Your assignment is to deliver a **Docker Compose stack** that exposes a simple *
5151
| Idea | Hint |
5252
|------|------|
5353
| Development | A "docker-compose-dev.yml" when ran, overwrites your Let's Encrypt setup with eg. mkcert for running the compose in local/development environment. |
54+
| Version tags | Pin all container images to **immutable version tags** (no `:latest`). |
5455

5556
---
5657

@@ -59,8 +60,7 @@ Your assignment is to deliver a **Docker Compose stack** that exposes a simple *
5960
| ✔︎ | Item |
6061
|----|------|
6162
| | `docker compose up -d` locally starts stack; `curl -k https://localhost` prints “Unit Logbook OK”. |
62-
| | **Public URL** in root README serves valid Let’s Encrypt certificate. |
63+
| | **Public URL** of the deployment included in root README, and it serves valid Let’s Encrypt certificate. |
6364
| | GitHub Actions run visible in your fork shows last successful deploy. |
64-
| | `docker-compose.yml` uses ONLY explicit version tags. |
65-
| | `infra/README.md` documents chosen host, deploy steps, and renewal strategy. |
66-
- [ ] Mail link to your forked repository to ictvmrekry.pvjjk at mil.fi.
65+
| | `README.md` documents chosen host, deploy steps, and renewal strategy. |
66+
- [ ] Return your done Test to ```ictvmhaku.pvjjk at mil.fi```.

challenges/02b-devops-terraform.MD

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ README.md
8383
| | `terraform fmt` + `validate` succeed. |
8484
| | `terraform apply` from a fresh clone produces an HTTPS URL printing “Unit Logbook OK”. |
8585
| | Output variables include the public URL. |
86-
| | No secrets or API tokens committed (use env vars / `terraform.tfvars`). |
8786
| | Provider & module versions pinned. |
8887
| | README contains links to test your setup. |
89-
- [ ] Mail link to your forked repository to ictvmrekry.pvjjk at mil.fi.
88+
- [ ] Return your done Test to ```ictvmhaku.pvjjk at mil.fi```.

challenges/03-px-design.MD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
Create a **concise product-experience package** (wireframes + explanatory notes) that shows how the Unit Logbook should look, feel, and flow.
1414

15-
> **Time box:** aim for **3–6 h** total.
15+
> **Time box:** aim for **1–8 h** total.
1616
> **Tools:** any design tool you like (Figma, Adobe XD, Pen-&-Paper → photo, Excalidraw…).
1717
> **No coding required.**
1818
@@ -56,4 +56,4 @@ Create a **concise product-experience package** (wireframes + explanatory notes)
5656
| | Public share link (or static images) added to your fork’s root README. |
5757
| | File formats are viewable without proprietary software (SVG, PNG, or public Figma link). |
5858

59-
- [ ] Mail link to your forked repository to ictvmrekry.pvjjk at mil.fi.
59+
- [ ] Return your done Test to ```ictvmhaku.pvjjk at mil.fi```.

challenges/04-productowner-scrummaster.MD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You have been asked to make this product happen with a squad of developers.
1515

1616
Produce a **concise product-management package** that a new dev team could pick up on Monday and start delivering the **Unit Logbook Proof-of-Concept**.
1717

18-
> **Time-box:** **1 – 6 hours**
18+
> **Time-box:** **1 – 8 hours**
1919
> **Tools:** Issues to your `Github repository issue tracker`, and a `Github Projects` kanban board.
2020
> **No coding required.**
2121
@@ -60,5 +60,5 @@ Produce a **concise product-management package** that a new dev team could pick
6060
| | Sliced up the Concept to meaningful pieces, exhibited as Issues on your forked repository's issue tracker & Github Projects kanban board |
6161
| | Roadmap or crude timing on when happens what. |
6262
| | Artefacts committed in `challenges/product-owner/` and linked from root README. |
63-
- [ ] Mail link to your forked repository to ictvmrekry.pvjjk at mil.fi.
63+
- [ ] Return your done Test to ```ictvmhaku.pvjjk at mil.fi```.
6464

0 commit comments

Comments
 (0)