Bitcoin Forum
May 14, 2024, 03:27:57 AM *
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 ... 53 »
1  Other / Archival / Re: What is Bitcoin really? on: August 18, 2022, 06:30:48 AM
bitcoin is a bit of data stored in blockchain technology  Cheesy
2  Economy / Services / [WTB] whitepaper writer and designer on: April 11, 2022, 09:21:34 AM
im searching profesional writer for my whitepaper project,my budget $100-$150 im recomend use escrow for transaction.
please PM me your CV
3  Other / Off-topic / running startup on: April 11, 2022, 09:18:21 AM
do you have any experience in building startup?
4  Other / Beginners & Help / Dear newbie... you can easily learning bitcoin and blockchain by cooding.. on: October 27, 2020, 12:36:26 PM
//module required
const SHA256 = require("crypto-js/sha256");

class CryptoBlock {
  constructor(index, timestamp, data, precedingHash = " ") {
    this.index = index;
    this.timestamp = timestamp;
    this.data = data;
    this.precedingHash = precedingHash;
    this.hash = this.computeHash();
    this.nonce = 0;
  }

  computeHash() {
    return SHA256(
      this.index +
        this.precedingHash +
        this.timestamp +
        JSON.stringify(this.data) +
        this.nonce
    ).toString();
  }

  proofOfWork(difficulty) {
    while (
      this.hash.substring(0, difficulty) !== Array(difficulty + 1).join("0")
    ) {
      this.nonce++;
      this.hash = this.computeHash();
    }
  }
}

class CryptoBlockchain {
  constructor() {
    this.blockchain = [this.startGenesisBlock()];
    this.difficulty = 4;
  }
  startGenesisBlock() {
    return new CryptoBlock(0, "01/01/2020", "Initial Block in the Chain", "0");
  }

  obtainLatestBlock() {
    return this.blockchain[this.blockchain.length - 1];
  }
  addNewBlock(newBlock) {
    newBlock.precedingHash = this.obtainLatestBlock().hash;
    //newBlock.hash = newBlock.computeHash();
    newBlock.proofOfWork(this.difficulty);
    this.blockchain.push(newBlock);
  }

  checkChainValidity() {
    for (let i = 1; i < this.blockchain.length; i++) {
      const currentBlock = this.blockchain;
      const precedingBlock = this.blockchain[i - 1];

      if (currentBlock.hash !== currentBlock.computeHash()) {
        return false;
      }
      if (currentBlock.precedingHash !== precedingBlock.hash) return false;
    }
    return true;
  }
}

let smashingCoin = new CryptoBlockchain();

console.log("smashingCoin mining in progress....");
smashingCoin.addNewBlock(
  new CryptoBlock(1, "01/06/2020", {
    sender: "Iris Ljesnjanin",
    recipient: "Cosima Mielke",
    quantity: 50
  })
);

smashingCoin.addNewBlock(
  new CryptoBlock(2, "01/07/2020", {
    sender: "Vitaly Friedman",
    recipient: "Ricardo Gimenes",
    quantity: 100
  })
);

console.log(JSON.stringify(smashingCoin, null, 4));

learn here for detail
https://www.smashingmagazine.com/2020/02/cryptocurrency-blockchain-node-js/  Roll Eyes
5  Economy / Scam Accusations / Re: Binance 10,000 BTC and 100,000 ETH giveaway on: February 15, 2020, 06:54:09 AM
all binance and eth giveaway in twitter and live youtube seem a scam.
they tried to get money from people who send some money at their address.
i never hear about "real " giveaway in twitter and live youtube just by sending ethereum
6  Alternate cryptocurrencies / Speculation (Altcoins) / Re: Do you think Ripple (XRP) will rise to moon. on: February 15, 2020, 06:50:52 AM
Someone is in the know, from a few days ago


seem this is just a bitmex doing this, seem bitmex just want to get profit from people who get margin call and lost his money in leverage
https://www.coindesk.com/xrp-sees-flash-crash-and-quick-rebound-on-bitmex
7  Economy / Trading Discussion / Re: My story with leverage on: February 13, 2020, 11:02:14 AM
Do you have tried Huobi margin trading ? i think margin trading is better than Leverage model trade.
in margin trade, the margin call 130%, and its more safe than leverage trade, where you can lost easily just by flash pump or flash dump.
of course stop loss and stop profit is the best way to minimize your loss, dont forget to use it in Margin trade or leverage trade.
8  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: Anyone still earning with bounties? on: February 13, 2020, 10:56:00 AM
I just joined today, i can't calculate how much money will i earn from altcoin campaign, but i want to gamble it.
in my opinion i will earn arround $200 in this campaign, not much money for campaign if we compare with bitcoin campaign but due the hardest way to join bitcoin campaign, i will try my best at this campaign
9  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY] Relictum Pro - Blockchain 5.0 of the latest generation | $337 500 on: February 13, 2020, 10:34:17 AM
Proof of joined post
Bitcointalk username:secone
Campaign in which you participate: signature campaign  + telegram
10  Economy / Services / Re: DAVID CHAUM's XX Coin | Signature Campaign | Sr - Hero/Legendary Members on: February 03, 2020, 10:38:01 AM
Btctalk name: secone
Btctalk URL:  https://bitcointalk.org/index.php?action=profile;u=387580
Rank: Hero Member
Merit: 501
Current post count: 1039
BTC address (segwit): 33RGs3mkpRErzhSTXRtPmMuFobw4UWxu8L

