jk2faster | 6 years ago | on: China Tries to Teach Trump Economics
jk2faster's comments
jk2faster | 6 years ago | on: Why Aren’t We Talking About LinkedIn?
jk2faster | 6 years ago | on: Plant trees while you search the web
So it is probably possible.
jk2faster | 6 years ago | on: Plant trees while you search the web
jk2faster | 6 years ago | on: Plant trees while you search the web
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
jk2faster | 6 years ago | on: Plant trees while you search the web
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
> 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: Raspberry Pi 4 not working with some chargers
jk2faster | 6 years ago | on: 17-Year Old Bug in Firefox Allows Local Files Theft Attacks
jk2faster | 6 years ago | on: Google’s new reCAPTCHA has a dark side
jk2faster | 6 years ago | on: Google’s new reCAPTCHA has a dark side
jk2faster | 6 years ago | on: Google’s new reCAPTCHA has a dark side
jk2faster | 6 years ago | on: Google’s new reCAPTCHA has a dark side
> "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: Google’s new reCAPTCHA has a dark side
jk2faster | 6 years ago | on: Show HN: Percentage Calculator – My Daughter's First JavaScript App
$('#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();
});