Bitcoin Forum
May 10, 2024, 04:05:42 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Altcoin Discussion / What are your thoughts on Numus' Features? Decentralized Exchange and more on: March 29, 2014, 05:39:09 AM
So?
2  Bitcoin / Development & Technical Discussion / Local Wallet with Online Blockchain. Is it possible? on: December 22, 2013, 05:46:50 PM
Hi guys

Its just a thought I had, is it possible to have a local wallet with an online blockchain? The local wallet would have to connect to the blockchain to allow transfers to go through. User's wouldn't have to download a huge blockchain and could transfer funds through their local wallet.

3  Economy / Currency exchange / [WTS] 1.38 BTC for PayPal USD : Discount for Trades in the Next 2 Hours on: December 21, 2013, 11:25:08 PM
Hi all

I want to sell 1.38 BTC for $835 PayPal USD at the current exchange rate. I will cut $15 of the price to anywhone who can trade in the next 2 hours.

PM me if you're interested.

Regards,
Duff___Man
4  Alternate cryptocurrencies / Altcoin Discussion / [WTS] 4500 DGC (Digitalcoin) for PayPal USD on: December 20, 2013, 09:03:40 PM
Title says it all I'm looking to sell 4500 DGC for PayPal USD. I'll give you the equivalent of $75 for making the transfer so instead of selling 4500 DGC for $1350  (at the current exchange rate) I'll sell you 4500 DGC for $1275 giving you a profit of $75. PM me if you're intrested.

Best Regards,
Duff___Man
5  Economy / Service Announcements / [ANN] Coinmart - A Cryptocurrency Marketplace for BTC, LTC, DGC (Development) on: December 13, 2013, 06:37:00 PM
Take a look at our introductory video : http://youtu.be/K5rCE4br5c4

______________________________________________________________________________

Press :

CryptoSource.org : http://cryptosource.org/coinmart-co-a-cryptocurrency-marketplace-for-btc-ltc-dgc-in-development/







6  Economy / Currency exchange / WTS 0.27 BTC for PayPal USD on: December 13, 2013, 08:16:12 AM
Hi all

Title says it all I want to sell 0.27 BTC for PayPal USD. Based on the current exchange rate that would be 0.27 BTC for 247 USD. I will send the Bitcoin to your address and you send the USD into my PayPal account

PM me if you wanna trade.

Regards,
Shimal
7  Economy / Currency exchange / Want to trade BTC for 230 USD on: December 13, 2013, 05:31:09 AM
Hi all

Title says it all I want to trade BTC for 230 USD. Based on the current exchange rate that would be 0.252 BTC for 230 USD. I will pay the Bitcoin to your address, you'll just have to deposit the USD into my Freelancer.com account. Just for doing that I'll give you an extra 0.01 BTC.

PM me if you want to trade

Regards,
Duff___Man
8  Economy / Services / Looking for an Escrow Agent on: December 13, 2013, 12:47:28 AM
I'm looking for an escrow agent to purchase 2 "virtual" items in USD and send them to me. I'll pay the BTC. I know it's quite strange to ask an escrow agent for this but I need the items urgently and the only way I can transfer my USD is via PayPal which will take 3 days for the transfer to go through. PM me for details. I'll pay an extra 0.02 BTC for the escrow agent who completed this trade

Regards,
Duff___Man
9  Alternate cryptocurrencies / Marketplace (Altcoins) / [WTB] Dogecoin on: December 11, 2013, 09:24:48 PM
I have 0.25 BTC give me some offers

In Doge language: Much buy Doges, 0.25 BTC have, offer make me
10  Economy / Service Announcements / [ANN] Online File Encryption App on: December 08, 2013, 04:39:06 PM
Howsit guys

I've noticed that there are very few if none, online file encrypters. The main purpose of this would be to provide a different encryption method to that offered by your wallets. Correct me if I'm wrong but the Bitcoin client just password protects your wallet and its backups.

