Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
1–10 of 13 posts
Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#2Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#3Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#4"We are stopping save facility to prevent NSFW content and working on to make it better.
We understand this may be inconvenient, but we're taking proactive measures to ensure our platform remains safe and appropriate for all users. "
Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#5And for something I use every day like email, I just leave myself signed in on my main devices. But eventually that even gets reset...probably a few times a year.
Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#6What’s crazier is everyone’s browser can do this with like a single line of code:
> JSON.stringify(data, null, 2)
I suppose it’s technically two lines if you assign the JSON to a variable (like ‘data’ above) first.
My mind has been truly blown by this one.
Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#7I guess leaking your credentials is pretty unsafe for your work.
Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#8This is wild. I figured it was going to be something about reusing password but no it’s just a treasure trove of secrets from folks formatting JSON and saving it to a public link. I can’t for the life of me understand why anyone would do this, I haven’t used a language which doesn’t have some sort of pretty print functionality built into the common/standard JSON library. What’s crazier is everyone’s browser can do th…
Also if you are someone who needs JSON then install jq and do `pbpaste | jq . | pbcopy`.
Re: Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR
#9This is wild. I figured it was going to be something about reusing password but no it’s just a treasure trove of secrets from folks formatting JSON and saving it to a public link. I can’t for the life of me understand why anyone would do this, I haven’t used a language which doesn’t have some sort of pretty print functionality built into the common/standard JSON library. What’s crazier is everyone’s browser can do th…
one if you do `copy(JSON.stringify(data,{}, 2))`. A very useful tool when you need to get the auth token from here over to there! Also if you are someone who needs JSON then install jq and do `pbpaste | jq . | pbcopy`.