It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
$ echo 'ibase=16; 00000000000059B7B1670117EEB04F472036C073F275CD50DECCE15D3894C8F5;' | bc
144170545449846795252878978589069370515757698399706647721462005
$ echo 'ibase=16;
> h=00000000000059B7B1670117EEB04F472036C073F275CD50DECCE15D3894C8F5;
> ibase=0A;
> n=10000;
> print "first prize: ", h%n, "\nSecond prize: ", (h/n)%n, "\nThird prize: ", ((h/n)/n)%n, "\n"' | bc
first prize: 2005
Second prize: 2146
Third prize: 6477
$ echo 'ibase=16;
> h=00000000000059B7B1670117EEB04F472036C073F275CD50DECCE15D3894C8F5;
> ibase=0A;
> n=9999;
> print "first prize: ", h%n, "\nSecond prize: ", (h/n)%n, "\nThird prize: ", ((h/n)/n)%n, "\n"' | bc
first prize: 9555
Second prize: 4693
Third prize: 2067
$ echo 'ibase=16;
> h=00000000000059B7B1670117EEB04F472036C073F275CD50DECCE15D3894C8F5;
> ibase=0A;
> n=1000;
> print "first prize: ", h%n, "\nSecond prize: ", (h/n)%n, "\nThird prize: ", ((h/n)/n)%n, "\n"' | bc
first prize: 5
Second prize: 462
Third prize: 721
$ echo 'ibase=16;
> h=00000000000059B7B1670117EEB04F472036C073F275CD50DECCE15D3894C8F5;
> ibase=0A;
> n=997;
> print "first prize: ", h%n, "\nSecond prize: ", (h/n)%n, "\nThird prize: ", ((h/n)/n)%n, "\n"' | bc
first prize: 72
Second prize: 550
Third prize: 848
TKT# Sending address
0000 mJ7sEL2hswp5EaXbv4a6FLcmoPA7TSUtDK
0001 mJ7sEL2hswp5EaXbv4a6FLcmoPA7TSUtDK
0002 mJ7sEL2hswp5EaXbv4a6FLcmoPA7TSUtDK
0003 mJ7sEL2hswp5EaXbv4a6FLcmoPA7TSUtDK
0004 mJ7sEL2hswp5EaXbv4a6FLcmoPA7TSUtDK
0005 mJ7sEL2hswp5EaXbv4a6FLcmoPA7TSUtDK
0006 mMRTZtXwSQSfFrnpgfyoqc1bXE7xpGsku6
0007 mQEHKNh91js5t5Y9EfXqGXCscdzSjx6Q4g
0008 mQEHKNh91js5t5Y9EfXqGXCscdzSjx6Q4g
0009 mQEHKNh91js5t5Y9EfXqGXCscdzSjx6Q4g
0010 mV3aX3QEgRmh1vZywKu9h1RhMW63cxVADQ
and mRoEyeproB6hX2DY8Bfng8rfnaXk2ppVLm
0011 mV3aX3QEgRmh1vZywKu9h1RhMW63cxVADQ
and mRoEyeproB6hX2DY8Bfng8rfnaXk2ppVLm
... etc. ...
Note that blockchain timestamps are represented in Unix/Linux internal date format, i.e., seconds since 1970-01-01 UTC.
maxchain.info displays them in this format. max.cryptoexplore.com seems to display them as date and local time in
timezone UTC-0600.
$ date --date="2014-03-15 UTC" +%s
1394841600
$ date --date="2014-03-15 08:00:00 UTC" +%s
1394870400
$ date --date="2014-03-15 16:00:00 UTC" +%s
1394899200
Just to be complete, we specify with great precision what the % operator means for operands greater or equal to zero.
These calculations are done using infinite precision positive integer arithmetic.
% denotes the remainder after integer division, 1 % 2 = 1.
x % y is always less than y.
÷ denotes integer division, 1 ÷ 2 = 0.
y * (x ÷ y) + (x % y) is always equal to x.
(x % y) is therefore always equal to x - y * (x ÷ y).
1st prize goes to ticket number (H % N).
2nd prize goes to ticket number ((H ÷ N) % N).
3rd prize goes to ticket number (((H ÷ N) ÷ N) % N).