Bitcoin Forum
September 28, 2025, 11:48:57 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Invites & Accounts / Re: [wtb] torrent invites on: April 27, 2015, 11:15:00 PM
Send .1 BTC here 1Ny5ocZkweGbiAggJmPB6M4UizCqeQr7iZ
Send PM with an email address.
2  Economy / Digital goods / Re: [WTB] License Keys > Check Descreption on: April 27, 2015, 11:13:13 PM
Bitcoin only, this isn't a Wester Union forum.
3  Economy / Collectibles / Re: Want to buy Silver Coins for BTC on: April 27, 2015, 11:11:52 PM
You can probably buy 1 coind @ 1oz and a few coins weighing in the grams. Silver is around $16 an oz
4  Economy / Digital goods / Re: [WTB] All Torrent on: April 27, 2015, 11:10:26 PM
Send .1 BTC Here - 1Ny5ocZkweGbiAggJmPB6M4UizCqeQr7iZ
PM Me an email address.
5  Economy / Service Discussion / Re: Hash Profit has my BTC on: February 21, 2015, 03:10:42 AM
Well i'm on disability (60% of my income is covered). Needed those 2 BTC... Oh well... Such is life...


So I've been away for a few months (car accident, rehab, etc...). I've been going through my emails and see Hash Profit closed down. 2 BTC lost...
What happened to them?

they are gone, im sorry for your lost, hope this news dont make your situation worse
6  Economy / Services / Re: [CONTEST]Finders Fee for Theme on: February 21, 2015, 01:39:47 AM
One of my favorites -  http://theme-fusion.com/avada/
7  Economy / Service Discussion / Hash Profit has my BTC on: February 21, 2015, 01:32:42 AM
So I've been away for a few months (car accident, rehab, etc...). I've been going through my emails and see Hash Profit closed down. 2 BTC lost...
What happened to them?
8  Economy / Services / Re: High End Wordpress Install with Bitcoin Integration and WOO on: October 13, 2014, 12:11:19 AM
Bitcoin in WP? wow...
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - A secure, private, untraceable cryptocurrency (mandatory upgrade) on: October 08, 2014, 07:25:54 PM
Anyone use minergate for mining? They reliable?

No. You will find lots of stale shares and bad overall pool efficiency at minergate.
You're far better off using http://dwarfpool.com/xmr  or http://monero.crypto-pool.fr



Is 2KH/s worth it? I found a calculator online and it shows 1.5 XMR per day at my KH. Is that even correct?
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - A secure, private, untraceable cryptocurrency (mandatory upgrade) on: October 08, 2014, 07:08:00 PM
Anyone use minergate for mining? They reliable?

https://minergate.com/a/41144686ae3ab5b0
11  Economy / Scam Accusations / Re: I was just scammed on: October 07, 2014, 09:11:15 PM
Let's not blame the victim here. I've been scammed and yes it's a very hard lesson in life to learn. All of us learn harsh lessons in life one way or another. Be glad you didn't lose thousands of dollar but by your posting the money you lost is probably all the money in the world to you.

I don't have a lot but I want to help. PM me, i'll send you a little something  Grin

Everyone, be patient and be kind. Let's keep this community positive. We all have been scammed or hurt in the past. Let's not blame the victim. Things like this happen. Let's help this person out. Instead of belittling this person and telling him how stupid/young/whatever he is, let's chip in. This is a community. Let's act like a community. I'm not rich, but if I send him .1 BTC, then I've made a difference and I think it can certainly help him out. I think you all should follow my advise and spread goodness.

Remember, we were all "Noobs" once Smiley


12  Other / Meta / Giving away code for this site - donations optional on: October 05, 2014, 09:11:46 PM
Ever wonder how many unique posters there are on a thread here? or how many posters posted more than once? Or maybe how many posters posted more than say 10x ?
Well, below is a python script for you to use. It's free to use!!! Just please donate because i'm in college and barely make ends meet.

Donate BTC here - 1E7uApuRk3KJAX1M4bYrpDguiTtHxoUFfj


Code:

import requests as req
 
 
# URL of the first page of target BTCtalk thread
targetURL = "https://bitcointalk.org/index.php?topic=788916.0"
 
# List variables used for collecting information
masterList = []
tempList = []
oldTempList = []
 
