CryptoFuture (OP)
Full Member
Offline
Activity: 181
Merit: 100
Diggit.io Admin
|
|
March 03, 2014, 01:06:46 PM |
|
;;;;;;; ; ; ;; ;; ;;;;;;; W ;;; W `;`;W``W` W ; W ;;; W W WWW W `` ``;` W`;;W W WWW W W;;;;;W W W W ;`; ; W W;;;;;W ;;;;; ;;;;;W`;;WW;`;;; ; ; ; ```;;;W W ;W;`W``;; `W;;` ;; ;` ;`WW`;`;`;`;;;` ;W`;;; W W;``;W````WW`;``W`WW ; `;;;W;;; ;;`; ; ; W```; ` WW W W`;`;;`W``W` R`WW; W ```W;` W ;W `; W` `` W``; `WW;;W` ;;;;;;; W`W W WW `;W ; W ;;` W ;;; W ; `;W;W;``W;;;WW ;` W WWW W W W`;;W;```;`;;W; ;;` W;;;;;W W ;W ;W;; W``;`WW;`
|
|
|
|
Meuh6879
Legendary
Offline
Activity: 1512
Merit: 1012
|
|
March 03, 2014, 04:34:41 PM |
|
it's a trap.
|
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3486
Merit: 4816
|
|
March 03, 2014, 07:09:40 PM |
|
https://blockchain.info/address/12xRyf6DUkoh3e6Bd6vaXcY8JGhniGSq8w ;;;;;;; ; ; ;; ;; ;;;;;;; W ;;; W `;`;W``W` W ; W ;;; W W WWW W `` ``;` W`;;W W WWW W W;;;;;W W W W ;`; ; W W;;;;;W ;;;;; ;;;;;W`;;WW;`;;; ; ; ; ```;;;W W ;W;`W``;; `W;;` ;; ;` ;`WW`;`;`;`;;;` ;W`;;; W W;``;W````WW`;``W`WW ; `;;;W;;; ;;`; ; ; W```; ` WW W W`;`;;`W``W`R`WW; W ```W;` W ;W `; W` `` W``; `WW;;W` ;;;;;;; W`W W WW `;W ; W ;;` W ;;; W ; `;W;W;``W;;;WW ;` W WWW W W W`;;W;```;`;;W; ;;` W;;;;;W W ;W ;W;; W``;`WW;`
For 0.01 BTC? Not worth the effort.
|
|
|
|
zetaray
|
|
March 03, 2014, 07:15:14 PM |
|
This is a bit too challenging for me, but it should not be too difficult for those who can program
|
|
|
|
E.exchanger
|
|
March 17, 2014, 02:52:57 PM |
|
I wonder noone has every solved it, Is it really that hard to solve
|
|
|
|
Taras
Legendary
Offline
Activity: 1386
Merit: 1053
Please do not PM me loan requests!
|
|
March 18, 2014, 12:09:32 AM |
|
|
|
|
|
roslinpl
Legendary
Offline
Activity: 2212
Merit: 1199
|
|
March 18, 2014, 12:10:24 AM |
|
I wonder noone has every solved it, Is it really that hard to solve No one want to waste a time on this perhaps
|
|
|
|
Taras
Legendary
Offline
Activity: 1386
Merit: 1053
Please do not PM me loan requests!
|
|
March 18, 2014, 12:12:53 AM |
|
I wonder noone has every solved it, Is it really that hard to solve No one want to waste a time on this perhaps I'd waste my time on this for BTC0.001
|
|
|
|
roslinpl
Legendary
Offline
Activity: 2212
Merit: 1199
|
|
March 19, 2014, 12:00:30 AM |
|
I wonder noone has every solved it, Is it really that hard to solve No one want to waste a time on this perhaps I'd waste my time on this for BTC0.001 0.001 BTC is not a lot But I would say I undertand that it might be worth some time - but is less than a dollar how much time is worth? Anyway did you solve it right already? Regards and good luck
|
|
|
|
Triswardhani
Full Member
Offline
Activity: 168
Merit: 100
Lithium core developer
|
|
March 19, 2014, 04:16:35 PM |
|
It's not worth.....
|
|
|
|
DannyHamilton
Legendary
Offline
Activity: 3486
Merit: 4816
|
|
March 20, 2014, 07:52:24 AM Last edit: March 20, 2014, 08:43:22 AM by DannyHamilton |
|
If I've got the pattern right: - In most cases a W represents 2 black pixels arranged vertically.
- In most cases a ; represents 2 pixels arranged vertically where the top is white and bottom is black.
- In most cases a ` represents 2 pixels arranged vertically where the top is black and bottom is white.
- In most cases a blank space represents w white pixels arranged vertically.
Following those rules, I get what looks like a QR Code. The positioning, alignment, and timing information is all properly represented. Additionally: - It appears to be a Version 3 (29x29) QR Code.
- It seems to be using Level L (Low) error correction.
- It appears to be using the (col%3=0) mask pattern.
I have not yet figured out what the bold R is meant to indicate. As such, the resulting QR Code doesn't scan. What I have so far looks like this:
|
|
|
|
Wintervenom
Newbie
Offline
Activity: 2
Merit: 0
|
|
March 20, 2014, 09:48:28 AM |
|
#!/usr/bin/env python3 import fileinput
def main(): grid = [] for line in fileinput.input(): line = line.rstrip() print(' ', end='') columns = [] for char in line: if char == 'W': pair = (True, True) elif char == ';': pair = (False, True) elif char == '`': pair = (True, False) elif char == ' ': pair = (False, False) elif char == 'R': pair = (True, False) else: pair = (False, False) columns.append(pair)
column = [] for top, bottom in columns: column.append(top) grid.append(column)
column = [] for top, bottom in columns: column.append(bottom) grid.append(column)
print('\x1b[0m') print('\x1b[47m\n') for column in grid: print('\x1b[47m ', end='') for cell in column: print('\x1b[40m ' if cell else '\x1b[47m ', end='') print('\x1b[47m') print('\x1b[47m\n', end='') print('\x1b[0m') print('')
if __name__ == '__main__': try: main() except KeyboardInterrupt: print('') pass
|
|
|
|
TheButterZone
Legendary
Offline
Activity: 3066
Merit: 1032
RIP Mommy
|
|
March 20, 2014, 09:53:13 AM |
|
Finally. Lock topic.
|
Saying that you don't trust someone because of their behavior is completely valid.
|
|
|
mexxer
|
|
March 20, 2014, 01:56:22 PM |
|
lol this was pretty cool but couldn't join in time
|
|
|
|
Taras
Legendary
Offline
Activity: 1386
Merit: 1053
Please do not PM me loan requests!
|
|
March 20, 2014, 08:33:55 PM |
|
I wonder noone has every solved it, Is it really that hard to solve No one want to waste a time on this perhaps I'd waste my time on this for BTC0.001 0.001 BTC is not a lot But I would say I undertand that it might be worth some time - but is less than a dollar how much time is worth? Anyway did you solve it right already? Regards and good luck 0.001 BTC is not a lot Not in 2009, not in 2014. But what about 2020? Congrats to whoever decoded this. It was fun to try, I'd like to see more of this
|
|
|
|
roslinpl
Legendary
Offline
Activity: 2212
Merit: 1199
|
|
March 20, 2014, 11:13:55 PM |
|
I wonder noone has every solved it, Is it really that hard to solve No one want to waste a time on this perhaps I'd waste my time on this for BTC0.001 0.001 BTC is not a lot But I would say I undertand that it might be worth some time - but is less than a dollar how much time is worth? Anyway did you solve it right already? Regards and good luck 0.001 BTC is not a lot Not in 2009, not in 2014. But what about 2020? Congrats to whoever decoded this. It was fun to try, I'd like to see more of this indeed I would like to see more too 0.001 BTC is not even 1 cheap beer in my situation but quizzes like that are more interesting than 0.001 BTC
|
|
|
|
Taras
Legendary
Offline
Activity: 1386
Merit: 1053
Please do not PM me loan requests!
|
|
March 21, 2014, 01:20:13 AM |
|
I wonder noone has every solved it, Is it really that hard to solve No one want to waste a time on this perhaps I'd waste my time on this for BTC0.001 0.001 BTC is not a lot But I would say I undertand that it might be worth some time - but is less than a dollar how much time is worth? Anyway did you solve it right already? Regards and good luck 0.001 BTC is not a lot Not in 2009, not in 2014. But what about 2020? Congrats to whoever decoded this. It was fun to try, I'd like to see more of this indeed I would like to see more too 0.001 BTC is not even 1 cheap beer in my situation but quizzes like that are more interesting than 0.001 BTC2014 = 0.001 BTC -> 1 cheap beer 2016 = 0.001 BTC -> 30 cheap beers
|
|
|
|
roslinpl
Legendary
Offline
Activity: 2212
Merit: 1199
|
|
March 21, 2014, 10:16:45 AM |
|
2014 = 0.001BTC -> 1 cheap beer 2016 = 0.001BTC -> 30 cheap beers
Yeees well but I will not hodl till 2016 I am not too good at hodling I am much better at spending Anyway this was very nice quiz and price doesn't really matter. And I love the way it was solved as I love Python.
|
|
|
|
|