Bitcoin Forum
May 21, 2024, 05:16:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 [100] 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 ... 172 »
1981  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: May 23, 2016, 01:28:03 AM
I love this project. Eurbids does amazing work keeping listed korecoin on bittrex!  Smiley

Eurbids?

check thread bro  Wink
1982  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] PakCoin - Pakistan's Crypto Currency - Official Thread on: May 23, 2016, 01:08:02 AM
I just found this interesting

Is the meta analisys of the thread

Could we do the same for PAK?


Meta analysis of Myriad ANN thread:

Code:
Total number of posts:                    7332
Total number of unique posters:            909
Number of posts by legendary members:      380
Number of posts by hero members:          1483
Number of posts by senior members:        2542
Number of posts by full members:          1302
Number of posts by member members:         870
Number of posts by junior members:         383
Number of posts by newbie members:         366
Number of posts by brand new members:        0

Top 30 posters:
Code:
Username                       number of posts           user class               
neuroMode                                  587           Sr. Member                         
foodies123                                 551           Sr. Member                         
primer-                                    252           Hero Member                       
novag                                      201           Hero Member                       
ahmed_bodi                                 176           Hero Member                       
cryptapus                                  174           Sr. Member                         
jwinterm                                   164           Legendary                         
iamphoenix                                 144           Sr. Member                         
8bitcoder                                  128           Full Member                       
Zoella                                     119           Full Member                       
zuludrag                                   100           Sr. Member                         
Mikellev                                    99           Sr. Member                         
dazz                                        88           Full Member                       
myriadcoin                                  75           Full Member                       
ivanlabrie                                  74           Hero Member                       
DLow                                        70           Sr. Member                         
Muzzargh                                    69           Member                             
Kraxer                                      67           Member                             
blacklig                                    64           Full Member                       
HR                                          62           Hero Member                       
MaxDZ8                                      59           Hero Member                       
keepwalking1234                             55           Member                             
mmihai1978                                  53           Sr. Member                         
xfelinho                                    52           Member                             
doge94                                      46           Sr. Member                         
paoloandre                                  43           Member                             
mami                                        41           Jr. Member                         
MyriadAngel                                 40           Jr. Member                         
svennand                                    39           Sr. Member                         
ocminer                                     39           Legendary     
           

Complete list of posters:
https://bpaste.net/show/c1b82a687cb1

Script for gathering data:
https://bpaste.net/show/54010104d2f9         

Kind of sad out of the top 3 posters of all-time, two are no longer around the project, and the third is le troll extroardinaire Tongue I'm sure some day we'll get some new names in the top spots.


Code:
import requests
import re
import time


# URL of the first page of target BTCtalk thread
targetURL = "https://bitcointalk.org/index.php?topic=483515.0"

# List variables used for collecting information
name_list  = []
class_list = []

# Regex matchers
name_match = r'title="View the profile of ([!@#\$\^\*\(\)\-_\+\=\[\]\\\?/a-zA-Z\d\,\.\;\: ]+)"'
# class_match = r'<div class="smalltext">\s+([a-zA-Z\.\s]+)<br />'
class_match = r'<div class="smalltext">\\n[\\t]+([a-zA-Z\.\s]+)<br />'

# While loop that keeps querying thread until reaches end of set page count
n=0
number_of_pages = 367 # One less than actual page count because start from zero

while n <= number_of_pages:
   
    # Print target URL and try to get data
    print("n = {0:d} and target URL is {1}".format(n, targetURL))
    try:
        r = requests.get(targetURL)
    except:
        print("Major connection error!!!!!!")
    page = ascii(r.text)

    # Do regex matching to find names and user classes
    name_matches  = re.findall(name_match, page)
    class_matches = re.findall(class_match, page)

    # Throw out weird unix timestamp names and change donators to legendary
    for i in name_matches:
        if i[0:5] != '14627':
            name_list.append(i)
    for i in class_matches:
        if i == "Donator":
            class_list.append("Legendary")
        else:
            class_list.append(i)

    # Increment the URL to next 20 posts
    n += 1
    listURL = targetURL.split('.')
    listURL[3] = str(int(listURL[3])+20)
    targetURL = '.'.join(listURL)
    time.sleep(1)
    print("User list is: {0:d} long, class list is: {1:d}".format(len(name_list), len(class_list)))


# Create sorted set of unique entries in masterList
unique_name_list = sorted(set(name_list))

# Create and populate other unique lists
unique_class_list = []
post_count_list = []

