Bitcoin Forum
June 21, 2024, 12:28:08 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 [6]
101  Economy / Service Announcements / Re: CoinBomb.com has just launched! on: May 24, 2013, 05:20:59 PM
This looks very similar to the Bitcoin Gem (http://bitcoingem.com/).

Good luck!

102  Other / Beginners & Help / Re: Hello I'm new on: May 24, 2013, 05:17:45 PM
Welcome to the forum.   Smiley

103  Other / Beginners & Help / Re: Satoshi's posts on: May 24, 2013, 05:16:37 PM
There's a link to Satoshi's profile and whitepaper on our site BitcoinMoxy.com

104  Other / Beginners & Help / Re: I have lost bitcoins on bitcoinlaundry.com on: May 24, 2013, 05:14:17 PM
Always be wary of such services and send money in increments, check to see if the money arrives before sending any more.

And yes, SR has been reliable so far.

105  Other / Beginners & Help / Re: hi on: May 24, 2013, 05:09:08 PM
Welcome.

106  Other / Beginners & Help / Re: lost 260 btc through blockchain shared wallet :( on: May 24, 2013, 05:05:00 PM
This issue was resolved with fly.

nice.
107  Other / Beginners & Help / Re: Paying .1 BTC for simple Javascript fix on: May 24, 2013, 03:50:57 PM
Hold on. Let me have a look at this.



108  Other / Beginners & Help / Re: Paying .1 BTC for simple Javascript fix on: May 22, 2013, 06:47:48 PM
Thanks for the contribution, solution #1 looks perfectly good to me but it doesn't work the way I want it to work.
I've been trying the code, rewriting it a little, etc. but it keeps doing what it wants.
Sometimes it works, sometimes it doesn't. (Programming languages just don't come natural to me).

What I want it to do is this:

- create a QR code with a default error message in the QR as defined in var error whenever the input
      -is less than 25 characters in length
      -has any non-BASE58 characters in it

else, create the QR for a valid Bitcoin (or any altcoin address) using create_qrcode(text).

Make me a quote for payment along with the solution (but stay within reason, please).


Here's the code in qrconf.js after trying out different things (the original one is still up on the site):

Code:
var draw_qrcode = function(text, typeNumber, errorCorrectLevel) {
document.write(create_qrcode(text, typeNumber, errorCorrectLevel) );
};

var error = "Try Again!";
var text = document.forms[0].elements['msg'].value;

var create_qrcode = function(text, typeNumber, errorCorrectLevel, table) {

var qr = qrcode(typeNumber || 4, errorCorrectLevel || 'H');
qr.addData(text);
qr.make();

// return qr.createTableTag();
return qr.createImgTag();
};


var update_qrcode = function() {
var text = document.forms[0].elements['msg'].value;

if (text.length < 25) {
document.getElementById('qr').innerHTML = create_qrcode(error);
}

if(text.match(/[^123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]+/g)) {
document.getElementById('qr').innerHTML = create_qrcode(error);
}

else {
document.getElementById('qr').innerHTML = create_qrcode(text);

};


};



I don't get why it doesn't work.. what am I doing wrong?

Thanks in advance

109  Other / Beginners & Help / [DONE] Paying .1 BTC for simple Javascript fix on: May 21, 2013, 09:11:42 AM
Looking for a small enhancement to our QR code generator (Javascript) on BitcoinMoxy.com

I invite you to have a look at the related code in the .js scripts and the form at the beginning of the document body (index.html).

The generator works great so far and upon entering any value deviating from the valid character count in a Bitcoin address (25-34 chars), it defaults to a generic error msg in the QR code.

I want to extend this to show the same error qr-code whenever the user enters any non-alphanumeric characters (i.e. spaces, punctuation, etc.; valid input doesn't HAVE to be limited to BASE58, but would be really cool. [BTC addresses use BASE58 characters only]).

If there's anybody with some spare minutes to spend on this, you'll make my day!

Reply in the comments or PM me.

Payment: .1 BTC.

110  Other / Beginners & Help / Re: BitcoinMoxy.com - Your #1 Bitcoin resource on: May 18, 2013, 03:14:10 PM
Looking for a small enhancement to our QR code generator (Javascript).

See https://bitcointalk.org/index.php?topic=209249.0 for more details.





* added Jeff Garzik's Twitter to the News section
* some minor changes


111  Bitcoin / Project Development / Re: BitcoinMoxy.com Site Development Bounties on: May 18, 2013, 03:02:10 PM
The first thing I'm looking forward to is a little Javascript enhancement to the QR code generator on the site.

I invite you to have a look at the related code in the .js plugins and the form at the beginning of the document body (index.html).

The generator works great so far and upon entering any value deviating from the valid character count in a Bitcoin address (25-34 chars), it defaults to a generic error msg in the QR code.

I want this to be a little more sophisticated and revert to the same error msg whenever the user enters any non-alphanumeric characters (i.e. spaces, punctuation, etc.; valid input doesn't HAVE to be limited to BASE58, but would be really cool.)

I'm only just learning JavaScript, so if anybody skilled enough has some spare minutes to spend on this, you'll make me happy!

Reply in the comments or PM me. Payment: .1 BTC.


TIA
112  Bitcoin / Project Development / BitcoinMoxy.com Site Development Bounties on: May 18, 2013, 02:53:30 PM
Have a look at the initial thread in the newbie section, here, to get an idea of what BitcoinMoxy.com is.

I'll use this thread to announce and discuss bounties for improvements to the site.

For the time being, it'll be mostly HTML/CSS/JavaScript type stuff I need a little help with.


113  Other / Beginners & Help / Re: BitcoinMoxy.com on: May 18, 2013, 02:15:41 PM
Very cool, something that isnt a scam in the Newbie section, this would be pretty darn useful to a lot of people i'd imagine. Excellent work =)

Thanks!


That heatmap hasn't been updated in a year or so, you should probably remove or replace it.

It worked until a couple weeks ago. Their notice on the page is straightforward so I decided to leave it there hoping it'll just work again in the near future.


114  Other / Beginners & Help / Re: BitcoinMoxy.com on: May 14, 2013, 03:00:22 AM
Nice site...Have you considered makinga section for merchants accepting bitcoin? You can add my site as the first if you want  Wink

Thanks.

There's a link to the Merchants' List on the Wiki. It may not be up-to-date, but you're free to add your site there I assume.

115  Other / Beginners & Help / Re: BitcoinMoxy.com on: May 14, 2013, 01:15:34 AM
Hey,


BitcoinMoxy.com now has a built-in QR-code generator for Bitcoin addresses. For when you quickly need to turn an address into a scannable QR. It's a little faster than using blockchain.info or mt.gox, too. For that simple purpose anyway (it's fully client side).


Take care





116  Bitcoin / Bitcoin Discussion / Re: Bitcoin needs to be simplified for the stupid. on: May 14, 2013, 01:05:34 AM
Be honest to yourself as to whether your grandma really needs to use Bitcoin. The one who should be using them is you.


BitcoinMoxy.com


117  Other / Beginners & Help / Re: BitcoinMoxy.com on: May 03, 2013, 03:58:11 PM
Thanks for the positive feedback! I will be looking into the suggested sites.


Changes to the page since last visit:
* moved Bitcoinity to the top spot
* fixed Google News link and split it up into U.S./Localized
* added Full List of Casascius Addresses to Tools section
* moved list of exchanges to community section
* some minor changes


And thanks for whitelisting me, whoever it was!

118  Other / Beginners & Help / Re: Bitcoin Businesses and Developers, Let's Get Started! on: April 23, 2013, 12:06:54 PM
Hello


I just created BitcoinMoxy.com as a one stop resource for everything Bitcoin.

It has all the links you need to figure out what Bitcoin is or stay up to date with price development and other news, minus the junk on some of the similar sites I've seen.

Enjoy!



119  Other / Beginners & Help / BitcoinMoxy.com - Your #1 Bitcoin resource on: April 23, 2013, 12:06:07 PM
Hello


I just created BitcoinMoxy.com as a one stop resource for everything Bitcoin.

It has all the links you need to figure out what Bitcoin is or stay up to date with price development and other news, minus the junk* on some of the similar sites I've seen.

Enjoy!





*outdated/non-functional links, etc.
Pages: « 1 2 3 4 5 [6]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!