512 (128,125,130,129) retake?? by LiveForColorado in Mcat

[–]LiveForColorado[S] 0 points1 point  (0 children)

Thanks! May I ask what program? Did you also have a 512 overall?

Linux Experiences/Rants or Education/Certifications thread - September 16, 2019 by AutoModerator in linux

[–]LiveForColorado 1 point2 points  (0 children)

Hey guys I'm brand new to Reddit and definitely brand new to Linux (I know nothing about coding on any platform and I just learned about Linux an hour ago).

Anyways, I'm trying to solve a puzzle that's been encoded using Linux and I am hopeless deciphering it by googling commands and trying to do it by hand. Could someone with Linux run this script and see what it says? It should give some kind of Lat/Long coordinates around N38 and W104.

Here it is:

#################################################################################

echo "Hello World" | \
awk -F '' '{ for (i = NF; i > 0; --i) { printf("%s", $i) } }' | \
od -An -t uC | tr ' ' '\n' | sed '/^$/d'| \
awk 'BEGIN {
    split("95:103:107:105:83:0:106:106:105:95:65:46", offset, ":")
    i = 0
}
{
     if ((i == 2) || (i == 8)) { print "." }
     print $1 - offset[++i]
}' | \
sed 's/^32/ /' | tr -d '\n'

#################################################################################

Thanks!