Is there a shorthand explanation or an equation for this sequence?
1,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1... and so on.
It's easy to do with bit shifting, but I'm not sure how to translate that into easy to understand language. It's basically a progression of wait 0, then wait 1, then wait 2, then wait 3, etc.
Is there a shorthand explanation or an equation for this sequence?
1,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1... and so on.
It's easy to do with bit shifting, but I'm not sure how to translate that into easy to understand language. It's basically a progression of wait 0, then wait 1, then wait 2, then wait 3, etc.
For a five year old well I'm not sure about that. But you could call it a sequence of sub-sequences where the nth sub-sequence is 1 and then n 0s. Or if you want to break it down you could call it a binary representation of 2, 4, 8, 16,32. By the same logic you could also call is a series of the powers of ten where sub-sequences are each 10^n. None of those quite work for a five year old but for a half way competent adult, probably
An item on ETSY that's not 600 dollars? End of the fucking world man.
That's because Most people on etsy haven't run a business before, and don't know how to price things properly. I'm still making a respectable enough profit that even if I don't sell a ton of them, I'm covering my entire materiel cost(Because while I print to order, I can't buy stock to order, my only option is buying cardstock in lots of 100 cards minimum, and it's not cheap - and I didn't even expect to sell as many as I did), my shipping costs are pretty close to what it costs me to ship, including shipping materials. As it is, I still make a coin or three out of it, but I don't need to price it at 10 or 20 bucks a badge, because that's just greed and foolishness. People think the art of business is ruthlessness, when in fact, that's only a small part of it - Ruthlessness to your competitors, but never to your customers. And When I put more products up, I'll be charging appropriately for them, too, as well as charging appropriately for my custom work - Materiel costs, plus reasonable labor and shipping. Because after all, if I drain your wallet with the first must-have purchase, then there isn't any more left for you to give me when I make the next thing, is there?
Between Churba, Nuri, and the guy that makes terrariums out of lightbulbs, we have three of the four goddamn Horsemen.
Comments
Is there a shorthand explanation or an equation for this sequence?
1,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1... and so on.
It's easy to do with bit shifting, but I'm not sure how to translate that into easy to understand language. It's basically a progression of wait 0, then wait 1, then wait 2, then wait 3, etc.
count = 1
while true:
print 1
for x in range(0, count):
print 0
count += 1
Yes, it's a lame day. No, I'm not hating that I get a day off.