Glenn Jackman

Results 79 comments of Glenn Jackman

I wonder if it's maybe a locale problem: I'd imagine [the Ubuntu image](https://github.com/exercism/awk-test-runner/blob/main/Dockerfile) doesn't have many locales installed, so it may be having trouble with the UTF chars.

I confirmed that changing the UTF maze characters passes the tests in Docker: using only `-` `|` `+` for the maze and `>` for the entry and exit (edits in...

2 ways forward from here: 1. make the solution less pretty by not using UTF characters 2. install a UTF-8 local when building the image.

[Another one](https://discord.com/channels/854117591135027261/1106643006750208070/1262782420881772594): https://earthly.dev/blog/awk-examples/

Tcl ```tcl $ tclsh % foreach x {1 2 3 4} { puts ">>> $x" } >>> 1 >>> 2 >>> 3 >>> 4 ``` Tcl has a builtin `info...

Although the environment is a property of a process, from an interface perspective, a separate Env module is nicer. For me, the environment is a collection of NAME=value pairs. Calling...

Still needs _some_ native functional methods: ``` Env.each {|variable| System.print("%(variable.name}=%(variable.value)")} Env.where {|var| var.name.endsWith("PATH")} ``` And that `EnvEntry` class should clearly be named `EnvVariable`

I hear you. `toMap` makes sense. Perhaps also (or instead of) `toList` returns a list of EnvVariable objects

Examples: * https://exercism.org/mentoring/requests/71934aafebe9427db0e59257d59eb4b1 * https://discord.com/channels/854117591135027261/1181639884360912956 and the corresponding https://exercism.org/mentoring/requests/cc9f908f8dd34af5ba7b245a2cf08dce

> Looking at the other languages this would normally be a function for each of the water drinker and the zebra owner. How come you have opted for a data...