jk2faster's comments

jk2faster | 6 years ago | on: Why Aren’t We Talking About LinkedIn?

I've long deleted my Facebook account. Tried LinkedIn recently, thinking it won't suck much time and will be a bit more privacy respecting than Facebook and the like--but boy was I wrong. I found LinkedIn more aggressively attention and details grabbing. I felt that it nags us to comment on others post and update our profiles recently. The e-mail notification frequency was so high that I thought to delete the account right away but then found out that we can turn it off selectively. I don't know the plight of Facebook now but it shows us even more reasons to glue to our profile/upgrade to the premium plan like "You've been searched X times this week". The more data and attention they get, more can they make from premium accounts. It's no better from Facebook and such from these two perspectives(attention and privacy).

jk2faster | 6 years ago | on: Plant trees while you search the web

You're right, privacy is not their selling point. But they do have many phrases like "We don’t store your searches permanently" and "We don’t sell your data to advertisers" in their website, which are technically true but I misunderstood that they don't store my IP either because of those. I came across the text I quoted in the parent comment months later when I came across a thread in r/privacy and I passed it on. StartPage and DuckDuckGo still makes money from ads and doesn't share user IP. It would have been great if Ecosia functioned similarly, and in that case many people like me who are concerned about sharing IP with Bing(or other services) can join Ecosia for search.

jk2faster | 6 years ago | on: Plant trees while you search the web

>Explain why you believe that's a negative? If you use Bing normally they would know your IP as well

I'm a bit uncomfortable in letting MicroSoft associate my IP with what I search daily. I use GitHub and Linkedin and most of the time I'm logged in to at least one of those services. Now I don't know for sure if Bing associates these searches to my account based on the IP(someone can shed some light on this?). StartPage and DuckDuckGo both use third party searches but they don't share user IP(https://support.startpage.com/index.php?/Knowledgebase/Artic...)

For other details like search term, country etc... I absolutely understand that they are needed to be send. I just quoted them as a sentence.

If it wasn't for the IP sharing, I would be a happy ecosia user :)

jk2faster | 6 years ago | on: Plant trees while you search the web

It is not. I've been using DuckDuckGo before switching to them, for me privacy is a big deal. When I first saw ecosia, I thought it was similar to DDG in terms of privacy(Probably because they had pro-privacy phrases).

I know it's not a problem for most, especially if they are using search engines like Bing or Google. And I believe it's better to use ecosia than using say, Bing or Google.

jk2faster | 6 years ago | on: Plant trees while you search the web

I used ecosia for a period of few months, and stopped when I read this their privacy policy(https://info.ecosia.org/privacy#privacy-policy-section-7):

> For example, when you do a search on Ecosia we forward the following information to our partner, Bing: IP address, user agent string, search term, and some settings like your country and language setting.

So when a search is done, our IP address is send to Bing.

I really love the idea of planting trees from profit, and have nothing against ecosia. Just commented to inform readers. <edit> Before getting downvoted into oblivion, I would like to make it clear that I'm not saying ecosia is unethical or that everyone should stop using it because of this. For some it matters, for some it doesn't and ecosia seems a great choice for those whom this doesn't matter. I'm just posting it so that those who do care(about their IP being send to Bing) can be aware(since I wasn't for a few months). </edit>

jk2faster | 6 years ago | on: Google’s new reCAPTCHA has a dark side

No, it is similar to recaptcha -- users select pictures to given description. In case of recaptcha, the work is free labor to google whereas in this case, it is paid to the site owner.

jk2faster | 6 years ago | on: Google’s new reCAPTCHA has a dark side

And it'll only get worse. From the article:

> "If you have a Google account it’s more likely you are human"

So, in the future if we don't keep signed into our google account(and let google know every article we read and every website we browse), we'll be cut off from the half of the internet or even more. The amount of control a handful of companies have over the internet is suffocating to know!

jk2faster | 6 years ago | on: Show HN: Percentage Calculator – My Daughter's First JavaScript App

This is a pretty neat beginning :)

   $('#cal-1').click(function(){
        $('#res-1').html($('#in-1-1').val()/100 * $('#in-1-2').val() );
        $('#res-1').show();
      });
      $('#cal-2').click(function(){
        $('#res-2').html(($('#in-2-1').val()/$('#in-2-2').val() * 100).toString() + '%');
        $('#res-2').show();
      });
      $('#cal-3').click(function(){
        $('#res-3').html((($('#in-3-2').val() - $('#in-3-1').val())/$('#in-3-1').val() * 100 ).toString() + '%');
        $('#res-3').show();
      });
page 1