5 ms·
There are even images here: https://wikileaks.org/ciav7p1/cms/page_13205694.html https://wikileaks.org/ciav7p1/cms/page_13205694.html
by TheHippo 10y ago
There are even images here: https://wikileaks.org/ciav7p1/cms/page_13205694.html https://wikileaks.org/ciav7p1/cms/page_13205694.html
- y_u_no_rust 10y agoI'm sure the NSA will get a kick out of this one def dcode(data): key = 20 newdata = '' for i in data: i=ord(i) if i< key: i = 256 + (1) newdata += chr(i-key) return newdata def ncode(data): newdata = '' key = 20 for i in data: i = ord(i) if i + key >= 256: i = i - (256) newdata += chr(i+key) return newdata
- abrkn 10y agoAnd they're using git flow