![]() |
|
|
#496 |
|
"Gang aft agley"
Sep 2002
375410 Posts |
Solving three Rubik's Cubes while juggling them. (about 6 minutes)
Ravi Fernando "Start: 0:26. Cubes solved at 1:38, 4:15, and 5:55. Near-drop at 2:03." https://youtu.be/K_gHa2x2OQA via Ian Agol on Google+: "Watched him do this Saturday at the math dept. picnic." |
|
|
|
|
|
#497 |
|
"Mike"
Aug 2002
5×17×97 Posts |
|
|
|
|
|
|
#498 |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
3×29×83 Posts |
GAME 7 HYPE
|
|
|
|
|
|
#499 |
|
"Mike"
Aug 2002
200658 Posts |
|
|
|
|
|
|
#500 |
|
"Mike"
Aug 2002
5×17×97 Posts |
|
|
|
|
|
|
#501 |
|
"Mike"
Aug 2002
5×17×97 Posts |
|
|
|
|
|
|
#502 | |
|
"Kieren"
Jul 2011
In My Own Galaxy!
27AE16 Posts |
Quote:
I hope it doesn't send all that stuff to "Russian Hackers" instead.
|
|
|
|
|
|
|
#503 |
|
"Mike"
Aug 2002
5×17×97 Posts |
We hesitate to use it because we practice (extreme) skeptical computing.
However, it sounds like the perfect app.
|
|
|
|
|
|
#504 |
|
"Mike"
Aug 2002
5·17·97 Posts |
We did some incredibly inelegant programming this evening and came up with this:
Code:
def isprime(n):
for i in xrange(2, int(n**0.5) + 1):
if n % i == 0:
return False
return True
list = [2, 3, 5, 7]
while list != []:
print list
tmp = []
for i in list:
for j in range(i * 10, i * 10 + 10):
if isprime(j) == True:
tmp.append(j)
list = tmp
Code:
[2, 3, 5, 7] [23, 29, 31, 37, 53, 59, 71, 73, 79] [233, 239, 293, 311, 313, 317, 373, 379, 593, 599, 719, 733, 739, 797] [2333, 2339, 2393, 2399, 2939, 3119, 3137, 3733, 3739, 3793, 3797, 5939, 7193, 7331, 7333, 7393] [23333, 23339, 23399, 23993, 29399, 31193, 31379, 37337, 37339, 37397, 59393, 59399, 71933, 73331, 73939] [233993, 239933, 293999, 373379, 373393, 593933, 593993, 719333, 739391, 739393, 739397, 739399] [2339933, 2399333, 2939999, 3733799, 5939333, 7393913, 7393931, 7393933] [23399339, 29399999, 37337999, 59393339, 73939133]
|
|
|
|
|
|
#505 |
|
"Daniel Jackson"
May 2011
14285714285714285714
23·83 Posts |
I'm not sure what's going on here (other than the fact that there are Mersenne Prime exponents), but the title is German for "Project Floating Calculator Heating Unit". Are you using your computers to heat your home or something? That's not very energy efficient.
Last fiddled with by Stargate38 on 2016-11-05 at 23:39 |
|
|
|
|
|
#506 | |
|
Just call me Henry
"David"
Sep 2007
Cambridge (GMT/BST)
16FF16 Posts |
Quote:
|
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Official "Faits erronés dans de belles-lettres" thread | ewmayer | Lounge | 39 | 2015-05-19 01:08 |
| Official "all-Greek-to-me Fiction Literature and Cinema" Thread | ewmayer | Science & Technology | 41 | 2014-04-16 11:54 |
| Official "Lasciate ogne speranza" whinge-thread | cheesehead | Soap Box | 56 | 2013-06-29 01:42 |
| Official "Ernst is a deceiving bully and George is a meanie" thread | cheesehead | Soap Box | 61 | 2013-06-11 04:30 |
| Official "String copy Statement Considered Harmful" thread | Dubslow | Programming | 19 | 2012-05-31 17:49 |