Search found 2 matches

by dut
Tue Dec 17, 2013 4:30 pm
Forum: Challenges Solved
Topic: 3280
Replies: 20
Views: 2599

fast and dirty :oops:

Code: Select all

 
f = open('rfc3280.txt')
words = []
for line in f:
    temp = line.split()
    for item in temp:
        if len(item) == 9:
            words.append(item)

for item in words:
    print item, words.count(item)
python rfc3280.py | sort -k2 -n -u | tail -n1
by dut
Tue Dec 17, 2013 6:07 am
Forum: Challenges
Topic: Cereal
Replies: 16
Views: 27124

Only thing I can assume:
Cereal => Serial
Suns/clouds => Weather
So as result => Weather Serial Protocol
Unfortunately I dont' find any weather serial protocol which contain start bytes "FE"/"7F" :-(