"Steve Carroll" wrote:
> The two way data binding might prove to be a worthy opponent to you CLI
> up/down. If you would indulge me, let's test something:
>
> xpd npd frpdn lpd, gxu lmg ljkuq m fmg gxmg dumrq m xmg
>
> (this may not be long enough and/or have enough info)
Not bad but there's one word not making sense as Mike E pointed out.
I solved this before looking at his reply and in a different way.
> Tell me the steps you'd use to solve that manually and I'll write
> something along the lines of what I was talking about with data binding
> (it'll just be a couple of strings, visibly). I'll then try to follow
> your steps using it.
>
> Swapping out with uppercase, I'd start with the lone 'm' and begin by
> assuming it's the letter 'a', which would produce:
>
> xpd npd frpdn lpd, gxu lAg ljkuq A fAg gxAg duArq A xAg
That's how I started but swapped the case around
> Or it could be an 'i', thus yielding:
>
> xpd npd frpdn lpd, gxu lIg ljkuq I fIg gxIg duIrq I xIg
Didn't try that.
> I'd probably go for the 'g' because of how it starts and ends a 4 letter
> word and starts or ends several 3 letter words. Seems the most common 4
> letter words that start and end with the same letter use these letters:
> a,b,d,e,f,g,h,k,m,n,p,r,s,t
>
> Of those, how many fit the 3 letter words where 'a' or 'i' is the middle
> letter? I obviously know the solution but these are the steps I'd begin
> with to narrow it down. What's a better way, manually?
My approach is to use spaces for missing letters and line up answer
below (use fixed-width font). Assuming 'M' = 'a' look for "the" being
the first word:
$> caesar MXPD athe 32
XPD NPD FRPDN LPD, GXU LMG LJKUQ M FMG GXMG DUMRQ M XMG
the he he he t a a a ta e a a ta
Not looking sensible. "GXU" is next best choice:
$> caesar MGXU athe 32
XPD NPD FRPDN LPD, GXU LMG LJKUQ M FMG GXMG DUMRQ M XMG
h the at e a at that ea a hat
Now I have two more words. "DUMRQ" looks like "means":
$> caesar MGXUDRQ athemns 32
XPD NPD FRPDN LPD, GXU LMG LJKUQ M FMG GXMG DUMRQ M XMG
h m m n m m the at es a at that means a hat
Not looking sensible. Try for "wears":
$> caesar MGXUDRQ athewrs 32
XPD NPD FRPDN LPD, GXU LMG LJKUQ M FMG GXMG DUMRQ M XMG
h w w r w w the at es a at that wears a hat
First word has to have an 'o':
$> caesar MGXUDRQP athewrso 32
XPD NPD FRPDN LPD, GXU LMG LJKUQ M FMG GXMG DUMRQ M XMG
how ow row ow the at es a at that wears a hat
Now I recognise the saying in the first 4 words (not a good idea to
have 'N' = 'n'):
$> caesar MGXUDRQPNFL athewrsonbc 32
XPD NPD FRPDN LPD, GXU LMG LJKUQ M FMG GXMG DUMRQ M XMG
how now brown cow the cat c es a bat that wears a hat
The only word I can fit for "LJKUQ" is "clues". Don't know what that
means in this context!