Uncategorized
FruityWifi
by dervish on Aug.12, 2015, under Uncategorized
Source: FruityWifi
How Well Can You Hear Audio Quality?
by dervish on Jun.03, 2015, under Uncategorized
A hi-def test for your ears (and your audio equipment): Listen to these songs and see if you can tell the difference between an MP3 and an uncompressed audio file.
KUNG FURY Official Movie [HD] – YouTube
by dervish on May.29, 2015, under Uncategorized
ISBN = 9780199226559
by dervish on May.16, 2015, under Uncategorized
#BlueBook code decryption
import sys
def sieve(n):
x = [1] * n
x[1] = 0
for i in range(2,n/2):
j = 2 * i
while j < n:
x[j]=0
j = j+i
return x
def prime(n,x):
i = 1
j = 1
while j <= n:
if x[i] == 1:
j = j + 1
i = i + 1
return i - 1
x=sieve(10000)
code = [1206,301,384,5]
key =[1,1,2,2,]
sys.stdout.write("".join(chr(i) for i in [73,83,66,78,32,61,32]))
for i in range (0,4):
sys.stdout.write(str(prime(code[i],x)-key[i]))
print