How PayPal Shares Your Data
11–20 of 46 posts
Re: How PayPal Shares Your Data
#12And the 100 dollar question: is this better or worse than an average bank from your_country? I have no clue about my own bank. Reading through this list, it seems I should get a clue about my own bank.
[1] https://www.paypal.com/ie/webapps/mpp/ua/third-parties-list
Re: How PayPal Shares Your Data
#13Just skip this terrible usability nightmare and read the original list instead at [1]. FWIW, I used Ctrl+F to search around (for, in my case, my country name). And the 100 dollar question: is this better or worse than an average bank from your_country? I have no clue about my own bank. Reading through this list, it seems I should get a clue about my own bank. [1] https://www.paypal.com/ie/webapps/mpp/ua/third-parties…
It's really hard to see any reasonable options you have as source of data.
Re: How PayPal Shares Your Data
#14Just skip this terrible usability nightmare and read the original list instead at [1]. FWIW, I used Ctrl+F to search around (for, in my case, my country name). And the 100 dollar question: is this better or worse than an average bank from your_country? I have no clue about my own bank. Reading through this list, it seems I should get a clue about my own bank. [1] https://www.paypal.com/ie/webapps/mpp/ua/third-parties…
And then what? You find they are doing almost the same, move to the biggest forrest you can find and start living on berries and rabbits? Or you decide to cut 1/3 of your savings, buy paypal and show them how to do it the right way? It's really hard to see any reasonable options you have as source of data.
Re: How PayPal Shares Your Data
#15Earlier quoted context omitted.
And then what? You find they are doing almost the same, move to the biggest forrest you can find and start living on berries and rabbits? Or you decide to cut 1/3 of your savings, buy paypal and show them how to do it the right way? It's really hard to see any reasonable options you have as source of data.
Some cryptocurrencies are designed to preserve privacy, to protect people from exactly this problem.
Re: How PayPal Shares Your Data
#16Just skip this terrible usability nightmare and read the original list instead at [1]. FWIW, I used Ctrl+F to search around (for, in my case, my country name). And the 100 dollar question: is this better or worse than an average bank from your_country? I have no clue about my own bank. Reading through this list, it seems I should get a clue about my own bank. [1] https://www.paypal.com/ie/webapps/mpp/ua/third-parties…
And then what? You find they are doing almost the same, move to the biggest forrest you can find and start living on berries and rabbits? Or you decide to cut 1/3 of your savings, buy paypal and show them how to do it the right way? It's really hard to see any reasonable options you have as source of data.
Re: How PayPal Shares Your Data
#17Earlier quoted context omitted.
And then what? You find they are doing almost the same, move to the biggest forrest you can find and start living on berries and rabbits? Or you decide to cut 1/3 of your savings, buy paypal and show them how to do it the right way? It's really hard to see any reasonable options you have as source of data.
Some cryptocurrencies are designed to preserve privacy, to protect people from exactly this problem.
Re: How PayPal Shares Your Data
#18Earlier quoted context omitted.
And then what? You find they are doing almost the same, move to the biggest forrest you can find and start living on berries and rabbits? Or you decide to cut 1/3 of your savings, buy paypal and show them how to do it the right way? It's really hard to see any reasonable options you have as source of data.
Some cryptocurrencies are designed to preserve privacy, to protect people from exactly this problem.
Re: How PayPal Shares Your Data
#19Earlier quoted context omitted.
Some cryptocurrencies are designed to preserve privacy, to protect people from exactly this problem.
Yes, a known example is Monero. The question is, first and foremost, if you should trust cryptocurrencies.
Re: How PayPal Shares Your Data
#20https://github.com/shawwn/d4tree
Throw it any JSON data whose structure is isomorphic to http://rebecca-ricks.com/paypal-data/data/paypal.json
Here's an example of how to use d4tree on your site:
https://github.com/shawwn/d4tree-paypal
git clone https://github.com/shawwn/d4tree-paypal
cd d4tree-paypal
yarn && yarn dev
Make any changes you want to paypal.json, then refresh http://localhost:1234 to see them. Whenever you're happy, run `yarn deploy` to push it live.Standard paypal visualization:
https://dist-zlomdidehn.now.sh/
After truncating paypal.json to three nodes, we get a skinny tree:
https://dist-kzpulmmevd.now.sh/
Let's attach package.json to the top of paypal.json:
import d4tree from 'd4tree';
d4tree([{
name: "package.json",
parent: "null",
children: require('./paypal.json'),
Data: JSON.stringify(require('./package.json'), true, 2),
}]);
https://dist-vcqquyfbwl.now.sh