studentProjectAllocation

(★ 34)

An implementation of Abraham et al's (2007) algorithm for allocation of student projects

File Explorer

  • .gitignore
  • fileFormatDetails.txt
  • LICENSE
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

perl

View Details ▼

The Perl 5 language interpreter.
See also: `perldoc`.

perl -n -e 'print if m/regex1/ and m/regex2/i'

Print lines from `stdin` [m]atching `regex1` and case [i]nsensitive `regex2`:

perl -n -E 'say $1 if m/{{before}} ( {{group_regex}} ) {{after}}/x'

Say ([-E]) first match group, using a `regex`, ignoring space ([x]) in `regex`:

perl -i'.bak' -p -e 's/regex/{{replacement}}/g' {{path/to/files}}

[i]n-place, with backup, [s]ubstitute all occurrence ([g]) of `regex` with a replacement:

// repository documentation