What does it mean for students to truly explore an idea? In many classrooms, learning still leans too heavily on passive absorption, reading, watching, and listening, without enough opportunity for students to engage with ideas through direct experience. Active Exploration (one of the A’s in the 6 A’s project implementation elements) shifts this paradigm. It’s […] The post Active Exploration: A Path to Meaningful Learning first appeared on Center for Excellence.| Center for Excellence
Lately I have been working a bit with various backup/file tools written in Go, mainly rclone and restic. I noticed that both of them has issues when dealing with long Windows paths, which is quite unfortunate for backup utilities, so I figured that might be a good thing to cover on my blog. This issue...| defer time.Sleep()
When parsing a string that is divided by a separator char, getting the first N values OR last N values is a common scenario when dealing with: IP address separated by periods, e.g. “10.11.12.13” File path separated by forward slash “/tmp/myfolder/subpath1/subpath2/subpath3” Fully qualified domain separated by periods “sub1.sub2.my.domain.com” Getting first N values Getting the first ... Bash: extracting first or last N octets, paths, or domain from string with fixed separator| Fabian Lee : Software Engineer