Search content
Sort by

Showing 20 of 32 results by duxZero
Post
Topic
Board Project Development
Re: 1 Bitcoin Bounty Contest for the Official Bitcoin Book Cover and Symbol
by
duxZero
on 02/12/2013, 12:37:46 UTC
Congrats 11am Cheesy

Here you go Charles, 19qwMro9S8HRqMumDhrQJAzgR4hWDx7Qgk

I appreciate the fact you are also rewarding anyone else who submitted a design.
Post
Topic
Board Altcoin Discussion
Topic OP
Bitcoin <-> Altcoin
by
duxZero
on 26/11/2013, 12:13:30 UTC
So,

I am thinking of making an exchange that will allow users to instantly and safely exchange BTCitcoins and Altcoins.

I might even add a few other 'virtual currencies' into the mix if the site grows enough.

So to start off with, lets discuses the idea ?
Post
Topic
Board Project Development
Re: [BOUNTY] Help test next major release of Armory! [0.04 BTC/bug]
by
duxZero
on 16/11/2013, 05:14:41 UTC
Didn't even notice, my bad.

But yeah just a suggestion to offer a somewhat more advanced security lockdown to help 'prevent' malware.
Post
Topic
Board Project Development
Re: [BOUNTY] Help test next major release of Armory! [0.04 BTC/bug]
by
duxZero
on 16/11/2013, 05:10:28 UTC
All the BTC 'stealers' do is steal the wallet and tamper with the clipboard.

If your actually getting RAT'ed then just lock down all the network connections and monitor the traffic.

As for key loggers just create an on screen keyboard for the application itself.
Post
Topic
Board Project Development
Re: [BOUNTY] Help test next major release of Armory! [0.04 BTC/bug]
by
duxZero
on 16/11/2013, 02:44:40 UTC
For the bounty: 1LGBcGGi6aEgbnWtwfpBn3m4n4Js1gRxf8

Sorry i'm just wasting time test small things while i wait to get online.

Also, just a suggestion,
Bitcoin 'stealers' have a feature that when a bitcoin address is copied to the clipboard it is replaced with the 'hackers' address.
With saying that i think you should add a warning system to alert the user when this happens with any address's linked to Armory.
Post
Topic
Board Project Development
Re: [BOUNTY] Help test next major release of Armory! [0.04 BTC/bug]
by
duxZero
on 15/11/2013, 12:44:23 UTC
Your (?) tool tips require you to click, hold and drag the mouse off the tool tip to keep it displaying else as soon as you just click it disappears.

--

http://i.imgur.com/TVBGr9M.png
Post
Topic
Board Project Development
Topic OP
Need an idea.
by
duxZero
on 15/11/2013, 12:26:31 UTC
You name it.

I'll do it.
Post
Topic
Board Project Development
Re: 1 Bitcoin Bounty Contest for the Official Bitcoin Book Cover and Symbol
by
duxZero
on 15/11/2013, 09:23:40 UTC
Post
Topic
Board Project Development
Re: Developers needed for VirtEx shopping cart integration – $500 reward per plugin
by
duxZero
on 14/11/2013, 12:04:21 UTC
Message me, I reckon I would be able to do this almost all in one hit.
Post
Topic
Board Project Development
Re: Investabit: Thoughts ?
by
duxZero
on 12/11/2013, 12:50:42 UTC
We would have to use international wire transfers.

I agree, gaining the trust of investors will be the hardest part due to the mistakes of other 'organisations'.
With saying that before going live I will put the site and secured wallet through multiple public testings phases to prove how secure Investabit is and to weed out any possible problems before even launching.

I'm not going to make any 'promises' but instead show everyone first hand how serious we are.
Post
Topic
Board Project Development
Topic OP
Investabit: Thoughts ?
by
duxZero
on 12/11/2013, 11:43:32 UTC
So,

http://investabit.org/

Click 'About' in the bottom left corner to learn more.

Just wondering what everyone thinks about the concept and if anyone has any suggestions ?

