Bitcoin Forum
June 20, 2024, 12:14:34 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 [641] 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 ... 762 »
12801  Other / Beginners & Help / Re: 2FA - Important Precautions with Google Authenticator on: April 18, 2018, 04:27:04 PM
it seems your knowledgeable about 2authy can you please teach us with the picture if possible on how to do a backup. I have tried to press all the menu still can not find it.

edit: also on how to restore it. thanks in advance
After a simple "Authy backup" Google search:

https://authy.com/features/backup/
https://authy.com/blog/how-the-authy-two-factor-backups-work/

Everything is stored in the cloud, so you don't need to save any files.
12802  Other / New forum software / Re: [Suggestion] The Trollbox dialog on: April 18, 2018, 01:19:47 PM
This already has been discussed. In this post[1], OP was sugesting a private chat between two users, but some of the counter points are valid for your "public live chat" idea.

[1] https://bitcointalk.org/index.php?topic=3223081.0
12803  Bitcoin / Project Development / Re: Displaying the current Bitcoin price on: April 17, 2018, 11:16:41 PM
Can you add your own PHP code inside the page?

If so, you could do something like this:

Code:
<?php  
  $url 
"https://api.coinmarketcap.com/v1/ticker/bitcoin/?convert=USD";

  
$json file_get_contents($url);
  
$data json_decode($jsonTRUE);

  
$btc_last  $data[0]["price_usd"];
?>


<ul>
   <li>Price: $<?php echo $btc_last ?></li>
</ul>

or if you can't, create a file called "price.php" or whatever with the same code and add something like this to your page:
Code:
<iframe width="300" height="300" frameBorder="0" src="price.php"></iframe>

or if you want to load it with Javascript and JQuery:

If you are not already using jquery in your page, add this to your <head> tag:
Code:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

And do something like this:
Code:
<div id="price"></div>

<script>
$(document).ready(function() {
    $("#price").load("price.php");
});
</script>
12804  Bitcoin / Development & Technical Discussion / Re: Why isn't Satoshi's one-time address-key pair proposal implemented? on: April 17, 2018, 11:05:29 PM
In electrum wallet the default is to use 1 receiving address. Although multiple addresses are generated when I initially create a wallet, they are never used (not even for change) unless I specifically transfer funds to them. I don't know why.  

Is electrum a bad implementation?
At least in my case, every time I receive a transaction, Electrum changes the address in the "Receive" tab to a new one. I just checked my list of addreses and I already used 9 different addresses since I created my wallet.
12805  Other / Meta / Re: Will this new feature if added, improve the forum? on: April 17, 2018, 07:32:36 PM
This is not the first time someone suggests this. IIRC, this feature will be available in the new forum software that is being developed.

For now, what you can do is go to the Advanced Search page and do the following:

- Write your name into the "Search for" field;
- Select "most recent topics first" in the "search order" option;
- Check "Show results as messages" (optional).

This will show every post where you got quoted or someone wrote your name.
12806  Economy / Exchanges / Re: Poloniex Overwhelmed? on: April 17, 2018, 07:28:51 PM
That's normal. I remember that Poloniex always sucked and it's not different now. If they are actually getting an abnormal amount of new users, it's going to take a while.

Like they said: "profile verifications may take up to several weeks", so just sit and wait.
12807  Other / Meta / Re: Stats on the Rank pipeline - How many are we on the way to ranking up ? on: April 17, 2018, 06:06:36 PM
* pafu -> Being a Member, started off with a 500 Merit airdrop instead of 10 (could be a bought account, but I thought there were no demotions..). -> https://bitcointalk.org/index.php?action=profile;u=25731
If you delete the posts that gave you activity points, you will lose them. Pafu has posted this in the Portuguese local board (my language):

Puts, perdi o rank de Hero Member porque apaguei meus posts  Shocked

Which translates to: "Shit, I lost my Hero Member rank because I deleted my posts".
12808  Bitcoin / Electrum / Re: Cannot retrieve BCH out of electrum on: April 17, 2018, 04:45:14 PM
Don't worry. It was something so simple that I don't think I deserve a tip.

I'm just glad that I could help Smiley

Cheers.


Edit: just received 0.005BTC in my 1Ninja... address. Was that you? Grin

If so, thank you!
12809  Bitcoin / Electrum / Re: Cannot retrieve BCH out of electrum on: April 17, 2018, 04:25:18 PM
Why are you checking "BIP39 seed"? Try to restore your seed again but without it.

You could also just open your old Electrum wallet directly into Electron Cash. Just do: "File" -> "Open" -> Select your old Electrum wallet file (A).
12810  Other / Meta / Re: Old BitcoinTalk account hacked on: April 17, 2018, 02:26:01 PM
You don't need to know your old email. You just need to sign a message with a Bitcoin address or PGP key associated with the account and send it to theymos or Cyrus[1].

Can you sign a message with one of those altcoin addresses (if you still own any of them)?