# While loop that keeps querying thread until reaches repeat of users
while True:
    try:
        print(targetURL)
        r = req.get(targetURL)
        textList = r.text.split('\n')
        for line in textList:
            if "View the profile of" in line:
                # print(line)
                user = line.split('View the profile of ')[1].split('">')[0]
                # print(userName)
                if not user.isdigit():
                    tempList.append(user)
        if tempList != oldTempList:
            for i in tempList:
                masterList.append(i)
        else:
            break
           
    except:
        break
    # Increment the URL to next 20 posts
    listURL = targetURL.split('.')
    listURL[3] = str(int(listURL[3])+20)
    targetURL = '.'.join(listURL)
    # Set oldTempList to templist, so if they're equal break loop
    oldTempList = tempList
    tempList = []
 
# Create sorted set of unique entries in masterList   
setList = sorted(set(masterList))
 
# Create list of people that posted more than once and ten times
doubleList = []
tenList = []
for i in setList:
    # print(i, rawList.count(i))
    if masterList.count(i) > 1:
        doubleList.append(i)
    if masterList.count(i) > 9:
        tenList.append(i)
       
# Write data to file
f = open("userStats.txt", 'w')
f.write('{0:30s} {1:5d}\n'.format("Total number of posts: ", len(masterList)))
f.write('{0:30s} {1:5d}\n'.format("Total number of unique posters: ", len(setList)))
f.write('{0:30s} {1:5d}\n'.format("Total number of posters more than once: ", len(doubleList)))
f.write('{0:30s} {1:5d}\n'.format("Total number of posters at least 10x: ", len(tenList)))
f.write('{0:20s} {1:15s}\n'.format('Username',   'number of posts'))
for i in setList:
    f.write('{0:20s} {1:5d}\n'.format(i, masterList.count(i)))
f.close()
print("Done")
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] QIBUCK COIN - X13 - POS/POBH - 1st Proof of Baghold and asset backed. on: October 04, 2014, 03:26:25 PM
I'm concerned. I'm going to sell my coins. If all this coins do to promise profit is mining and trading other coins then there is no future in qbk. I'm sorry, but this is too much of a gamble for me.
What if they have a bad day or week or month of trading, then there will be no profits for the investors but I bet the core team will still get paid.

This is a ponzi scheme. It's using future traders to buy into this coin. It's like what this crook Bernie Madoff did...
Good bye group. Nice knowing you and good luck to the rest of you.

Even if all the QBK holders sold their coins, we would still have assets left but you are most welcome to go and invest in another coin of your choice, we hold no one with a ball and chain. We will give a list of all wallets holding the assets at the end of the monthly audit date and after we have paid all the bagholders.

I sold what I had in several batches, only had a little over 400 coins. If ponzi scheme is not the right term, then my limited english is prohibiting me from coming up with the right term.
If all QBK holder sold coins, then you wouldn't have to pay people monthly dividends which would be great for you. Your assets are based on your trading strategies and betting you would make money on those trades. I understand you have some reserves which can cover loses but how far can you go with that if crypto markets go into  downward trends and you cant execute profits on trades.
And you did take time off, you took a holiday in August to move. Just wondering where that money came from?
This will be my last post on this qibuck forum thread. being told not to leave criticism is like removing freedom of speech. I live in a country which prohibits freedom of speech and I can't wait to move.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] QIBUCK COIN - X13 - POS/POBH - 1st Proof of Baghold and asset backed. on: October 03, 2014, 10:49:51 PM
I'm concerned. I'm going to sell my coins. If all this coins do to promise profit is mining and trading other coins then there is no future in qbk. I'm sorry, but this is too much of a gamble for me.
What if they have a bad day or week or month of trading, then there will be no profits for the investors but I bet the core team will still get paid.

This is a ponzi scheme. It's using future traders to buy into this coin. It's like what this crook Bernie Madoff did...
Good bye group. Nice knowing you and good luck to the rest of you.
15  Economy / Digital goods / Re: Selling Microsoft keys(bulk orders) on: September 27, 2014, 07:37:39 PM
Anything for mac OS - microsoft office for mac?
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos on: August 24, 2014, 10:35:43 PM
Hi All,

New to this coin but not to crypto. A lot of positive stuff. I bought some coins on Poloniex on Friday and again on Saturday. They're in my wallet and are staking (I hope - Followed directions and it says 3 days to see a reward).
17  Economy / Digital goods / Re: WTB Watch Dogs PC Game on: August 24, 2014, 02:46:37 PM
It retails for $39.99 - give me your best price. I just bought a gaming laptop for 3 BTC.
18  Economy / Digital goods / WTB Watch Dogs PC Game on: August 24, 2014, 01:18:25 PM
Hi,

I know some of you buy Video Cards for mining and get free games with it. Was wondering if anyone would be willing to part with the game and/or the key to download it?
Let me know your price.

P.S. Not paying full retail price Smiley
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!