Bitcoin Forum
May 26, 2024, 05:52:26 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 ... 109 »
141  Economy / Auctions / EXCLUSIVE :: #1 GOOGLE RANK :: btcwidgets.com - All original, and custom coded on: October 29, 2016, 03:21:42 AM
1st Page Google result for: bitcoin widget

BTCWIDGET.COM IS FOR SALE!
The top source for Bitcoin website widgets.

#1 Google result for: custom bitcoin widget

#2 Google result for: free bitcoin widget

1st Page Google result for: bitcoin donation widget


Includes both domain, and website files.
I wrote this site from scratch, and is 100% custom coded by myself.


Bidding starts at 2 BTC.

Auction ends November 6th at this time (https://www.timeanddate.com/countdown/to?iso=20161106T00&p0=770&font=cursive)



Code:
Domain Name: btcwidget.com                                                                     
                 
Registry Domain ID: 5460541_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.onlinenic.com
Registrar URL: http://www.onlinenic.com
Updated Date: 2016-05-15T18:09:25Z
Creation Date: 2015-06-02T04:00:00Z
Registrar Registration Expiration Date: 2017-06-02T04:00:00Z
Registrar: Onlinenic Inc
Registrar IANA ID: 82
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone: +1.5107698492
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: Kyle Honeycutt
Registrant Organization: None
Registrant Street: Spring Street
Registrant City: La Mesa
Registrant State/Province: CA
Registrant Postal Code: 91941
Registrant Country: US
Registrant Phone: +1.7606967004
Registrant Phone Ext:
Registrant Fax: +1.7606967004
Registrant Fax Ext:
Registrant Email:

Bidding starts at 2 BTC.

Auction ends November 6th at this time (https://www.timeanddate.com/countdown/to?iso=20161106T00&p0=770&font=cursive)

No neg trust, no newbs.
I reserve the right to reject a bid based on who the user is.
142  Bitcoin / Development & Technical Discussion / Re: Do you guys know about alternative for JSON-RPC? on: October 25, 2016, 03:07:52 AM
The JSON-RPC commands are for controlling and communicating with a node and it's wallet, so you must host at least a pruned blockchain in order to use it. As Achow already mentioned you should look at using API requests with a 3rd party like block.io, blockchain.info, blocktrail, or blockcypher.
143  Bitcoin / Bitcoin Discussion / Re: What is Bitcoin Forum IP address? on: October 18, 2016, 02:00:25 AM
When I tried it earlier...
Code:
ping bitcointalk.org

Pinging bitcointalk.org [107.21.115.227] with 32 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.

Ping statistics for 107.21.115.227:
    Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

Checks out, that's bitcointalk alright!  Cheesy
144  Bitcoin / Project Development / Re: Bitcoin Tipping Addresses - New Bitcoin Addresses for every donation on: October 17, 2016, 04:10:46 AM
I wasn't expecting to see this done in Java. Very cool Achow, I like it!
145  Bitcoin / Project Development / Re: Making an open-source preev-like site. Anyone interested in helping out? on: October 16, 2016, 03:27:04 PM
Er... i've got it working for now, however it's still primitive, it get's the value after every keypress.

Looks to be working for the BTC/USD. Only one direction, it doesn't reverse if the user enters in a USD amount.

Here's a very simple version that just uses javascript for everything and runs on the client side.
https://jsfiddle.net/yb4ot795/
Seems pretty fast without having to cache or store anything in a database. 
146  Bitcoin / Development & Technical Discussion / Re: Adding bitcoin deposit to website on: October 16, 2016, 03:10:52 PM
Can you describe a little more about your use case?

If you just want to receive bitcoins for donations you can simply through a QR code of your address on your site.

If you're looking to process payments for selling items and services then things start to get a little more complicated. Most people go with a third party service to make the integration a little easier. So paying a fee is for the convenience of not having to code your own solution from scratch. There are some options that don't take a fee, but you'll need to know how to do some development on your own.   

If you're looking to accepting deposits for users so they can buy/sell/gamble bitcoin with other users on your site then it gets even more complicated.

Hello, I'm looking for accepting deposits from users, the 3rd party service is the last choice.

You'll need to run bitcoind on a VPS - most 3rd parties aren't okay with being the backbone to gambling sites.
Use bitcoind's JSON-RPC to communicate with the wallet and your web server.
Create a member login system where every new user is assigned a unique address from your bitcoind wallet.
Use walletnotify to monitor for new deposits.
On new deposits compare the receiving address to your database of users to identify which user deposited funds and credit their account accordingly.

It might be a selfish promotion, but my book goes over how to do this. The last chapter is creating a game with bitcoind and how to accept deposits.
147  Bitcoin / Development & Technical Discussion / Re: Adding bitcoin deposit to website on: October 16, 2016, 03:15:47 AM
Can you describe a little more about your use case?

If you just want to receive bitcoins for donations you can simply through a QR code of your address on your site.

If you're looking to process payments for selling items and services then things start to get a little more complicated. Most people go with a third party service to make the integration a little easier. So paying a fee is for the convenience of not having to code your own solution from scratch. There are some options that don't take a fee, but you'll need to know how to do some development on your own.   

If you're looking to accepting deposits for users so they can buy/sell/gamble bitcoin with other users on your site then it gets even more complicated.
148  Bitcoin / Project Development / Re: Making an open-source preev-like site. Anyone interested in helping out? on: October 16, 2016, 03:07:01 AM
Added source to OP. Please feel free to make a pull request! What I really need most is help with JavaScript!

(If you have any ideas at all, please suggest! Don't care if they're bad!)
Bro,literally you've too much of dependencies for a app as simple as this.Correct me if I'm wrong but what are the node modules for ? Perhaps the python lib for the price ticker that is
Code:
         response = urllib2.urlopen('https://api.cryptonator.com/api/ticker/btc-usd') 
is more than enough,no ? I'd suggest you we start from scratch again.Are you connected with the account SirLagsAlot anyway ? Nevermind your gh,says that.

Holy smokes! Python, PHP and NodeJS? There really is no reason to have 3 different server-side languages running at once. If you want one of your features to be "faster than preev" you'll need to cut down on the bloat. For example your node_modules directory is full of modules you aren't using.

What are you most experienced in? I'm guessing PHP based on the current source... My suggestion is you pick one server-side language and go with that, don't jump back and forth.

You can create one file that grabs all the necessary prices every N seconds and then stores them in a database. Then when doing the calculations for the users just pull from the database. You'll have the speed you want, and you won't have to worry about exceeding API request limits with the exchanges you are hitting.

Quote
I know the js to get the price to auto-update into a div, however for me it refuses it auto-update in the input box

For updating a div you typically do something like:

Code:
var myTarget = document.getElementById("myDiv");
myTarget.innerHTML = "My Text";

For updating an input box you need to change it from innerhtml to value.

Code:
var myTarget = document.getElementById("myInputBox");
myInputBox.value = "My Text";


I figured as much. I was told by a friend that PHP when compared to others is extremely slow, so I figured i'd make the base site out of php, then use javascript for clientside.

My python bot basically saves the output into a json. I could make a PHP bot but essentially it would be the same thing.

I know how to change the value of the input, but i've tried putting it into a function and getting json to call it repeatedly. It doesnt work. Maybe i'm missing something? Would you like me to make a jsfiddle?

Yea if you can put it in a JSfiddle I can help you get it working.
149  Bitcoin / Project Development / Re: Making an open-source preev-like site. Anyone interested in helping out? on: October 15, 2016, 04:55:49 PM
Added source to OP. Please feel free to make a pull request! What I really need most is help with JavaScript!

(If you have any ideas at all, please suggest! Don't care if they're bad!)
Bro,literally you've too much of dependencies for a app as simple as this.Correct me if I'm wrong but what are the node modules for ? Perhaps the python lib for the price ticker that is
Code:
         response = urllib2.urlopen('https://api.cryptonator.com/api/ticker/btc-usd') 
is more than enough,no ? I'd suggest you we start from scratch again.Are you connected with the account SirLagsAlot anyway ? Nevermind your gh,says that.

Holy smokes! Python, PHP and NodeJS? There really is no reason to have 3 different server-side languages running at once. If you want one of your features to be "faster than preev" you'll need to cut down on the bloat. For example your node_modules directory is full of modules you aren't using.

What are you most experienced in? I'm guessing PHP based on the current source... My suggestion is you pick one server-side language and go with that, don't jump back and forth.

You can create one file that grabs all the necessary prices every N seconds and then stores them in a database. Then when doing the calculations for the users just pull from the database. You'll have the speed you want, and you won't have to worry about exceeding API request limits with the exchanges you are hitting.

Quote
I know the js to get the price to auto-update into a div, however for me it refuses it auto-update in the input box

For updating a div you typically do something like:

Code:
var myTarget = document.getElementById("myDiv");
myTarget.innerHTML = "My Text";

For updating an input box you need to change it from innerhtml to value.

Code:
var myTarget = document.getElementById("myInputBox");
myInputBox.value = "My Text";
150  Bitcoin / Project Development / Re: Making an open-source preev-like site. Anyone interested in helping out? on: October 15, 2016, 03:40:00 AM
I need help with the JavaScript. I have already set up backend price chaching. I just need help with innerhtml.

What parts of the JavaScript do you need help with? By innerhtml, do you mean doing the live interaction with the user? Here's a super basic barebones example I put together with just BTC/USD that might help.

https://github.com/coinables/Bitcoin-USD-Price-Conversion-Tool/blob/master/js/price.js

151  Economy / Micro Earnings / Re: Open Sourced Faucet with Dice Script on: October 15, 2016, 03:15:07 AM
I want to integrate a Xapo payout on this. Is that possible, OP? Or it was only designed to payout to faucetbox?

It might be possible, I've never used Xapo. It was designed to only payout via faucetbox, but the code that is faucetbox specific is only a few lines so it could modified rather easily.
152  Bitcoin / Project Development / Re: Keza: Free Stock trading app powered by Bitcoin on: October 01, 2016, 06:58:13 PM
Can't use via web or android... Apple app store only.  Sad
I'd try it out but I'm not going to purchase a product to try out a service.
You guys need additional on-ramping platforms.
153  Other / Beginners & Help / Re: where the bitcoin address with the letter 3 in front? on: September 29, 2016, 02:05:13 AM
Are you asking why do some bitcoin addresses start with the number 3?

These are pay to script hash addresses, abbreviated as P2SH. More commonly they are known as multi-signature addresses.

https://en.bitcoin.it/wiki/Pay_to_script_hash
154  Bitcoin / Project Development / Re: [Prototype phase] Orderbook Dynamics Charts (useful for HFT/algo analysis) on: September 29, 2016, 01:52:39 AM
Very unique and interesting implementation! You go through about why they are different colors, but why are some lines longer than others? Is it the time that the order is available, and when it ends the order was removed?
155  Bitcoin / Project Development / Re: Bitcoin deposit detection without bitcoind? on: September 23, 2016, 01:51:29 AM
Bite the bullet and use a server with bitcoind, trust me, you'll thank me later.  Webhosted API's have limitations, are often targeted by DDoS attacks, and will sometimes go offline for maintenance/upgrades.  Run a node, be part of the community.

However, here's php code to monitor using a web service:
Code:
<?php
function getBalance($address) {
    return 
file_get_contents('https://blockchain.info/q/addressbalance/'$address);
}

echo 
'Address Balance: ' getBalance('1CK6KHY6MHgYvmRQ4PAafKYDrg1ejbH1cE');
?>
(You'll need to format the output, etc for the decimal places, etc)

Cloverme is right, definitely go with running bitcoind.  Especially since you are creating a gaming site, a 3rd party API will likely shut you down as they don't want to be pulled in to any legal issues for being your service provider.

As for "deposit detection" with bitcoind you can use the walletnotify feature and it will instantly run whatever code you want when new transactions are received. https://www.youtube.com/watch?v=o4BPt4RXOm4
156  Bitcoin / Bitcoin Technical Support / Re: how to sign a transaction and not broadcast them? on: September 21, 2016, 03:38:01 AM
If you don't have a fully synced bitcoin core you can also use a 3rd party service like coinb.in that will let you go through all the steps of a raw transaction. So you can create, sign and broadcast, or in your case create, sign and not broadcast.
157  Bitcoin / Project Development / Re: Website with live bitcoin price, conversion and recent orders on: September 07, 2016, 01:31:18 AM
Site look clean and good but rather than using php codes to calculate price here http://www.bitcoin-price.live/usd_btc.php
you could have used java making it responsive, loading whole page to just see results doesn't make much sense these days.

I think you mean javascript.
Which, by the way is relatively simple. If anyone is interested in a simple guide: https://coinables.github.io/
158  Bitcoin / Project Development / Re: Website with live bitcoin price, conversion and recent orders on: September 05, 2016, 03:09:34 AM
Nicely done!
I like that you added a widget too.
Personally I don't like the CSS animations, but that's just me.
Keep it up!  Smiley
159  Bitcoin / Project Development / Re: Help setting up a moneypot dice page on: September 01, 2016, 12:53:13 AM
Here's a walk-thru tutorial that should help: https://www.youtube.com/watch?v=xqOF9C7IwFc

I haven't used it in a while, but I'm pretty sure the setup is still mostly the same.


Awesome, Thank you so much man. I'm kind new to the whole bitcoin thing, we are a team of xbox modders (RGHers) and we thought it would be cool to have a gambling page and players with most wagered every week would win a free modded console from us.


No problem! Based on your 404 error I'm guessing your issue is in the app.js, either with the redirect URI or the https auto redirect, so right around the 5 minute mark on this video.
160  Bitcoin / Project Development / Re: Help setting up a moneypot dice page on: September 01, 2016, 12:41:01 AM
Here's a walk-thru tutorial that should help: https://www.youtube.com/watch?v=xqOF9C7IwFc

I haven't used it in a while, but I'm pretty sure the setup is still mostly the same.
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 ... 109 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!