LCVMBA375BTrWP93bTgx81h9mZmAWu7hN9 - this post
1CRKdpoPHD9PM9DXhV99ajJXZfd5SXrNSC - this post

[1] from the post linked above:
If you want us to recover a hacked/lost account, you need to prove that you own it. Typically, the only acceptable method of proving ownership is by signing a message (including current date and desired new email address) using a Bitcoin address or PGP key associated with the account. A Bitcoin address or PGP key is associated with the account only if the account posted the key/address, sent it in a PM, or if it is still listed in the account's profile.
12811  Other / Meta / Re: Old BitcoinTalk account hacked on: April 17, 2018, 01:37:07 PM
Follow this instructions: Recovering hacked accounts or accounts with lost passwords

If you don't have any staked address or can't sign a message with any of them, there is (probably) nothing you can do.
12812  Other / Meta / Re: mobile friendly bitcointalk on: April 17, 2018, 12:44:46 PM
Try to use Opera Mini Browser on your phone. It will give you good experience, bud. Much better, the text will fit on your screen as well when you zoom in or zoom out, so you don't need to slide your screen. Or if you using Iphone try the Safari Browser.
How do you enable this feature? I just installed it and mine looks the same as in Firefox and Chrome.

Edit: I'm also getting ads from time to time while using this browser...

I heard they are working on new forum software and really hope they have responsive function in mind.
They do.
12813  Economy / Exchanges / Re: GDAX minimum? on: April 17, 2018, 12:59:04 AM
AFAIK the minimum is only 0.001BTC (~$8). Buying less than that wouldn't be viable because of the transaction fees.

Source: https://support.gdax.com/customer/portal/articles/2725970-trading-rules
12814  Other / Beginners & Help / Re: How do I use search on bitcointalk properly? on: April 16, 2018, 11:10:04 PM
Ok. Maybe it's funny but I use, most of the time, google search with site:bitcointalk.org in order to find relevant threads.
That's exactly what most people do (including myself).

Other than that, you could use the Advanced Search page. But you are still a Newbie, so you have a restriction on how many searchs you can do in a period of time. And this can get annoying pretty quick.
12815  Other / Beginners & Help / Re: all have already received bitcoin cash? on: April 16, 2018, 11:07:59 PM
Since when do you have those 2 Bitcoins? If you are holding them before August 1st, then you most likely have Bitcoin Cash and can claim them. If you received those 2 Bitcoins after August 1st, there is no Bitcoin Cash in your address to be spend.

Also, which wallet/service are you using to store your coins?
12816  Other / Beginners & Help / Re: How does Pump Signals work? on: April 16, 2018, 08:14:33 PM
You only get the signal when the group who organized the pump already has his pockets full of coins. And do you know what happens when you and the other sheeps are buying? Whoever organized the pump is dumping and profting fom your money. They will end up with a lot of BTC, and you will end up with a lot of shitcoins. TLDR: Don't play with those pump signals/groups. Please...
12817  Other / Beginners & Help / Re: how can upload my profile picture?? on: April 16, 2018, 07:28:18 PM
You are not allowed to wear a profile picture (avatar) until you reach the rank Full Member.

More info: Forum ranks/positions/badges
12818  Other / Meta / Re: Someone trying to get to my account? on: April 16, 2018, 06:13:03 PM
You don't need anything other than the username to request a new password for an account. This means that I can use 'forgot password' function for any account in the forum without needing to provide any special information (not even the account email).

So changing your password shouldn't be necessary.
12819  Economy / Services / Re: Make $75+ Daily on AutoPilot | Guaranteed | Instant Delivery on: April 16, 2018, 05:43:51 PM
I could stay here posting and arguing with you on how bullshit is your $500 month method that is being sold for $10, however I've already done a lot of that shit in the past with the type of user that promotes bitcoin doublers and "3% a day cloud mining", and one thing that I learned is that you can't change their minds. Or at least, you can't make them publicly admit that they are wrong, because they only care about the money.

Anyways, I would love to know what does "acting like a teenage girl" in the internet means. But unfortunately, I don't have time for this, so I will be putting you in my ignore list and moving on. This should make things easier for both of us. GL with your $10 Netflix accounts sales, and I hope you can make your living with that.
12820  Economy / Services / Re: Make $75+ Daily on AutoPilot | Guaranteed | Instant Delivery on: April 16, 2018, 05:11:10 PM
Well all you had to do was ask for a vouch copy, now that vouch copy has gone out the drain for coming in here and acting like you know everything.. Smiley


And yes I will sell it for $10 and help out the community earn some extra cash.
Look, that's not the first time I've seen this kind of "earn $5000 per month autopilot" methods being sold for $10~$50. If you had a method that gave you $500 per month without you needing to do anything, I'm pretty sure you would replicate the method to earn $5000/month instead of spending your time here selling Spotify and Netflix accounts for $5. Don't act like I'm dumb.
Pages: « 1 ... 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 [641] 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 ... 762 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!