for i in unique_name_list:
    unique_class_list.append(class_list[name_list.index(i)])
    post_count_list.append(int(name_list.count(i)))
print(post_count_list, unique_name_list, unique_class_list)
# Zip and sort
zipped = list(zip(post_count_list, unique_name_list, unique_class_list))
zipped.sort(reverse=True)


# Write data to file
f = open("userStats_myr.txt", 'w')
f.write('{0:40s} {1:5d}\n'.format("Total number of posts: ", len(name_list)))
f.write('{0:40s} {1:5d}\n'.format("Total number of unique posters: ", len(unique_name_list)))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by legendary members: ", class_list.count("Legendary")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by hero members: ", class_list.count("Hero Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by senior members: ", class_list.count("Sr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by full members: ", class_list.count("Full Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by member members: ", class_list.count("Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by junior members: ", class_list.count("Jr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by newbie members: ", class_list.count("Newbie")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by brand new members: ", class_list.count("Brand New")))
f.write('{0:30s} {1:25s} {2:25s}\n'.format('Username', 'number of posts', 'user class'))
for i in zipped:
    f.write('{0:30s} {1:15d}           {2:35s}\n'.format(i[1], i[0], i[2]))
f.close()
print("Done")
1983  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [FJC] FujiCoin 2.0 | Japan | Launched June 2014 | Bleutrade - C-Cex on: May 23, 2016, 01:05:07 AM
I just found this interesting

Is the meta analisys of the thread

Could we do the same for FUJI?


Meta analysis of Myriad ANN thread:

Code:
Total number of posts:                    7332
Total number of unique posters:            909
Number of posts by legendary members:      380
Number of posts by hero members:          1483
Number of posts by senior members:        2542
Number of posts by full members:          1302
Number of posts by member members:         870
Number of posts by junior members:         383
Number of posts by newbie members:         366
Number of posts by brand new members:        0

Top 30 posters:
Code:
Username                       number of posts           user class               
neuroMode                                  587           Sr. Member                         
foodies123                                 551           Sr. Member                         
primer-                                    252           Hero Member                       
novag                                      201           Hero Member                       
ahmed_bodi                                 176           Hero Member                       
cryptapus                                  174           Sr. Member                         
jwinterm                                   164           Legendary                         
iamphoenix                                 144           Sr. Member                         
8bitcoder                                  128           Full Member                       
Zoella                                     119           Full Member                       
zuludrag                                   100           Sr. Member                         
Mikellev                                    99           Sr. Member                         
dazz                                        88           Full Member                       
myriadcoin                                  75           Full Member                       
ivanlabrie                                  74           Hero Member                       
DLow                                        70           Sr. Member                         
Muzzargh                                    69           Member                             
Kraxer                                      67           Member                             
blacklig                                    64           Full Member                       
HR                                          62           Hero Member                       
MaxDZ8                                      59           Hero Member                       
keepwalking1234                             55           Member                             
mmihai1978                                  53           Sr. Member                         
xfelinho                                    52           Member                             
doge94                                      46           Sr. Member                         
paoloandre                                  43           Member                             
mami                                        41           Jr. Member                         
MyriadAngel                                 40           Jr. Member                         
svennand                                    39           Sr. Member                         
ocminer                                     39           Legendary     
           

Complete list of posters:
https://bpaste.net/show/c1b82a687cb1

Script for gathering data:
https://bpaste.net/show/54010104d2f9         

Kind of sad out of the top 3 posters of all-time, two are no longer around the project, and the third is le troll extroardinaire Tongue I'm sure some day we'll get some new names in the top spots.


Code:
import requests
import re
import time


# URL of the first page of target BTCtalk thread
targetURL = "https://bitcointalk.org/index.php?topic=483515.0"

# List variables used for collecting information
name_list  = []
class_list = []

# Regex matchers
name_match = r'title="View the profile of ([!@#\$\^\*\(\)\-_\+\=\[\]\\\?/a-zA-Z\d\,\.\;\: ]+)"'
# class_match = r'<div class="smalltext">\s+([a-zA-Z\.\s]+)<br />'
class_match = r'<div class="smalltext">\\n[\\t]+([a-zA-Z\.\s]+)<br />'

# While loop that keeps querying thread until reaches end of set page count
n=0
number_of_pages = 367 # One less than actual page count because start from zero

while n <= number_of_pages:
   
    # Print target URL and try to get data
    print("n = {0:d} and target URL is {1}".format(n, targetURL))
    try:
        r = requests.get(targetURL)
    except:
        print("Major connection error!!!!!!")
    page = ascii(r.text)

    # Do regex matching to find names and user classes
    name_matches  = re.findall(name_match, page)
    class_matches = re.findall(class_match, page)

    # Throw out weird unix timestamp names and change donators to legendary
    for i in name_matches:
        if i[0:5] != '14627':
            name_list.append(i)
    for i in class_matches:
        if i == "Donator":
            class_list.append("Legendary")
        else:
            class_list.append(i)

    # Increment the URL to next 20 posts
    n += 1
    listURL = targetURL.split('.')
    listURL[3] = str(int(listURL[3])+20)
    targetURL = '.'.join(listURL)
    time.sleep(1)
    print("User list is: {0:d} long, class list is: {1:d}".format(len(name_list), len(class_list)))


# Create sorted set of unique entries in masterList
unique_name_list = sorted(set(name_list))

# Create and populate other unique lists
unique_class_list = []
post_count_list = []

for i in unique_name_list:
    unique_class_list.append(class_list[name_list.index(i)])
    post_count_list.append(int(name_list.count(i)))
print(post_count_list, unique_name_list, unique_class_list)
# Zip and sort
zipped = list(zip(post_count_list, unique_name_list, unique_class_list))
zipped.sort(reverse=True)


# Write data to file
f = open("userStats_myr.txt", 'w')
f.write('{0:40s} {1:5d}\n'.format("Total number of posts: ", len(name_list)))
f.write('{0:40s} {1:5d}\n'.format("Total number of unique posters: ", len(unique_name_list)))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by legendary members: ", class_list.count("Legendary")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by hero members: ", class_list.count("Hero Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by senior members: ", class_list.count("Sr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by full members: ", class_list.count("Full Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by member members: ", class_list.count("Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by junior members: ", class_list.count("Jr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by newbie members: ", class_list.count("Newbie")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by brand new members: ", class_list.count("Brand New")))
f.write('{0:30s} {1:25s} {2:25s}\n'.format('Username', 'number of posts', 'user class'))
for i in zipped:
    f.write('{0:30s} {1:15d}           {2:35s}\n'.format(i[1], i[0], i[2]))
f.close()
print("Done")
1984  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BOLIVARCOIN [No Premine] [X11] [POW] [BOLI] [Block Explorer] [And More] on: May 23, 2016, 01:02:43 AM
meta analiss del hilo

lo han hecho para myriad

alguien podria hacerlo para aqui?
alguien sabe en q lenguaje esta escrito?

Meta analysis of Myriad ANN thread:

Code:
Total number of posts:                    7332
Total number of unique posters:            909
Number of posts by legendary members:      380
Number of posts by hero members:          1483
Number of posts by senior members:        2542
Number of posts by full members:          1302
Number of posts by member members:         870
Number of posts by junior members:         383
Number of posts by newbie members:         366
Number of posts by brand new members:        0

Top 30 posters:
Code:
Username                       number of posts           user class               
neuroMode                                  587           Sr. Member                         
foodies123                                 551           Sr. Member                         
primer-                                    252           Hero Member                       
novag                                      201           Hero Member                       
ahmed_bodi                                 176           Hero Member                       
cryptapus                                  174           Sr. Member                         
jwinterm                                   164           Legendary                         
iamphoenix                                 144           Sr. Member                         
8bitcoder                                  128           Full Member                       
Zoella                                     119           Full Member                       
zuludrag                                   100           Sr. Member                         
Mikellev                                    99           Sr. Member                         
dazz                                        88           Full Member                       
myriadcoin                                  75           Full Member                       
ivanlabrie                                  74           Hero Member                       
DLow                                        70           Sr. Member                         
Muzzargh                                    69           Member                             
Kraxer                                      67           Member                             
blacklig                                    64           Full Member                       
HR                                          62           Hero Member                       
MaxDZ8                                      59           Hero Member                       
keepwalking1234                             55           Member                             
mmihai1978                                  53           Sr. Member                         
xfelinho                                    52           Member                             
doge94                                      46           Sr. Member                         
paoloandre                                  43           Member                             
mami                                        41           Jr. Member                         
MyriadAngel                                 40           Jr. Member                         
svennand                                    39           Sr. Member                         
ocminer                                     39           Legendary     
           

Complete list of posters:
https://bpaste.net/show/c1b82a687cb1

Script for gathering data:
https://bpaste.net/show/54010104d2f9         

Kind of sad out of the top 3 posters of all-time, two are no longer around the project, and the third is le troll extroardinaire Tongue I'm sure some day we'll get some new names in the top spots.


Code:
import requests
import re
import time


# URL of the first page of target BTCtalk thread
targetURL = "https://bitcointalk.org/index.php?topic=483515.0"

# List variables used for collecting information
name_list  = []
class_list = []

# Regex matchers
name_match = r'title="View the profile of ([!@#\$\^\*\(\)\-_\+\=\[\]\\\?/a-zA-Z\d\,\.\;\: ]+)"'
# class_match = r'<div class="smalltext">\s+([a-zA-Z\.\s]+)<br />'
class_match = r'<div class="smalltext">\\n[\\t]+([a-zA-Z\.\s]+)<br />'

# While loop that keeps querying thread until reaches end of set page count
n=0
number_of_pages = 367 # One less than actual page count because start from zero

while n <= number_of_pages:
   
    # Print target URL and try to get data
    print("n = {0:d} and target URL is {1}".format(n, targetURL))
    try:
        r = requests.get(targetURL)
    except:
        print("Major connection error!!!!!!")
    page = ascii(r.text)

    # Do regex matching to find names and user classes
    name_matches  = re.findall(name_match, page)
    class_matches = re.findall(class_match, page)

    # Throw out weird unix timestamp names and change donators to legendary
    for i in name_matches:
        if i[0:5] != '14627':
            name_list.append(i)
    for i in class_matches:
        if i == "Donator":
            class_list.append("Legendary")
        else:
            class_list.append(i)

    # Increment the URL to next 20 posts
    n += 1
    listURL = targetURL.split('.')
    listURL[3] = str(int(listURL[3])+20)
    targetURL = '.'.join(listURL)
    time.sleep(1)
    print("User list is: {0:d} long, class list is: {1:d}".format(len(name_list), len(class_list)))


# Create sorted set of unique entries in masterList
unique_name_list = sorted(set(name_list))

# Create and populate other unique lists
unique_class_list = []
post_count_list = []

for i in unique_name_list:
    unique_class_list.append(class_list[name_list.index(i)])
    post_count_list.append(int(name_list.count(i)))
print(post_count_list, unique_name_list, unique_class_list)
# Zip and sort
zipped = list(zip(post_count_list, unique_name_list, unique_class_list))
zipped.sort(reverse=True)


# Write data to file
f = open("userStats_myr.txt", 'w')
f.write('{0:40s} {1:5d}\n'.format("Total number of posts: ", len(name_list)))
f.write('{0:40s} {1:5d}\n'.format("Total number of unique posters: ", len(unique_name_list)))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by legendary members: ", class_list.count("Legendary")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by hero members: ", class_list.count("Hero Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by senior members: ", class_list.count("Sr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by full members: ", class_list.count("Full Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by member members: ", class_list.count("Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by junior members: ", class_list.count("Jr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by newbie members: ", class_list.count("Newbie")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by brand new members: ", class_list.count("Brand New")))
f.write('{0:30s} {1:25s} {2:25s}\n'.format('Username', 'number of posts', 'user class'))
for i in zipped:
    f.write('{0:30s} {1:15d}           {2:35s}\n'.format(i[1], i[0], i[2]))
f.close()
print("Done")
1985  Local / Altcoins (criptomonedas alternativas) / Re: [ANN][PTC] PesetaCoin | España | Bittrex - Cryptopia - SouthXchange on: May 23, 2016, 01:02:09 AM
meta analiss del hilo

lo han hecho para myriad

alguien podria hacerlo para aqui?
alguien sabe en q lenguaje esta escrito?

Meta analysis of Myriad ANN thread:

Code:
Total number of posts:                    7332
Total number of unique posters:            909
Number of posts by legendary members:      380
Number of posts by hero members:          1483
Number of posts by senior members:        2542
Number of posts by full members:          1302
Number of posts by member members:         870
Number of posts by junior members:         383
Number of posts by newbie members:         366
Number of posts by brand new members:        0

Top 30 posters:
Code:
Username                       number of posts           user class               
neuroMode                                  587           Sr. Member                         
foodies123                                 551           Sr. Member                         
primer-                                    252           Hero Member                       
novag                                      201           Hero Member                       
ahmed_bodi                                 176           Hero Member                       
cryptapus                                  174           Sr. Member                         
jwinterm                                   164           Legendary                         
iamphoenix                                 144           Sr. Member                         
8bitcoder                                  128           Full Member                       
Zoella                                     119           Full Member                       
zuludrag                                   100           Sr. Member                         
Mikellev                                    99           Sr. Member                         
dazz                                        88           Full Member                       
myriadcoin                                  75           Full Member                       
ivanlabrie                                  74           Hero Member                       
DLow                                        70           Sr. Member                         
Muzzargh                                    69           Member                             
Kraxer                                      67           Member                             
blacklig                                    64           Full Member                       
HR                                          62           Hero Member                       
MaxDZ8                                      59           Hero Member                       
keepwalking1234                             55           Member                             
mmihai1978                                  53           Sr. Member                         
xfelinho                                    52           Member                             
doge94                                      46           Sr. Member                         
paoloandre                                  43           Member                             
mami                                        41           Jr. Member                         
MyriadAngel                                 40           Jr. Member                         
svennand                                    39           Sr. Member                         
ocminer                                     39           Legendary     
           

Complete list of posters:
https://bpaste.net/show/c1b82a687cb1

Script for gathering data:
https://bpaste.net/show/54010104d2f9         

Kind of sad out of the top 3 posters of all-time, two are no longer around the project, and the third is le troll extroardinaire Tongue I'm sure some day we'll get some new names in the top spots.


Code:
import requests
import re
import time


# URL of the first page of target BTCtalk thread
targetURL = "https://bitcointalk.org/index.php?topic=483515.0"

# List variables used for collecting information
name_list  = []
class_list = []

# Regex matchers
name_match = r'title="View the profile of ([!@#\$\^\*\(\)\-_\+\=\[\]\\\?/a-zA-Z\d\,\.\;\: ]+)"'
# class_match = r'<div class="smalltext">\s+([a-zA-Z\.\s]+)<br />'
class_match = r'<div class="smalltext">\\n[\\t]+([a-zA-Z\.\s]+)<br />'

# While loop that keeps querying thread until reaches end of set page count
n=0
number_of_pages = 367 # One less than actual page count because start from zero

while n <= number_of_pages:
   
    # Print target URL and try to get data
    print("n = {0:d} and target URL is {1}".format(n, targetURL))
    try:
        r = requests.get(targetURL)
    except:
        print("Major connection error!!!!!!")
    page = ascii(r.text)

    # Do regex matching to find names and user classes
    name_matches  = re.findall(name_match, page)
    class_matches = re.findall(class_match, page)

    # Throw out weird unix timestamp names and change donators to legendary
    for i in name_matches:
        if i[0:5] != '14627':
            name_list.append(i)
    for i in class_matches:
        if i == "Donator":
            class_list.append("Legendary")
        else:
            class_list.append(i)

    # Increment the URL to next 20 posts
    n += 1
    listURL = targetURL.split('.')
    listURL[3] = str(int(listURL[3])+20)
    targetURL = '.'.join(listURL)
    time.sleep(1)
    print("User list is: {0:d} long, class list is: {1:d}".format(len(name_list), len(class_list)))


# Create sorted set of unique entries in masterList
unique_name_list = sorted(set(name_list))

# Create and populate other unique lists
unique_class_list = []
post_count_list = []

for i in unique_name_list:
    unique_class_list.append(class_list[name_list.index(i)])
    post_count_list.append(int(name_list.count(i)))
print(post_count_list, unique_name_list, unique_class_list)
# Zip and sort
zipped = list(zip(post_count_list, unique_name_list, unique_class_list))
zipped.sort(reverse=True)


# Write data to file
f = open("userStats_myr.txt", 'w')
f.write('{0:40s} {1:5d}\n'.format("Total number of posts: ", len(name_list)))
f.write('{0:40s} {1:5d}\n'.format("Total number of unique posters: ", len(unique_name_list)))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by legendary members: ", class_list.count("Legendary")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by hero members: ", class_list.count("Hero Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by senior members: ", class_list.count("Sr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by full members: ", class_list.count("Full Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by member members: ", class_list.count("Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by junior members: ", class_list.count("Jr. Member")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by newbie members: ", class_list.count("Newbie")))
f.write('{0:40s} {1:5d}\n'.format("Number of posts by brand new members: ", class_list.count("Brand New")))
f.write('{0:30s} {1:25s} {2:25s}\n'.format('Username', 'number of posts', 'user class'))
for i in zipped:
    f.write('{0:30s} {1:15d}           {2:35s}\n'.format(i[1], i[0], i[2]))
f.close()
print("Done")
1986  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BOLIVARCOIN [No Premine] [X11] [POW] [BOLI] [Block Explorer] [And More] on: May 23, 2016, 12:50:50 AM
I agree with you guys, that would be the final objective of BOLI.

Help the people of Venezuela

I think the best way is throught the media.

Goverment media wont help, but we should try to get covered by Dolar Today.

Anyone knows someone there?

https://dolartoday.com/
1987  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DUB] DUB [FULL REBRAND][BITTREX][YOBIT][MUSIC STREAMING] on: May 21, 2016, 04:16:01 PM
placebo,

I've just checked the other thread (swap)

In my opinion there is no need for swap. It's ok as it is.

Need dev to focus on improving the wallet and making it special
1988  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DBIC] DubaiCoin-DBIC دبي كوين on: May 21, 2016, 03:58:46 PM
As I've said yesterday in the wathsapp group I think we sould advertise DBIC in the Dubai Newspaper.

I've checked the prices of KhaleejTimes

http://www.khaleejtimes.com/assets/pdf/KT248935.PDF


FULL PAGE COLOUR AD RATES
(53cms x 6 cols)

NON PREMIUM INSIDE PAGE         DHS    58,200
BACK PAGE, PAGE 2                       DHS  124,980
PAGE 5                                         DHS  115,440
PAGE 7                                         DHS  110,670
PAGE 9                                              DHS  105,900
Inside Back Page, India Page & Page 4       DHS    91,590
Any specified page other than the above      DHS    77,280



124.980,00 AED = 34.030,80 USD





Better check quarter page  Grin


NON PREMIUM INSIDE PAGE      DHS   19,200
PAGE 2 & PAGE 3                       DHS    35,580
PAGE 5                                       DHS   33,240
PAGE 7                                       DHS   32,070
PAGE 9                                        DHS    30,900



19.200,00 AED = 5.227,97 USD

That's more achivable!!!





 
1989  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [GUA] GuaranyCoin | Brazil | Since Nov 2014 | Bleutrade | GuaCraft!! on: May 21, 2016, 03:38:43 PM

Not at all, btw brazilian new president Temer had a historical relationship with USA diplomacy and probably Brazil will take the USA side instead of the China plan. Some months ago the Bank of China have invested billions Yens in the almost bankrupted and total f**** Petrobras (oil company state monopoly).

If the crises continues we will see a boom in bitcoin economy(see Venezuela), if economy get better we will see a booom in the blockchain tech exploration (alt coins too). Both cenarios i can saw a nice place for cryptos in Brazil and in all south america.

Bad news if the new presindent is pro USA.
A new crisis will hit USA-UE.
FED and ECB have been printing money as a way to scape from crisis and it's not gonna work. It's all about to explode.
So everyone related with USA-UE will be fuck up.


both Brazil and Venezuela have their own cryptos, that could help the people move to a new economy...
1990  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Flirt.Life website for dating online not online dating on: May 19, 2016, 10:02:12 PM
interested in this coin
but no exchange...  Grin
network still alive?
1991  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [GUA] GuaranyCoin | Brazil | Since Nov 2014 | Bleutrade | GuaCraft!! on: May 19, 2016, 01:17:30 PM

offtopic but could someone explain what is going on in Brazil?
http://www.nytimes.com/2016/05/02/world/americas/brazil-president-dilma-rousseff-impeachment-allies-alienated.html?_r=0


btw, the deadline for posting your candidature for the brazilian tranlation is in 2 days. Wednesday. 
The Brazilian gov are full of accusations about corruption involving the state-private company Petrobras we are talking about billions of dollars used for corruption.
 you  add to it a president unable to do a simple plan or a talk correct in public, all major corrupted-businessmans saying that president Dilma knew about all of this corruption schema and after all of this Dilma made some illegal transactions involving state bank, Central Bank and the Treasure.  Brazil right now is a mess.


Some people loves Dilma cause they think she is fighting for the poors and other hate cause the big corruption schema. Causing a division all over the country.

But is not just the goverment involved in this schema all parties and almost 2/3 of politics are under investigation including the opposition.

The people in Brazil are without hope and the economic scenario is worst since 1929

is sad to hear about corruption, but it's fucking everywhere...
that's why btc aplied to politics with change everything

Brazilian people should get prepared for a new bigger international crisis. Buy btc, alts, gold, silver...

Being part of the BRICS is helping anyway? new investments recently?


Nope, China are slowing, Russia pay the price for Crimeia, India is on your on vibe and has its own big problems. Sadly and hopefully the last portion of hope are the new technologies. Bitcoin are becoming more and more popular each day and we have the most advance environment in Fintechs of Latin America. Cheesy

Thanks for the advise  Shocked Wink


Sad to hear BRICS are not helping. I guess each one is trying to solve it's own problems...

I found this article about China moving to Gold slowly
http://journal-neo.org/2016/05/18/china-quietly-prepares-golden-alternative-to-dollar-system/

Code:
Despite the wreck of the US economy and the astronomical $19 trillion public debt of Washington, the dollar still makes up 64% of all central bank reserves. The largest holder of US debt is the Peoples Republic of China, with Japan a close second. As long as the dollar is “king currency,” Washington can run endless budget deficits knowing well that countries like China have no serious alternative to invest its foreign currency trade profits but in US Government or government-guaranteed debt. In effect, as I have pointed out, that has meant that China has de facto financed the military actions of Washington that act to go against Chinese or Russian sovereign interests, to finance countless US State Department Color Revolutions from Tibet to Hong Kong, from Libya to Ukraine, to finance ISIS in the Middle East and on and on and on…

Multi-currency world

If we look more closely at all the steps of the Beijing government since the global financial crisis of 2008 and especially since their creation of the Asian Infrastructure Investment Bank, the BRICS New Development Bank, the bilateral national currency energy agreements with Russia bypassing the dollar, it becomes clear that Zhou and the Beijing leadership have a long-term strategy.

As British economist David Marsh pointed out in reference to the recent Paris Nanjing II remarks of Zhou, “China is embarking, pragmatically but steadily, towards enshrining a multi-currency reserve system at the heart of the world’s financial order.”

Since China’s admission into the IMF select group of SDR currencies last November, the multi-currency system, which China calls “4+1,” would consist of the euro, sterling, yen and renminbi (the 4), co-existing with the dollar. These are the five constituents of the SDR.

To strengthen the recognition of the SDR, Zhou’s Peoples’ Bank of China has begun to publish its foreign reserves total–the world’s biggest–in SDRs as well as dollars.

A golden future

Yet the Chinese alternative to the domination of the US dollar is about far more than paper SDR currency basket promotion. China is clearly aiming at the re-establishment of an international gold standard, presumably one not based on the bankrupt Bretton Woods Dollar-Gold exchange that President Richard Nixon unilaterally ended in August, 1971 when he told the world they would have to swallow paper dollars in the future and could no longer redeem them for gold. At that point global inflation, measured in dollar terms, began to soar in what future economic historians will no doubt dub The Greatest Inflation.

By one estimate, the dollars in worldwide circulation rose by some 2,500% between 1970 and 2000. Since then the rise has clearly brought it well over 3,000%.
http://journal-neo.org/2016/05/18/china-quietly-prepares-golden-alternative-to-dollar-system/

Any news about Brazil Goverment buying gold?
1992  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DBIC] DubaiCoin-DBIC دبي كوين on: May 17, 2016, 03:56:53 PM
DBIC njust needs two things:

1) More exchanges (Bittrex and Polo).
Request forms and twitter asking them to add BDIC

2) Dubai Newspapers DBIC coverage

Al Bayan (Dubai)
7days (Dubai)
The Arabian Post (Dubai)
Dubai Standard (Dubai)
Emirates Business 24/7 (Dubai)
1993  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ISR] Isracoin - The Israeli cryptocurrency - on: May 16, 2016, 04:57:46 AM
try to yobit  Cheesy

go for it
1994  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NKA] INCAKOIN l Perú l Launched Aug 2013 | Yobit - Cryptopia on: May 13, 2016, 12:52:00 PM
Was it in Incakoin that the Inca Empire paid tribute to Spanish conquistadors?   Cheesy

some info about what you are asking

https://en.wikipedia.org/wiki/Kingdom_of_Cusco




https://en.wikipedia.org/wiki/Inca_Empire




https://en.wikipedia.org/wiki/Spanish_conquest_of_the_Inca_Empire

1995  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NKA] INCAKOIN l Perú l Launched Aug 2013 | Yobit - Cryptopia on: May 11, 2016, 02:26:12 PM
Not comforting wall
Cry


no need to cry
that means that if someone invests (1.67 x $450) $751.5 your investment will make 500%
not bad rigth?

4,57 in total x 2 (for 2-4sat wall) = 9,14 BTC to break the wall.
But i interesting in development of this coin, and if amount will grow like it now, it will not appealing for investors...

why x2 ? it's only 4.57 btc on yobit and 1 btc to cryptopia to go to the moon  Cheesy

Because people will buy for 2 sat, and put order to sell for 3\4\5. About x2 for total buy.
p.s. sorry for my language)

1) sorry for my math, i tho it was the sum

2) investor means long term. especulators only care about price. Both will came but we prefer investors who believe in the project.
1996  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [GUA] GuaranyCoin | Brazil | Since Nov 2014 | Bleutrade | GuaCraft!! on: May 11, 2016, 02:18:29 PM

ShooterXD has made the translation to portuguese!!  Smiley


https://bitcointalk.org/index.php?topic=1468609.0
1997  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [GUA] GuaranyCoin | Brazil | Since Nov 2014 | Bleutrade | GuaCraft!! on: May 11, 2016, 02:14:13 PM

offtopic but could someone explain what is going on in Brazil?
http://www.nytimes.com/2016/05/02/world/americas/brazil-president-dilma-rousseff-impeachment-allies-alienated.html?_r=0


btw, the deadline for posting your candidature for the brazilian tranlation is in 2 days. Wednesday. 
The Brazilian gov are full of accusations about corruption involving the state-private company Petrobras we are talking about billions of dollars used for corruption.
 you  add to it a president unable to do a simple plan or a talk correct in public, all major corrupted-businessmans saying that president Dilma knew about all of this corruption schema and after all of this Dilma made some illegal transactions involving state bank, Central Bank and the Treasure.  Brazil right now is a mess.


Some people loves Dilma cause they think she is fighting for the poors and other hate cause the big corruption schema. Causing a division all over the country.

But is not just the goverment involved in this schema all parties and almost 2/3 of politics are under investigation including the opposition.

The people in Brazil are without hope and the economic scenario is worst since 1929

is sad to hear about corruption, but it's fucking everywhere...
that's why btc aplied to politics with change everything

Brazilian people should get prepared for a new bigger international crisis. Buy btc, alts, gold, silver...

Being part of the BRICS is helping anyway? new investments recently?
1998  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [TES] ϟ ϟ The Tesla ϟ ϟ Decentralize the Energy System ϟϟ Bittrex on: May 11, 2016, 09:43:40 AM
So do I need to encrypt my wallet before it will be ready for staking?

you should do that before sending any coin

Mayus, minus, symbol, number
1999  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [TES] ϟ ϟ The Tesla ϟ ϟ Decentralize the Energy System ϟϟ Bittrex on: May 11, 2016, 09:42:19 AM
http://omnichest.info/lookupsp.aspx?sp=50

the creator of teslacoilcoin scam, has 19919000.00
http://omnichest.info/lookupadd.aspx?address=1FwADyEvdvaLNxjN1v3q6tNJCgHEBuABrS
https://blockchain.info/address/1FwADyEvdvaLNxjN1v3q6tNJCgHEBuABrS

One of his transactions
Quote
1FwADyEvdvaLNxjN1v3q6tNJCgHEBuABrS                  149oYYAZ16g8Y2pG5EhfbRjJuADSWRRDcp        0.5 BTC
Public Note: SPECIAL OFFER ! SEND NOW 0.03 TO THIS WALLET AND GET 0.06 INSTANT ! OR SIMPLY CHOSE ANY MUTIPLIER & BTC AT GETxBTC.COM - ( THIS SPECIAL OFFER IS APPLIED ON YOUR FIRST DEPOSIT ONLY )

Seems he's involved in gambling
2000  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [TES] ϟ ϟ The Tesla ϟ ϟ Decentralize the Energy System ϟϟ Bittrex on: May 11, 2016, 09:17:20 AM

wtf!! Huh Huh

http://omnichest.info/lookupsp.aspx?sp=50
http://www.teslacoilcoin.com/

TeslaCoilCoin
that's a scam guys, dont touch it!

- No btctalk thread
- 100% premine

we should all write to c-cex asking for a answer.
They're probably wrong, and this TES is the one that is to be included

 


https://c-cex.com/?id=support

mail:
Type of issue: Other issue
Subject: Wrong TESLA added
Description:
Hi,
You have included the wrong TESLA in the exchange.
https://c-cex.com/?p=tesla-btc
That one is 100% premine, no btctalk thread. 100% scam.

The correct one is:
https://bittrex.com/Market/Index?MarketName=BTC-tes
https://bitcointalk.org/index.php?topic=778053.0
http://cryptoguru.tk/CurrencyInfo/index.php?Currency=TES


Pages: « 1 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 [100] 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 ... 172 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!