10+ years here too. Recently forced to switch because it's gotten so bad. Maybe if they aren't working the render engine they will have more time to work on performance.
Looks really nice, very readable. However, I want a python version!
This is pretty cool but it needs to have a more distinctive style. Maybe the same as it is but green.
1023 = 0b1111111111
It's common for the free detectable version of popular trojans to be used as the advertisement for the paid undetectable one. Looking at the poison ivy website they have a customer portal, so presumably this is how they…
You can get the Kindle DX if you want a larger screen. I have one and am very happy with it. http://www.amazon.com/dp/B002GYWHSQ/
Yeh it's fairly slow going. I'm at 3,706,382,752 and am going to call it a day. Looks like the code works properly.
Here is the code from the first test.[0] It increments a variable and prints a message if their is an inconsistency. I left it running till it reached 1,351,773,471 and didn't come up with any inconsistencies. I then…
I'm not doing power == int(power) though which is what he warns against. I haven't done a lot of testing however as far I can tell it's working. >>> is_power_of_two(2 ** 31 - 1) False >>>…
Is there a reason this won't work? It's the most 'readable' way I could come up with. #(python code) def is_power_of_two(n): import math if n <= 0: return False power = round(math.log(n, 2)) return 2 ** power == n
10+ years here too. Recently forced to switch because it's gotten so bad. Maybe if they aren't working the render engine they will have more time to work on performance.
Looks really nice, very readable. However, I want a python version!
This is pretty cool but it needs to have a more distinctive style. Maybe the same as it is but green.
1023 = 0b1111111111
It's common for the free detectable version of popular trojans to be used as the advertisement for the paid undetectable one. Looking at the poison ivy website they have a customer portal, so presumably this is how they…
You can get the Kindle DX if you want a larger screen. I have one and am very happy with it. http://www.amazon.com/dp/B002GYWHSQ/
Yeh it's fairly slow going. I'm at 3,706,382,752 and am going to call it a day. Looks like the code works properly.
Here is the code from the first test.[0] It increments a variable and prints a message if their is an inconsistency. I left it running till it reached 1,351,773,471 and didn't come up with any inconsistencies. I then…
I'm not doing power == int(power) though which is what he warns against. I haven't done a lot of testing however as far I can tell it's working. >>> is_power_of_two(2 ** 31 - 1) False >>>…
Is there a reason this won't work? It's the most 'readable' way I could come up with. #(python code) def is_power_of_two(n): import math if n <= 0: return False power = round(math.log(n, 2)) return 2 ** power == n