What Does “Not Your Keys, Not Your Coins” Mean?

Problem scenario
You have seen the initialism NYKNYC. What does it mean?

Solution
NYKNYC means "not your keys, not your coins" or "not your keys, not your cryptocurrency." A private key is a non-tangible key that is not supposed to be given to other people. A public key is an address that may be given to other people.

You have to protect that private key because if anyone else gets their hands on it, they can use it to say they own your address, which means they own your coins.

https://blog.trezor.io/where-in-the-world-are-my-coins-85a229417b06

The engraving of "am I not a woman and a sister?" was an effort by women to help show that slaves were human beings. The negative put emphasis on the humanity of the slave. For this quote "not your keys, not your coins," emphasizes a wallet (to avoid a website exchange that has your private keys).

The word "middleman" became a word in 1675; this was the same year the word "psychology" became a word. Globalization began in the mid 1500s. People thought about merchant ships and what other individual people were thinking and needed new words. Cryptocurrency exchange websites act as a middleman between the users (those who buy cryptocurrency) and the assets (e.g., Bitcoin).

Without your private key, you may not have access to your cryptocurrency. A website for cryptocurrency exchange acts as a middleman; it has private keys to have access to the coins of its users. A user of such a website does not have access to their private keys directly.

The phrase "not your keys, not your coins (or crypto)", highlights the exchange being a custodian of the cryptocurrency assets. This may discourage people from using an exchange/website or cryptocurrency altogether. A cold cryptocurrency wallet (e.g., tangible hardware) could enable a cryptocurrency owner to bypass the (negative aspects of the) concept of "not your keys, not your coins."

To read more about "not your keys, not your coins/cryptocurrency", see the following links:


To learn more about cryptocurrency, see these two articles:

How Do You Insure Your Bitcoin/Cryptocurrency Holdings?

https://blog.trezor.io/where-in-the-world-are-my-coins-85a229417b06


If you want to buy a cryptocurrency wallet, check to see if it supports the ones you want before buying. You can browse them on Amazon here.

Protecting the recovery seed is essential for getting your cryptocurrency if your wallet is damaged. There are cryptocurrency wallet recovery plates made with titanium and steel capsules that can help protect your cold seed storage for your wallet.

Concerned about Passwords for your Cryptocurrency Account?

Check out the two-year deal with NordPass.
***The above is an advertisement.***


If you want to learn more about why you should use a VPN when doing cryptocurrency trades, see these posts:

https://finbold.com/guide/why-should-you-use-vpn-when-trading-crypto/

https://cybernews.com/best-vpn/vpn-for-crypto-trading/

https://www.youtube.com/watch?v=Quljl-wKYBE

https://www.youtube.com/watch?v=lLycxdXigsg

This video takes a different position on whether you should use a VPN for cryptocurrency trading:
https://www.youtube.com/watch?v=51ZBdMPzHC4

What Happens if a Cold Cryptocurrency Wallet Stops Working?

Problem scenario
There is disk corruption of your cold wallet for cryptocurrency. The hardware is broken or defective. What should you do?

Possible Solution #1
Do you have the recovery phrase/seed? You don't want other people to have this; they could get your coins.

To read about what you might do, see the following:

Possible Solution #2
Pay a service to fix the disk. We do not necessarily endorse the following services:


To learn more about cryptocurrency, see these two articles:

How Do You Insure Your Bitcoin/Cryptocurrency Holdings?

https://blog.trezor.io/where-in-the-world-are-my-coins-85a229417b06


If you want to buy a cryptocurrency wallet, check to see if it supports the ones you want before buying. You can browse them on Amazon here.

Protecting the recovery seed is essential for getting your cryptocurrency if your wallet is damaged. There are cryptocurrency wallet recovery plates made with titanium and steel capsules that can help protect your cold seed storage for your wallet.

How Do You Configure Your WordPress Website’s Homepage to Be The Latest Postings?

Problem scenario
You no longer want a static landing page for your website's home page. You are using WordPress. What should you do?

Solution
1. Log into WordPress
2. Go to Settings -> Reading
3. For the "Your homepage displays", choose the radio button for "Your latest posts".

How Does Linux Handle Ambiguous Redirects?

Problem scenario
If there are multiple files named "foobar", what would this Linux command do?

echo "ccc" > $(sudo find / -name foobar)

Here are your options:
a. Send "ccc" to be the content of the first file found.
b. Send "ccc" to be the content of the each file found.
c. Send "ccc" to be the content of the last file found.
d. Fail.

Which one do you think is correct?


Scroll down to see the answer.


Scroll down to see the answer.


Scroll down to see the answer.


Scroll down to see the answer.


Answer
D. Fail. The result of the above command if there were two files named "foobar" would be an error "ambiguous redirect". If you used echo $?, you would see a 1.