Search content
Sort by

Showing 20 of 1,022 results by secone
Post
Topic
Board Bitcoin Discussion
Re: What is Bitcoin really?
by
secone
on 18/08/2022, 06:30:48 UTC
bitcoin is a bit of data stored in blockchain technology  Cheesy
Post
Topic
Board Services
Topic OP
[WTB] whitepaper writer and designer
by
secone
on 11/04/2022, 09:21:34 UTC
im searching profesional writer for my whitepaper project,my budget $100-$150 im recomend use escrow for transaction.
please PM me your CV
Post
Topic
Board Off-topic
Topic OP
running startup
by
secone
on 11/04/2022, 09:18:21 UTC
do you have any experience in building startup?
Post
Topic
Board Beginners & Help
Topic OP
Dear newbie... you can easily learning bitcoin and blockchain by cooding..
by
secone
on 27/10/2020, 12:36:26 UTC
//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
Post
Topic
Board Scam Accusations
Re: Binance 10,000 BTC and 100,000 ETH giveaway
by
secone
on 15/02/2020, 06:54:09 UTC
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
Post
Topic
Board Speculation (Altcoins)
Re: Do you think Ripple (XRP) will rise to moon.
by
secone
on 15/02/2020, 06:50:52 UTC
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
Post
Topic
Board Trading Discussion
Re: My story with leverage
by
secone
on 13/02/2020, 11:02:14 UTC
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.
Post
Topic
Board Altcoin Discussion
Re: Anyone still earning with bounties?
by
secone
on 13/02/2020, 10:56:00 UTC
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
Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY] Relictum Pro - Blockchain 5.0 of the latest generation | $337 500
by
secone
on 13/02/2020, 10:34:17 UTC
Proof of joined post
Bitcointalk username:secone
Campaign in which you participate: signature campaign  + telegram
Post
Topic
Board Services
Re: DAVID CHAUM's XX Coin | Signature Campaign | Sr - Hero/Legendary Members
by
secone
on 03/02/2020, 10:38:01 UTC
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
Post
Topic
Board Services
Re: [CFNP]DAVID CHAUM's XX Coin | Signature Campaign | Sr - Hero/Legendary Members
by
secone
on 01/02/2020, 02:48:59 UTC
No need to re-apply.

i think some people above must read this
Post
Topic
Board Services
Re: DAVID CHAUM's XX Coin | Signature Campaign | Sr - Hero/Legendary Members
by
secone
on 30/01/2020, 09:20:08 UTC
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
Post
Topic
Board Games and rounds
Re: 💲💲 LiveMines $100 GiveAway #1 [BONUS INCLUDED] 💲💲
by
secone
on 30/01/2020, 06:52:51 UTC
Number: 301
Username: secone
Address: 33RGs3mkpRErzhSTXRtPmMuFobw4UWxu8L
Post
Topic
Board Micro Earnings
Re: Bitcoin, Bitcoin Cash, Groestlcoin testnet faucet (coinfaucet.eu)
by
secone
on 30/01/2020, 06:15:25 UTC
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?
Post
Topic
Board Games and rounds
Re: BetNFL's Super Bowl LIV Predict & Win Competition | Win up to 0.02 BTC (200 USD)
by
secone
on 30/01/2020, 04:37:21 UTC
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
Post
Topic
Board Games and rounds
Re: >>>> $350 worth of Minereum AIRDROP FREE 💪💪💪💪💪 DON’T MISS IT!
by
secone
on 30/01/2020, 04:33:16 UTC
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
Post
Topic
Board Games and rounds
Re: >>>> $350 worth of Minereum AIRDROP FREE 💪💪💪💪💪 DON’T MISS IT!
by
secone
on 29/01/2020, 09:58:22 UTC
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?
Post
Topic
Board Games and rounds
Re: SmartMixer.io | 2-Week $250 Competition | Look Inside For Terms
by
secone
on 29/01/2020, 08:28:30 UTC
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
Post
Topic
Board Beginners & Help
Re: A case against using Avast
by
secone
on 29/01/2020, 07:48:20 UTC
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
Post
Topic
Board Games and rounds
Re: [0.06 BTC] 🔮 DOOMED 🔮 HALL OF FRAMER CHALLENGE 🔮
by
secone
on 29/01/2020, 06:12:49 UTC
sorry for all my invalid submit above Smiley
this is the valid submit


171233566
171233564
171233563
171233561
171233560
171233558
171233557
171233556
171233555
171233553