Bitcoin Forum
May 17, 2024, 06:06:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 ... 276 »
2281  Economy / Service Discussion / Re: accessing coinbase API using node.js on: May 07, 2017, 06:40:11 PM
Try the following code and let me know if that works.I don't really want to run the app locally so it will be better if you add on skype or something,much better to solve in real time.
Code:
client.getAccounts({}, function(err, accounts) {
  accounts.forEach(function(acct) {
    console.log(acct.name + ': ' + acct.balance.amount + ' ' + acct.balance.currency);
    acct.getTransactions(null, function(err, txns) {
      txns.forEach(function(txn) {
        console.log('txn: ' + txn.id);
      });
    });
  });
});

Yes that API keys should be passed a string only.

The error occurs at this line
Code:
accounts.forEach(function(acct) {
the extra code added comes after the error occurs and the app has already crashed.
Pretty sure you're doing something wrong.Have tested the network part in the console ? Is it receiving any data back ? Want me to take a look through teamviewer ? Otherwise I'll implement it locally tomorrow and check where you're going wrong..
2282  Other / Meta / Re: [Suggestion] Welcome PM for newbies on: May 07, 2017, 06:37:04 PM
I am seeing that as more and more newbies continue to join the forum, they start posting the same posts "How can I earn bitcoins", "New to bitcoins",etc. So I think that there should be an automated personal message that would be sent to new registered accounts, having link to important stickied and such posts' answers.
Agree.A message with links to common and frequently asked questions like 'activity/post info' should be sent to the newbie account.Too much spoon feeding though.If you're not a 12 year old trying to be cool,you can probably figure that information out yourself.
2283  Other / Meta / Re: Where i buy advertising on this forum ? on: May 07, 2017, 06:33:59 PM
Hi i want to buy advertising for month and be the top banner above all
where i buy it immediately ?
-> There is no top banner above all.Do you see advertisements anywhere else floating vertically or horizontally ? Just one add spot is used which as linked above can be won in the auctions.
->It doesn't happen immediately,wait for the next auction round.
2284  Economy / Trading Discussion / Guide to Marginal Trading on poloniex ? on: May 07, 2017, 06:28:06 PM
Recently started buying alts on poloniex (xmr to be specific).I've two options,either buy and let the price peek or trade it marginally.If any experienced traders are around,mind letting me know the do's and dont's of marginal trading on poloniex ?
2285  Economy / Scam Accusations / Re: Got scammed on localbitcoins.com on: May 07, 2017, 05:50:55 PM
LBC should help you to track this user as his details have been verified and now his account has been banned by the staff.
They don't give a shit.They have mentioned it everywhere on the site,trade at your own risk.

That's the reason LBC and all these online trading sites cannot be trusted as reputed members sell their accounts and then you cannot verify the original owner. Sorry for your loss sardasa.
You can always verify the original owners but asking to sign messages from an address or checking their previous trades on LBC.
2286  Other / Archival / Re: Grab graphics from a game. [50$] on: May 07, 2017, 01:34:45 PM
Something like this ?
2287  Economy / Service Discussion / Re: accessing coinbase API using node.js on: May 07, 2017, 10:56:07 AM
Try the following code and let me know if that works.I don't really want to run the app locally so it will be better if you add on skype or something,much better to solve in real time.
Code:
client.getAccounts({}, function(err, accounts) {
  accounts.forEach(function(acct) {
    console.log(acct.name + ': ' + acct.balance.amount + ' ' + acct.balance.currency);
    acct.getTransactions(null, function(err, txns) {
      txns.forEach(function(txn) {
        console.log('txn: ' + txn.id);
      });
    });
  });
});

Yes that API keys should be passed a string only.
2288  Economy / Services / Re: BitDice Casino Signature Campaign [WILL START 1 DECEMBER] on: May 07, 2017, 10:24:01 AM
Since other campaigns are having to reduce their payrate for the weekly payments to their campaigners
will this campaign follow suit along those lines as well?
Which other campaigns except Crypto-Games ?

Even if you do decide to do this
I would still would like to be considered if you do offer a lower rate of pay per week for participating in this campaign. Just to be able to reserve a spot to be a part of it I am willing to consider to be paid less so to be selected as a participant.
So you want the campaign to reduce payments for all the participants just you can get a spot in the campaign? Who are you ? Bitcoin  Core Developer ?

If accepted I will apply the signature and avatar to my profile immediately upon receiving an acceptable from either the campaign manager BoxxoB or from the owner of the site Bitdice.
On acceptance,owner will privately send you an invitation for the Inaugural Ceremony of the campaign.

I would be appreciated if I was considered for the most Covenanted spot in a campaign on the forums thus far.
2289  Economy / Service Discussion / Re: accessing coinbase API using node.js on: May 06, 2017, 07:31:15 AM
I'm having problems doing the simplest tasks such as displaying balance. I'm no pro at node.js but I think I should know enough to do this. Is anyoine familiar with the coinbase node.js API?

 Their website contains some basic code for listing accounts but this always returns NULL when I run it:

        var Client = require('coinbase').Client;
        var client = new Client({'apiKey': 'myApiKeyHere',
                         'apiSecret': 'myApiSecretHere'});

        client.getAccounts({}, function(err, accounts) {
          console.log(accounts);
        });
->Make an account at coinbase,did you ?
-> Open the following link once logged in : https://www.coinbase.com/settings/api
->Click + New Api Key ->Enter your password ->Select all API wallets for which you suppose to write the code.
->Under Permissions : Tick whatever that applies for your application:
Code:
wallet:accounts:create wallet:accounts:delete
wallet:accounts:read wallet:accounts:update
wallet:addresses:create wallet:addresses:read
wallet:buys:create wallet:buys:read
wallet:checkouts:create wallet:checkouts:read
wallet:contacts:read wallet:deposits:create
wallet:deposits:read wallet:notifications:read
wallet:orders:create wallet:orders:read
wallet:orders:refund wallet:payment-methods:delete

Depending on your selection the API would get the details.After clicking create,you will be have a pop-up which displays your API key and API secret.Something like,
Quote
API Key details
NOTE: Please store these credentials in a safe place. For your protection, we will not show them again. If you misplace your API key, you should delete this API key and generate a new one.


API Key: DqpXhGBhLAbXdW40y

API Secret: YWPcmKSbKtqgS7do49t5kBiSyA0D397C

In your code,replace the values with the keys like
Code:
var Client = require('coinbase').Client;
var client = new Client({'apiKey': DqpXhGBhLAbXdW40y, 'apiSecret': YWPcmKSbKtqgS7do49t5kBiSyA0D397C});
You need an account Id for displaying balance and passing that id as a parameter.You need to write code for that,
Code:
//Should return accounts along with the ID
var coinbase = require('coinbase');
var client   = new coinbase.Client({'apiKey': DqpXhGBhLAbXdW40y, 'apiSecret': YWPcmKSbKtqgS7do49t5kBiSyA0D397C});

client.getAccounts({}, function(err, accounts) {
  accounts.forEach(function(acct) {
    console.log('my bal: ' + acct.balance.amount + ' for ' + acct.name);
  });
});

Displaying Balance from an account :
Code:
//Use the ID returned from above function and pass in that <Account ID> parameter
var coinbase = require('coinbase');
var client   = new coinbase.Client({'apiKey': DqpXhGBhLAbXdW40y, 'apiSecret': YWPcmKSbKtqgS7do49t5kBiSyA0D397C});

client.getAccount('<ACCOUNT ID>', function(err, account) {
  console.log('bal: ' + account.balance.amount + ' currency: ' + account.balance.currency);
});
That should be enough to display an account balance.

My Bitcoin address : 17HyAaFmjECaAsQJjWvevqtxb8GA44nxmd

Does anyone have any experience with using this API? I'm willing to offer a $15 tip or more in btc if someone can help me with this API and some of the other node.js APIs. If you are willing to teach me this stuff for a higher fee then feel free to PM me about it. But I'm running on a low budget so I'm not in a position to pay the price of hiring a professional node.js developer.

Send me a message .I'll be more than happy to teach you things.
2290  Economy / Services / Re: Need help setting up trade bot Windows MongoDB and Docker (may need Linux?) on: May 06, 2017, 05:26:36 AM
Sent you a PM.Can do this easily.
2291  Bitcoin / Project Development / Re: [BOUNTY] Name for new Exchange. on: May 03, 2017, 12:18:24 PM
Here's some ideas:

Decentralex, Decentrex, Decentex

Don't know if you understood Op's post that you were suppose to submit the names on the mentioned link but your submissions are too funny.

Rainex, Rankex, Waxex.

Lmao I giggled.Sorry but those look like 3 evolutions of a Pokemon.Waxex being the strongest lol
2292  Economy / Gambling / Re: BITDICE - 🎲🎲🎲 THIS WEEK 105BTC GOES TO ASH AND 75BTC TO SOOP! 🎰🎰🎰 on: May 03, 2017, 12:12:09 PM

Well alts are needed, we are experiencing a high traffic transactions in btc resulting to a large volume of unconfirmed tx making confirmations slow thus hindering people to gamble in btc.

https://blockchain.info/unconfirmed-transactions

The site can also generate profit from the staking feature of stratis.

But it is up to the management.
Makes sense.Although adding the alts would make it one way easier,you would be still stuck with the unconfirmed transactions on the journey of your coin while converting back into bitcoins from the exchanges.Notable alts like Eth,Dash,Doge should be added mandatory as they're doing quite well and are stable.
2293  Other / Meta / Re: THE ANSWER TO THE SIGNATURE SPAM PROBLEM !!! on: May 03, 2017, 11:49:01 AM
The answer is very simple, from now on:

Only start moderated threads
Only converse in moderated threads
Simply delete all signature spam posts
Eventually all the signature spammers will die off
Eventually the entire market for farmed accounts will die off
We can still have signatures
But we will not have to put up with people that do not read the thread

Voilą!  Bitcointalk becomes a useful, clean, happy place once again.
Did you forget to mention ,'Start your Own forum' and Voilą  you never have to log onto bitcointalk ever again ? That seems like the most feasible solution if you only wanted to converse with 'like minded signature hating individuals'.

On a serious note : Concerned people are taking steps to reduce the forum spam. Lauda,Lutpin,(SMAS) to mention a few.
2294  Economy / Scam Accusations / Re: BITCASINO.IO IS SCAM on: May 03, 2017, 10:29:38 AM
100% SCAM, I LOSE 15$, I BET MARTINGALE 7th and lose
Playing with martingale doesn't mean that you will win, i think you got 7 loss streak on series that's why you are calling them scam. You can verify your every results as they provide probably fair games.
haha let's excuse your shit posting for a minute.Now what do you know about bitcasino.io or anything about their games ? Your blind signature posting may cause people to get scammed again.Before posting your opinions,please take a moment to research about the casino accused by the OP.
To answer your question : They're a scam.They cheat with their games an it has been proved numerous times.Take a minute to spread awareness and encourage as many people to stop playing there.
2295  Economy / Services / Re: Whatsapp Bot on: May 03, 2017, 10:04:08 AM
if you want to discuss then you can join me on WhatsApp as there you can also have the working view of the bot. and by the way if i get some good developers then i might be not selling it instead of this i would like to develop if even more.
Seems fair.So if it all works out,are you planning to open-source the code ? We can develop it together and make it a perfect solution for whatsapp trading groups.How should I join you on whaatsapp ? Please message me your details or telegram details.I'd like to get in touch.
P.S. : Developer here,with love for automation.
2296  Economy / Gambling / Re: ♛ BitCasino.io - YOUR BTC CASINO! 1,000+ games, Bonuses, Lotteries, Live Games ♛ on: May 03, 2017, 08:57:57 AM
@Game Protect : Don't you think the scams are going out of hand and it's finally time to put them to an end ? Do you think deleting their threads from bitcointalk would be any help ? We should publish articles about this on the reputed blogs.Another one https://bitcointalk.org/index.php?topic=1898493.0

I'll later message the DT members to tag them with as many negative points as possible,hopefully that should server as a warning.
2297  Economy / Services / Re: Whatsapp Bot on: May 03, 2017, 08:53:30 AM
Interesting.How did you do it ? It there a page I can fork on github ?
This replies on web whatsapp right ? I want to know the technical side of the bot.How you have managed to automate stuff ? I'm guessing it's python + mechanize + beautiful soup,but I could be wrong.Please inbox me the technical details if it's too private to post online.And no I'm not planning to buy the bot,I want to make one of my own.Thanks!
2298  Other / Meta / Re: New Wave of Phishing Emails on: May 02, 2017, 07:22:14 PM
I can sort of establish a connection.The attacker is probably sending mails to coin collectors who are assumed to be having more bitcoins on them ? Lauda and Zepher is merely a case but it does connect the dots.
2299  Economy / Scam Accusations / Re: BITCASINO.IO IS SCAM on: May 02, 2017, 06:43:45 PM
100% SCAM, I LOSE 15$, I BET MARTINGALE 7th and lose
Do you guys even do research before blindly putting money on the casinos ? Bitcasino.io,sportsbet.io and vegascasinio.io are scams running in the bitcoin gambling business.Please spread awareness.Stop playing there.
2300  Economy / Gambling / Re: ⚽ Sportsbet.io 💰 APRIL 25,000+ mBTC Leaderboards ⚽ Regular moneybacks ⚽ on: May 02, 2017, 06:40:23 PM
--shut the fuck up you shill fuck--
You're an ignorant and another paid shill of sportsbet.io.How much they pay you to back them up ? Oh btw can you see their trust or you're still blind by the bribes they send you periodically ? If you think your arguments even make 1% sense,please message the DT members and see if they remove the trust.
I haven't been posting here lately but now I'll personally advice people to not use sportsbet.io or any of your btcantonio scam agency sites.
Pages: « 1 ... 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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 ... 276 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!