I am also open to answer ANY questions.
Post
Topic
Board Project Development
Re: bubble-status-website
by
duxZero
on 11/11/2013, 09:56:48 UTC
My signature. Do it.
Post
Topic
Board Project Development
Re: bubble-status-website
by
duxZero
on 10/11/2013, 08:42:21 UTC
Lol.

Someone fund me for the domain and hosting...

BitBubble... Easy.
Post
Topic
Board Project Development
Re: 1 Bitcoin Bounty Contest for the Official Bitcoin Book Cover and Symbol
by
duxZero
on 09/11/2013, 13:35:51 UTC
This is just a base design.

As a student myself, i'm trying to make this design feel like something that i would want to read and how bitcoins as a whole make you feel, AMAZED AND VIBRANT.

http://i.imgur.com/PqFjmtQ.jpg
Post
Topic
Board Project Development
Re: Chart for website.
by
duxZero
on 09/11/2013, 10:47:43 UTC
Anytime, i made it easy to implement other exchanges in the future to.
Post
Topic
Board Project Development
Re: Chart for website.
by
duxZero
on 09/11/2013, 10:08:05 UTC
https://www.bitstamp.net/api/

https://btc-e.com/api/2/btc_usd/ticker

Code:

        
function getStats($e) {
            
$cookies tmpfile();
            
$userAgent 'duxZero';

            
$eURL NULL;

            switch (
$e) {
                case 
"btc-e":
                    
$eURL "https://btc-e.com/api/2/btc_usd/ticker";
                    break;
                case 
"bitstamp":
                    
$eURL "https://www.bitstamp.net/api/ticker/";
                    break;
                default:
                    
$eURL "https://www.bitstamp.net/api/ticker/";
                    break;
            }

            
$cURL curl_init($eURL);

            
$options = array(
                
CURLOPT_CONNECTTIMEOUT => 20,
                
CURLOPT_USERAGENT => $userAgent,
                
CURLOPT_AUTOREFERER => true,
                
CURLOPT_FOLLOWLOCATION => true,
                
CURLOPT_RETURNTRANSFER => true,
                
CURLOPT_COOKIEFILE => $cookies,
                
CURLOPT_COOKIEJAR => $cookies,
                
CURLOPT_SSL_VERIFYPEER => 0,
                
CURLOPT_SSL_VERIFYHOST => 0
            
);

            
curl_setopt_array($cURL$options);
            
$contents curl_exec($cURL);
            
curl_close($cURL);
            return 
json_decode($contentstrue);
        }

        
$a getStats("btc-e");
        echo 
$a['ticker']['high'];

        echo 
"
"
;

        
$b getStats("bitstamp");
        echo 
$b['high'];
        
?>

Post
Topic
Board Project Development
Re: Chart for website.
by
duxZero
on 09/11/2013, 09:44:36 UTC
Just use the API's for the big popular exchanges.

I can even give you a snippet that does this if need be.
Post
Topic
Board Project Development
Re: 1 Bitcoin Bounty Contest for the Official Bitcoin Book Cover and Symbol
by
duxZero
on 08/11/2013, 13:35:06 UTC
PM me a some more detailed information like the color scheme and what message you would like to bring across in the design.

I can have a design made within 24 hours for you.
Post
Topic
Board Project Development
Topic OP
eBay: Integrating BTC's
by
duxZero
on 07/11/2013, 10:26:59 UTC
I'm not going to make a massive thread outlining the idea just yet.
For now I just want some basic feedback on the idea.

I have a concept that I'm interested in developing that will allow users to sell and buy products via eBay using BTC's in a similar way eBay uses PayPal.

Short thread due to I'm currently on my phone.
Post
Topic
Board Digital goods
Re: Windows MSDN Keys
by
duxZero
on 06/11/2013, 13:09:51 UTC
Showed those keys on purpose, as proof they are actually generate-able keys.
The ones showing are for products i HIGHLY doubt anyone would even pay for.