My online file encrypter is a javascript encryption app which makes use of the AES algorithm (http://en.wikipedia.org/wiki/Advanced_Encryption_Standard) which is a is a specification for the encryption of electronic data established by the U.S. National Institute of Standards and Technology in 2001.



Here's the link to it : http://encryptjs.cloudvent.net/

You can encrypt any file, it could be your wallet backups or a text document.

The 5MB limit

If you play with the demo, you will notice that it doesn’t allow you to encrypt files larger than 1mb. I placed the limit, because the HTML5 download attribute, which I use to offer the encrypted file for download, doesn’t play well with large amounts of data. Otherwise it would cause the tab to crash in Chrome, and the entire browser to crash when using Firefox. The way around this would be to use the File System API and to write the actual binary data there, but it is supported only in Chrome for now. This is not an issue with the encryption speed (which is quite fast), but with offering the file for download.

What about HTTPS?

When it comes to encrypting data and securing information, people naturally expect the page to be loaded through HTTPS. In this case I believe it is not necessary, as apart from the initial download of the HTML and assets, no data is transferred between you and the server – everything is done client-side with JavaScript.  If this bothers you, you can just download the demo and open it directly from your computer.

How it works

The contents of the files are obained as a data uri string (http://en.wikipedia.org/wiki/Data_URI_scheme). Browsers allow you to use these URIs everywhere a regular URL would go. The benefit is that they let you store the content of the resource directly in the URI, so we can, for example add the download attribute to it, to download as a file when clicked.

I used the AES algorithm to encrypt the data uri with the chosen password, and to offer it as a download. The reverse happens when decrypting it. No data ever reaches the server.

If I get enough cash I'll upgrade the server and support more traffic and expand the app.

Source Code
Code:
$(function(){

var body = $('body'),
stage = $('#stage'),
back = $('a.back');

/* Step 1 */

$('#step1 .encrypt').click(function(){
body.attr('class', 'encrypt');

// Go to step 2
step(2);
});

$('#step1 .decrypt').click(function(){
body.attr('class', 'decrypt');
step(2);
});


/* Step 2 */


$('#step2 .button').click(function(){
// Trigger the file browser dialog
$(this).parent().find('input').click();
});


// Set up events for the file inputs

var file = null;

$('#step2').on('change', '#encrypt-input', function(e){

// Has a file been selected?

if(e.target.files.length!=1){
alert('Please select a file to encrypt!');
return false;
}

file = e.target.files[0];

if(file.size > 5120*5120){
alert('Please choose files smaller than 5mb, otherwise you may crash your browser. \nThis is a known issue. .');
return;
}

step(3);
});

$('#step2').on('change', '#decrypt-input', function(e){

if(e.target.files.length!=1){
alert('Please select a file to decrypt!');
return false;
}

file = e.target.files[0];
step(3);
});


/* Step 3 */


$('a.button.process').click(function(){

var input = $(this).parent().find('input[type=password]'),
a = $('#step4 a.download'),
password = input.val();

input.val('');

if(password.length<5){
alert('Please choose a longer password!');
return;
}

// The HTML5 FileReader object will allow us to read the
// contents of the selected file.

var reader = new FileReader();

if(body.hasClass('encrypt')){

// Encrypt the file!

reader.onload = function(e){

// Use the CryptoJS library and the AES cypher to encrypt the
// contents of the file, held in e.target.result, with the password

var encrypted = CryptoJS.AES.encrypt(e.target.result, password);

// The download attribute will cause the contents of the href
// attribute to be downloaded when clicked. The download attribute
// also holds the name of the file that is offered for download.

a.attr('href', 'data:application/octet-stream,' + encrypted);
a.attr('download', file.name + '.encrypted');

step(4);
};

// This will encode the contents of the file into a data-uri.
// It will trigger the onload handler above, with the result

reader.readAsDataURL(file);
}
else {

// Decrypt it!

reader.onload = function(e){

var decrypted = CryptoJS.AES.decrypt(e.target.result, password)
.toString(CryptoJS.enc.Latin1);

if(!/^data:/.test(decrypted)){
alert("Invalid pass phrase or file! Please try again.");
return false;
}

a.attr('href', decrypted);
a.attr('download', file.name.replace('.encrypted',''));

step(4);
};

reader.readAsText(file);
}
});


/* The back button */


back.click(function(){

// Reinitialize the hidden file inputs,
// so that they don't hold the selection
// from last time

$('#step2 input[type=file]').replaceWith(function(){
return $(this).clone();
});

step(1);
});


// Helper function that moves the viewport to the correct step div

function step(i){

if(i == 1){
back.fadeOut();
}
else{
back.fadeIn();
}

// Move the #stage div. Changing the top property will trigger
// a css transition on the element. i-1 because we want the
// steps to start from 1:

stage.css('top',(-(i-1)*100)+'%');
}

});

This is my Bitcoin Address if anyone want to donate : 16kvdtewUwvadNPk29AfyLkAbpyLrCJ3XU

Regards,
Duff___Man
11  Economy / Services / Closed on: December 06, 2013, 10:17:09 PM
Deleted
12  Alternate cryptocurrencies / Altcoin Discussion / [WTB] Gridcoin on: December 05, 2013, 07:34:31 AM
Title says it all

I'm looking to buy Gridcoin. Payment will be made in Bitcoin
13  Alternate cryptocurrencies / Altcoin Discussion / [DGC] Digitalcoin Website Redesign Concept on: December 03, 2013, 07:25:12 PM
Howsit guys

Some of you may remember me from the Digialcoin subreddit. I was the guy who did the re-themeing of the subreddit. When I first noticed the Digitalcoin site, there were two things that stuck out.

1) The look of the website was good but it didn't compare to other websites out there. It was better than some alt-coin websites out there, but it wasn't the best.

2) The website provided sufficient information for those who already have knowledge of cryptocurrencies, but not enough information for those who are new to cryptocurrencies. For Digitalcoin to grow it can't feed off people who are looking for alternatives to Bitcoin / Litecoin etc. In my opinion I believe Digitalcoin should be more independant and grow off those who are new to cryptocurrencies.