any update of new spreadsheets ?
hope you can accaept me
11  Economy / Services / Re: [CFNP]DAVID CHAUM's XX Coin | Signature Campaign | Sr - Hero/Legendary Members on: February 01, 2020, 02:48:59 AM
No need to re-apply.

i think some people above must read this
12  Economy / Services / Re: DAVID CHAUM's XX Coin | Signature Campaign | Sr - Hero/Legendary Members on: January 30, 2020, 09:20:08 AM
Btctalk name: secone
Btctalk URL:  https://bitcointalk.org/index.php?action=profile;u=387580
Rank: Hero Member
Merit: 501
Current post count: 1039
BTC address (segwit): 33RGs3mkpRErzhSTXRtPmMuFobw4UWxu8L
13  Economy / Games and rounds / Re: 💲💲 LiveMines $100 GiveAway #1 [BONUS INCLUDED] 💲💲 on: January 30, 2020, 06:52:51 AM
Number: 301
Username: secone
Address: 33RGs3mkpRErzhSTXRtPmMuFobw4UWxu8L
14  Economy / Micro Earnings / Re: Bitcoin, Bitcoin Cash, Groestlcoin testnet faucet (coinfaucet.eu) on: January 30, 2020, 06:15:25 AM
great faucet but the amount very small i get only  0.01149843 BTC TEST
https://live.blockcypher.com/btc-testnet/tx/f8798392df582e1f1488a8043c59c8b6787e3dc9c25bef72059ee8df9c820b57/

anyone know where i can get with big amount?
15  Economy / Games and rounds / Re: BetNFL's Super Bowl LIV Predict & Win Competition | Win up to 0.02 BTC (200 USD) on: January 30, 2020, 04:37:21 AM
i can't join nitrogren sport
its says cloudfire error
Error 1009 Ray ID: 55d0bd6d4ca0dde8 • 2020-01-30 04:35:34 UTC
Access denied
What happened?
The owner of this website (n2g.io) has banned the country or region your IP address is in (ID) from accessing this website.

Cloudflare Ray ID: 55d0bd6d4ca0dde8 • Your IP: xxxxxxxxx • Performance & security by Cloudflare

can you enable it to more country? you can setting in cloudfire

i have trying use unblock web and get error too
https://unbloc.link/index.php?q=oarV0tecZ2PQzazWo8zGp9eg1KPYqpDI2Waqk5aVa59pa5iRo9esocHXp9mmyMZ2xpzUmIqs1tDDpJ3Iytqgo5ui0MmK16yhwceZ0aTGyqDSbcyS0ZzB18ypncXFi6jappXE0dLWnaLWoaXFndPArM2kyg
16  Alternate cryptocurrencies / Bounties (Altcoins) / Re: >>>> $350 worth of Minereum AIRDROP FREE 💪💪💪💪💪 DON’T MISS IT! on: January 30, 2020, 04:33:16 AM
just claim some minute ago, but i ca't understand your claim, you said free $350 per address, wheres we know the value if the coin not yet released, not yet listing in any exchange?
or the reward is depending on mine v1 rate?

i think they think that the price will be the same as the old minerium for the new minerium because it's still the same coin

current price of minerium v1 is 148 satosi or $0.013810 so in thats price we will receive arround  23171 ?
in fact the 24 Volume transaction only : 34 008.47875389 MNE or 0.05038410 BTC , i have  joined again and use some address, hope the price can rising like XRB
17  Alternate cryptocurrencies / Bounties (Altcoins) / Re: >>>> $350 worth of Minereum AIRDROP FREE 💪💪💪💪💪 DON’T MISS IT! on: January 29, 2020, 09:58:22 AM
Simply submit your ethereum address here:

http://v2.minereum.com

you can claim as many addresses as you want that’s $350 per address

DON’T MISS IT OR YOU WILL CRY LATER

just claim some minute ago, but i ca't understand your claim, you said free $350 per address, wheres we know the value if the coin not yet released, not yet listing in any exchange?
or the reward is depending on mine v1 rate?
18  Economy / Games and rounds / Re: SmartMixer.io | 2-Week $250 Competition | Look Inside For Terms on: January 29, 2020, 08:28:30 AM
May I know what will happen after 24 hours? Transaction is unconfirmed until now.

is this first time you using mixer system? yu will receive your coin after all transaction confirmed

Is this competition is more likely random pickings of the winners?
Like even we have 1 entry, we still have the chance to win since if they will draw the contest randomly while having more entries (not more than 5 entries) is more chances of winning.

i just watching this competition, will join in last day if the participant only a few people Roll Eyes
19  Other / Beginners & Help / Re: A case against using Avast on: January 29, 2020, 07:48:20 AM
Im linux user, I have moved from Windows to Linux for 3 months, and now im loove with linux, everything is smooth and im never see any dangerous activity, if you love decentralization, and you love crypto, also doing some finance activity better you use linux, in my office all people using linux too. its more secure than windows even you using paid antivirus
20  Economy / Games and rounds / Re: [0.06 BTC] 🔮 DOOMED 🔮 HALL OF FRAMER CHALLENGE 🔮 on: January 29, 2020, 06:12:49 AM
sorry for all my invalid submit above Smiley
this is the valid submit


171233566
171233564
171233563
171233561
171233560
171233558
171233557
171233556
171233555
171233553
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 ... 53 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!