privacy

What is following header for: X-Chrome-Variations?

亡梦爱人 提交于 2019-11-29 16:45:52
问题 I was looking at http requests sent by chrome in Fiddler, and I noticed following http header which puzzles me: X-Chrome-Variations: CNa1yQEIjrbJAQiYtskBCKK2yQEIp7bJAQiptskBCLmDygE= This is a base64 encoded 35-byte array: 8,214,181,201,1, 8,142,182,201,1, 8,152,182,201,1, 8,162,182,201,1, 8,167,182,201,1, 8,169,182,201,1, 8,185,131,202,1 I've seen several examples of this number on the web. Can anyone explain to me what this is, and why chrome sends it out (and if it could be used to identify

How might I simulate a private browsing experience in Watir? (Selenium)

别等时光非礼了梦想. 提交于 2019-11-29 08:49:09
Watir is a Selenium-based black-box testing tool that can automate tasks on the browser. I would like to be able to open up a Watir::Browser.new that is in private browsing mode. Thanks For Firefox (I am not sure about the other browsers), you can setup the profile to have private browsing enabled: profile = Selenium::WebDriver::Firefox::Profile.new profile['browser.privatebrowsing.dont_prompt_on_enter'] = true profile['browser.privatebrowsing.autostart'] = true b = Watir::Browser.new :firefox, :profile => profile This was the solution from https://github.com/watir/watir-webdriver/issues/95 .

How do I read an encrypted file from disk with R

孤者浪人 提交于 2019-11-29 07:17:11
问题 I have a sensitive data set that should never be stored unencrypted on disk. Can R deal with this or is full disk encryption my only option? 回答1: I have a feeling there's an easier way to do this, but the digest package, which does AES encryption, is the closest thing I came across to what you are asking for. This should get you started. # write encrypted data frame to file write.aes <- function(df,filename, key) { require(digest) zz <- textConnection("out","w") write.csv(df,zz, row.names=F)

App Rejected on 17.2 clause. Asking for email ID

独自空忆成欢 提交于 2019-11-28 21:06:41
问题 My app is a sync solution (imagine dropbox). The user needs to sign in to access the app's features, and if he does not have any account already created, he can sign up. The sign up asks for email id verification, and this email id is also used if the user has forgotten his password to send him one. but Apple has rejected this app saying: 17.2: Apps that require users to share personal information, such as email address and date of birth, in order to function will be rejected We found that

How to contribute on github anonymously via Tor?

无人久伴 提交于 2019-11-28 16:58:55
I would like to contribute anonymously to projects on github. Not to cause mischief, more in the spirit of anonymous donations. The tool of choice for being anonymous online seems to be TOR, which works well for almost anything you can do in a browser. However, to contribute on github, it appears necessary to use the command line interface, or the Mac app. How can I channel my git operations in this setup through Tor? And how can I verify that this is actually what is happening? Edit: please note the difference between pseudonymous (with a fake e-mail address) and anonymous (with an IP address

Does Git publicly expose my e-mail address?

浪尽此生 提交于 2019-11-28 16:09:10
The guides I've read so far on Git say that I should go into the config and specify my name and my e-mail address. They don't elaborate; they just say to do it. Why does Git need my e-mail address? And, more importantly, if I make my repo publicly available, via GitHub for example, will my e-mail address be visible to everyone (including spambots)? Git uses your email address to identify you, as well as do other tasks (such as sign a tag with a GPG key). Your email address does get embedded as part of your identity in commit logs, etc., along with the name you specify. For example, the "author

Why does Google +1 record my mouse movements? [closed]

允我心安 提交于 2019-11-28 13:11:21
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . This is only on pages with a Google +1 box on my website: It seems to be firing off an event on every mouse move. Anyone know what it is doing? I searched on Google (perhaps I should try Bing for once on this one!) but no one seems to have written about it. Is it recording

How might I simulate a private browsing experience in Watir? (Selenium)

三世轮回 提交于 2019-11-28 02:31:36
问题 Watir is a Selenium-based black-box testing tool that can automate tasks on the browser. I would like to be able to open up a Watir::Browser.new that is in private browsing mode. Thanks 回答1: For Firefox (I am not sure about the other browsers), you can setup the profile to have private browsing enabled: profile = Selenium::WebDriver::Firefox::Profile.new profile['browser.privatebrowsing.dont_prompt_on_enter'] = true profile['browser.privatebrowsing.autostart'] = true b = Watir::Browser.new

privacy policy Permission (S) :

被刻印的时光 ゝ 提交于 2019-11-27 22:37:24
please help me and solve my problem in my google developer account. Your app has an APK with version code 508008 that requests the following permission(s): android.permission.CAMERA,android.permission.RECORD_AUDIO,android.permission.READ_PHONE_STATE,android.permission.GET_ACCOUNTS,android.permission.READ_CONTACTS. Apps using these permissions in an APK are required to have a privacy policy set. your question is very general, therefore you're getting an answer that is expansive on the topics that I think you should be reading about. Your “problem” is that you don't have a privacy policy. Google

How to store private pictures and videos in Ruby on Rails

霸气de小男生 提交于 2019-11-27 21:41:04
Here's a story: User A should be able to upload an image. User A should be able to set a privacy. ("Public" or "Private"). User B should not be able to access "Private" images of User A. I'm planning to user Paperclip for dealing with uploads. If I store the images under "RAILS_ROOT/public/images", anyone who could guess the name of the files might access the files. (e.g., accessing http://example.com/public/images/uploads/john/family.png ) I need to show the images using img tags, so I cannot place a file except public . How can I ensure that images of a user or group is not accessible by