**Please take note that I'm not bashing or criticising baritus in any way. His priorities lie more with developing the currency than developing the website.

Which is why I'm proposing a redesign. Over the last few days I've been putting together a redisign for the Digitalcoin website to make it more user-friendly and visually appealing.  I've come up with a end product. You can view it here : http://digitalcoin.cloudvent.net

I've opted for a flat, google style design much like in the Digitalcoin subreddit : http://www.reddit.com/r/digitalcoin/

If baritus wants to implement my design as the new Digitalcoin website he may do so without having to pay anything. My goal is to grow the Digitalcoin community not to sell designs. I'm currently awaiting his reply.

That being said if anyone wants to donate or feels the need to this is my address, a few spare DGC won't go to waste  : DKh9gARgRogXdSL9crRvNSYWL3farLjE7B

Let me know what you guys think.

Best Regards,
ShimalH
14  Other / Beginners & Help / Digitlcoin Website Redesin Concept on: December 03, 2013, 01:28:13 PM
Hi all

When I first noticed the Digitalcoin site, there were two things that stuck out.

1) The look of the website was good but it didn't compare to other websites out there. It was better than some alt-coin websites out there, but it wasn't the best.

2) The website provided sufficient information for those who already have knowledge of cryptocurrencies, but not enough information for those who are new to cryptocurrencies. For Digitalcoin to grow it can't feed off people who are looking for alternatives to Bitcoin / Litecoin etc. In my opinion I believe Digitalcoin should be more independant and grow off those who are new to cryptocurrencies.

I've opted for a flat, google style design much like in the Digitalcoin subreddit : http://www.reddit.com/r/digitalcoin/ (which I also redesigned)

If anyone wants to donate or feels the need to this is my address : DKh9gARgRogXdSL9crRvNSYWL3farLjE7B

Best Regards,
ShimalH
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!