Earlier quoted context omitted.
I am dealing with it by not visiting homepages that rely on JavaScript. The point is I do not want a bunch of insecure code running on my computer just to read some text, which is what I usually do in a browser.
Maybe all you visit is blogs. But there are lots of websites that rely on JS in order to express their intentions. It's like watching a movie with the mute on because the english accents bothers you -and without the possibility of subtitles-.
A demonstration of browser events used to monitor online behaviour
141–150 of 172 posts
Re: A demonstration of browser events used to monitor online behaviour
#142This reminded me that notch web game[1]. Both kept me interested and I find them a very pleasant form of art. [1] http://game.notch.net/drowning/
Re: A demonstration of browser events used to monitor online behaviour
#143This reminded me that notch web game[1]. Both kept me interested and I find them a very pleasant form of art. [1] http://game.notch.net/drowning/
Surprised no one has mentioned Cookie Clicker yet, which I think was what inspired notch to write that game: http://orteil.dashnet.org/cookieclicker/ Notch's game was written in Dart and the source code is simple and elegant: http://ludumdare.com/compo/ludum-dare-29/?action=preview&uid...
Re: A demonstration of browser events used to monitor online behaviour
#144Who else feels a sense of horrible dread and frustration that every minutiae of my (and your) online activity is recorded for eternity and exploited to the fullest extent? What are you going to do about it?
I behave online with the understanding that my behaviour is essentially public. PS - how come all website product recommendations still suck? Data collection is rather ahead of data usage it seems...
Also assume that the connection between any and all pseudonyms used only is public knowledge. Because it is.
Re: A demonstration of browser events used to monitor online behaviour
#145Earlier quoted context omitted.
>You do know that the ad won't necessarily be relevant to you, right? Perhaps, but I don't really see the difference in the end. Anecdotally, I see ads for IntelliJ IDEA because I look up a lot of coding-related things. So does it matter that I'm getting this ad because Google's ad network has decided I like coding, or because IntelliJ selected some parameters and said "send this ad to coders"? The goal of either ope…
> making my life worse > technology improves my life in many ways First of all, it might not be about you . If you are privileged enough to not have to worry about being the target of prejudices, hatred, or the occasional witch hunt, then you might not see the necessity of keeping secrets. Some people are not that lucky. > making my life worse It probably isn't making your life worse at the moment . Right now we have…
Re: A demonstration of browser events used to monitor online behaviour
#146I got "Subject has run script to click on the button 10 times in one second" by using xdotool click --delay 10 --repeat 100 1, wonder whether that's checking timing or just assuming nobody clicks that fast.
Suspect it must be checking time, below didn't really trigger anything: for (var i = 0; i button.click(), Math.random()*1500) } I wish bundle.js weren't minified, it could be fun to read.
Re: A demonstration of browser events used to monitor online behaviour
#147> "Subject is privacy conscious, educated" 1/2
I'm curious how it determines these things, so I'm looking through the unminified JS, trying to understand it.
Now if it were to detect and call out that I was trying to reverse engineer it, that would be truly creepy.
Re: A demonstration of browser events used to monitor online behaviour
#148Earlier quoted context omitted.
I had a lot of fun automate this game and see the results. setInterval(function() {document.getElementsByTagName("a")[Math.floor(Math.random() * document.getElementsByTagName("a").length)].click()}, 5000)
or may be this: window.setInterval(function(){ [].forEach.call(document.querySelectorAll('a'), function (el){el.click();});},500)
Re: A demonstration of browser events used to monitor online behaviour
#149I used HotJar and it's pretty cool to see the actual website and the user navigating. This is a video of an actual recording a site owner will see: https://www.youtube.com/watch?v=3Odc4k4KXjc
Re: A demonstration of browser events used to monitor online behaviour
#150This reminded me that notch web game[1]. Both kept me interested and I find them a very pleasant form of art. [1] http://game.notch.net/drowning/
My desire to powergame this made the ending all the more tragic. I should rethink a few things i guess.