diff --git a/about.html b/about.html new file mode 100644 index 0000000..6931302 --- /dev/null +++ b/about.html @@ -0,0 +1,107 @@ + + + + FreeSpeechList - List of Banned Personalities on Internet + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +

+ FreeSpeechList.com is like a search engine for deplatformed personalities. It is a project to keep track on the number of individuals getting deplatformed from each of these social platforms. +

+ + + +

+ Why we created it? +

+

+ Humans are social animals. And de-platforming pushes these animals to some dark corner of the internet, thus increasing darkness in their mind. There are some pro free-speech platforms which are helping everyone to get on the same page and 'discuss'. We provide a list of every popular individual who have been deplatformed by any website. +

+ + + +

+ What we created? +

+

+ While searching through internet, it is very hard to find these de-platformed individuals. So we created FreeSpeechList.com, a go to site to find all of them at a single place. Also our website keeps track of the platforms who are most open and against free speech. +

+ + + +

+ How we created it? +

+

+ Bunch of HTML, JavaScript and JSON code. And the data about the individuals getting deplatformed comes from you. If you or anyone you know meets our eligibilty standards, please send us your or the person's details on FreeSpeechList@protonmail.com (Screenshots will be appriciated). +

+ + +

+ Who we are? +

+

+ We are just like you who wants free speech and privacy both online and in real world. We are just like you who wants to keep track on number of times these platforms censors or ban free speech. +

+ + +

+ Do we agree with the individuals listed? +

+

+ We DO NOT agree or endorse anything these individuals listed on our site say. We also believe that the solution to hate speech is more speech. +

+ + +

+ "I may disagree with what you have to say, but I shall defend, to the death, your right to say it." - Evelyn Beatrice Hall +

+ + +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..6089df8 --- /dev/null +++ b/contact.html @@ -0,0 +1,85 @@ + + + + FreeSpeechList - List of Banned Personalities on Internet + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +

+ Contact Us +

+ + +

+ Addition to the List: +

+

+ If you or anyone you know meets our eligibilty standards, send us your or the person's details on FreeSpeechList@protonmail.com. Please provide all the platfroms from where they are banned, and all the links to profiles or sites they are currently active on. The subject of the email should only contain the word ADD. +

+ + +

+ Removal from the List: +

+

+ We list every individual who meet our eligibility standards. But if you want yourself removed from the list, please email us at FreeSpeechList@protonmail.com from own registered email address. The email must be sent from an email address which is publicly verifiable that it belongs to you. The subject of the email should only contain the word REMOVE. +

+ + +

+ Queries: +

+

+ For any queries regarding our website, terms, vision etc. please email us at FreeSpeechList@protonmail.com. The subject of the email should only contain the word OTHER. Currently we don't take any promotion request or donation. +

+ + + + +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/includes/footer.html b/includes/footer.html new file mode 100644 index 0000000..d0dde2f --- /dev/null +++ b/includes/footer.html @@ -0,0 +1,11 @@ +
+ +
+ Made for the internet +
+

+ +
+ Creative Commons License +
+
\ No newline at end of file diff --git a/includes/index.js b/includes/index.js new file mode 100644 index 0000000..c539778 --- /dev/null +++ b/includes/index.js @@ -0,0 +1,68 @@ +$.getJSON("./list.json",function(data){ + var people_list =''; + var point=0; + var rows = (data.length)%3==0 ? Math.trunc(data.length/3) : Math.trunc(data.length/3)+1; + console.log(rows); + for(let i=1;i<=rows;i++) + { + console.log("Row="+i); + people_list+='
'; + let count=1; + while(count<=3 && point'; + people_list+='
'; + people_list+='
'; + //Name + people_list+='

'+data[point].name+'

'; + people_list+='
'; + //Banned From + people_list+='

Banned from:

'; + people_list+='

'; + //List of banned websites + console.log("Length of Banned="+(data[point].banned).length); + for(let j=0;j<(data[point].banned).length;j++){ + if(j==((data[point].banned).length-1)) + { + people_list+=''; + } + else{ + people_list+='   '; + } + } + people_list+='

'; + people_list+='
'; + people_list+='

Currently on:

'; + people_list+='

'; + var without_logo='

'; + var with_logo='

'; + for(let j=0;j<(data[point].available).length;j++){ + if(data[point].available[j].logo==''){ + without_logo+=''+data[point].available[j].name+', '; + } + else{ + with_logo+='    ' + } + } + //without_logo+=without_logo.slice(0,-1); + without_logo=without_logo.slice(0,-7)+'

'; + with_logo=with_logo.slice(0,-49)+'

'; + console.log("With Logo ="+with_logo); + people_list+=without_logo; + people_list+=with_logo; + people_list+='

'; + people_list+='
'; + people_list+='
'; + people_list+='
'; + people_list+=''; + + console.log("Count="+(count++)+" Point="+(point++)); + } + people_list+=''; + } + $('#people-list').append(people_list); + }) \ No newline at end of file diff --git a/includes/navbar.html b/includes/navbar.html new file mode 100644 index 0000000..d7d24bd --- /dev/null +++ b/includes/navbar.html @@ -0,0 +1,21 @@ +
+ + +
\ No newline at end of file diff --git a/includes/stats.js b/includes/stats.js new file mode 100644 index 0000000..907ef3a --- /dev/null +++ b/includes/stats.js @@ -0,0 +1,91 @@ +$.getJSON('list.json',function (data) { + var bannedList = []; + var availList = []; + for(let i=0;i record.name === data[i].banned[j].name))!=undefined){ + for(let k=0;k (record.name === data[i].available[j].name)))!=undefined){ + for(let k=0;k'; + tableData+=' '+bannedList[i].name+''; + tableData+=''+bannedList[i].count+''; + tableData+=''; + } + $('#bannedTable').append(tableData); + + tableData=''; + let index=1; + for(let i=0;i'; + tableData+=' '+availList[i].name+''; + tableData+=''+availList[i].count+''; + tableData+=''; + index++; + } + } + $('#availTable').append(tableData); + + var obj = [{ + name:bannedList[0].name, + count:bannedList[0].count + }, + { + name:bannedList[1].name, + count:bannedList[1].count + }, + { + name:bannedList[2].name, + count:bannedList[2].count + } + ] + + localStorage.setItem('top-banned-list',JSON.stringify(obj)); + }) \ No newline at end of file diff --git a/includes/style.css b/includes/style.css new file mode 100644 index 0000000..f9f43f6 --- /dev/null +++ b/includes/style.css @@ -0,0 +1,24 @@ +/* Remove the navbar's default margin-bottom and rounded borders */ +.navbar { + margin-bottom: 0; + border-radius: 0; +} + +/* Add a gray background color and some padding to the footer */ +footer { + background-color: #f2f2f2; + padding: 25px; +} + +#card { + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4); + max-width: 350px; + margin: auto; + text-align: center; +} + +#a { + text-decoration: none; + font-size: 22px; + color: black; +} diff --git a/includes/top-three.js b/includes/top-three.js new file mode 100644 index 0000000..29623f7 --- /dev/null +++ b/includes/top-three.js @@ -0,0 +1,10 @@ +var obj = JSON.parse(localStorage.getItem('top-banned-list')); +console.log(obj[0].count); +var top_list='
'+'Banned from '+obj[0].name+':'; +top_list+='

'+obj[0].count+'

'; +top_list+='
'+'Banned from '+obj[1].name+':'; +top_list+='

'+obj[1].count+'

'; +top_list+='
'+'Banned from '+obj[2].name+':'; +top_list+='

'+obj[2].count+'

'; + +$('#top-three').append(top_list); diff --git a/index.html b/index.html index 6c40e3a..14ec0f4 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ + @@ -17,87 +18,27 @@ - - - +
-

Censored from online discourse: 13

+

Censored from online discourse: 

-
-
- Banned from Twitter: -

10

-
-
- Banned from Facebook: -

8

-
-
- Banned from Instagram: -

8

-
+
+
@@ -112,17 +53,7 @@

Censored from online discourse: 13



-
- -
- Made for the internet -
- - -
- Creative Commons License -
-
+
@@ -130,73 +61,12 @@

Censored from online discourse: 13

\ No newline at end of file diff --git a/list.json b/list.json index a3c6adf..9cf734c 100644 --- a/list.json +++ b/list.json @@ -1,281 +1,416 @@ [ { - "image":"https://storage.googleapis.com/afs-prod/media/1e04103d41a0423c85de6ce7d5355229/3000.jpeg", + "image":"https://static.infowars.com/about/alex-jones-image-4.jpg", "name":"Alex Jones", "banned":[ - { - "name":"Facebook", - "logo":"fab fa-facebook-square" - }, { "name":"Youtube", "logo":"fab fa-youtube" }, { - "name":"instagram", - "logo":"fab fa-instagram" + "name":"Facebook", + "logo":"fab fa-facebook-square" }, { - "name":"twitter", - "logo":"fab fa-twitter" + "name":"Instagram", + "logo":"fab fa-instagram" }, { - "name":"paypal", - "logo":"fab fa-paypal" + "name":"Twitter", + "logo":"fab fa-twitter" } ], "available":[ { "name":"InfoWars.com", "logo":"", + "personal":1, "link":"https://www.infowars.com" }, { - "name":"Gab (@RealAlexJone)", + "name":"Gab", "logo":"", + "personal":0, "link":"https://gab.com/RealAlexJones" - }, - { - "name":"instagram", - "logo":"fab fa-instagram", - "link":"https://www.instagram.com/acumia/" } ] }, { - "image":"", - "name":"Anthony Cumia", + "image":"https://media4.s-nbcnews.com/j/newscms/2019_13/2799041/190326-donald-trump-mc-1155_0dfd373a458b9638bad47c9e5581a314.fit-760w.JPG", + "name":"Donald Trump", "banned":[ { - "name":"twitter", + "name":"Facebook", + "logo":"fab fa-facebook-square" + }, + { + "name":"Instagram", + "logo":"fab fa-instagram" + }, + { + "name":"Twitter", "logo":"fab fa-twitter" + }, + { + "name":"Snapchat", + "logo":"fab fa-snapchat-square" + }, + { + "name":"Twitch", + "logo":"fab fa-twitch" + }, + { + "name":"Shopify", + "logo":"fab fa-shopify" + }, + { + "name":"TikTok", + "logo":"fab fa-tiktok" + }, + { + "name":"Discord", + "logo":"fab fa-discord" } + ], "available":[ { - "name":"CompoundMedia.com", + "name":"DonaldJTrump.com", "logo":"", - "link":"https://www.compoundmedia.com/" - }, - { - "name":"instagram", - "logo":"fab fa-instagram", - "link":"https://www.instagram.com/acumia/" + "personal":1, + "link":"https://www.donaldjtrump.com/" } ] }, { - "image":"", - "name":"Faith Goldy", + "image":"https://static.hollywoodreporter.com/sites/default/files/2017/04/gettyimages-513650708_-_h_2017-928x523.jpg", + "name":"Gavin McInnes", "banned":[ { - "name":"facebook", + "name":"Youtube", + "logo":"fab fa-youtube" + }, + { + "name":"Facebook", "logo":"fab fa-facebook-square" }, { - "name":"instagram", + "name":"Instagram", "logo":"fab fa-instagram" + }, + { + "name":"Twitter", + "logo":"fab fa-twitter" } ], "available":[ { - "name":"YouTube", - "logo":"fab fa-youtube", - "link":"https://www.youtube.com/channel/UClMWnUHbxJKJLUgloN1mPUA" + "name":"Censored.tv", + "logo":"", + "personal":1, + "link":"https://censored.tv/" }, { - "name":"twitter", - "logo":"fab fa-twitter", - "link":"https://twitter.com/FaithGoldy" + "name":"Apple", + "logo":"fab fa-apple", + "personal":0, + "link":"https://podcasts.apple.com/us/podcast/get-off-my-lawn-podcast-w-gavin-mcinnes/id1309316469" }, { - "name":"telegram", + "name":"Telegram", "logo":"fab fa-telegram-plane", - "link":"https://t.me/FaithGoldy" + "personal":0, + "link":"https://t.me/RealGavinMcInnes" } ] }, { - "image":"", - "name":"Paul Joseph Watson", + "image":"https://nypost.com/wp-content/uploads/sites/2/2020/04/laura-loomer-2.jpg?quality=90&strip=all&w=1024", + "name":"Laura Loomer", "banned":[ { - "name":"facebook", + "name":"Facebook", "logo":"fab fa-facebook-square" }, { - "name":"instagram", + "name":"Instagram", "logo":"fab fa-instagram" + }, + { + "name":"Twitter", + "logo":"fab fa-twitter" + }, + { + "name":"Paypal", + "logo":"fab fa-paypal" + }, + { + "name":"Uber", + "logo":"fab fa-uber" + }, + { + "name":"Lyft", + "logo":"fab fa-lyft" + }, + { + "name":"Medium", + "logo":"fab fa-medium" } ], "available":[ { - "name":"Minds", + "name":"Loomered.com", "logo":"", - "link":"https://www.minds.com/PaulJosephWatson/" + "personal":1, + "link":"https://loomered.com/" }, { "name":"Gab", "logo":"", - "link":"https://gab.com/RealAlexJones" - }, - { - "name":"Bitchute", - "logo":"", - "link":"https://www.bitchute.com/channel/pauljosephwatson/" + "personal":0, + "link":"https://gab.com/lauraloomer" }, { - "name":"Youtube", + "name":"YouTube", "logo":"fab fa-youtube", - "link":"https://www.youtube.com/user/PrisonPlanetLive" + "personal":0, + "link":"https://www.youtube.com/c/LauraLoomered" }, { - "name":"twitter", - "logo":"fab fa-twitter", - "link":"https://twitter.com/PrisonPlanet" - }, - { - "name":"telegram", + "name":"Telegram", "logo":"fab fa-telegram-plane", - "link":"https://t.me/pjwnews" + "personal":0, + "link":"https://t.me/loomeredofficial" } ] }, { - "image":"", - "name":"Alex Jones", + "image":"https://www.finalcall.com/artman/uploads/6/Minister-Farrakhan_05-14-2019.jpg", + "name":"Louis Farrakhan", "banned":[ { - "name":"facebook", + "name":"Facebook", "logo":"fab fa-facebook-square" }, { - "name":"youtube", - "logo":"fab fa-youtube" - }, - { - "name":"instagram", + "name":"Instagram", "logo":"fab fa-instagram" - }, - { - "name":"twitter", - "logo":"fab fa-twitter" - }, - { - "name":"paypal", - "logo":"fab fa-paypal" } ], "available":[ { - "name":"InfoWars.com", + "name":"NOI.org", "logo":"", - "link":"https://www.infowars.com" + "personal":1, + "link":"https://www.noi.org/" }, { - "name":"Gab (@RealAlexJone)", - "logo":"", - "link":"https://gab.com/RealAlexJones" + "name":"Twitter", + "logo":"fab fa-twitter", + "personal":0, + "link":"https://twitter.com/LouisFarrakhan" } ] }, { - "image":"", - "name":"Anthony Cumia", + "image":"https://i.guim.co.uk/img/media/5a7f2cc35a5b6015165fced3878a551538a63be0/5_171_1323_793/master/1323.jpg?width=1200&quality=85&auto=format&fit=max&s=572280cea7fba6ea5be7dab2d8ecd647", + "name":"Milo Yiannopoulos", "banned":[ { - "name":"twitter", + "name":"Facebook", + "logo":"fab fa-facebook-square" + }, + { + "name":"Instagram", + "logo":"fab fa-instagram" + }, + { + "name":"Twitter", "logo":"fab fa-twitter" + }, + { + "name":"Paypal", + "logo":"fab fa-paypal" + }, + { + "name":"Shopify", + "logo":"fab fa-shopify" + }, + { + "name":"Patreon", + "logo":"fab fa-patreon" + }, + { + "name":"Tumblr", + "logo":"fab fa-tumblr-square" } ], "available":[ { - "name":"CompoundMedia.com", + "name":"Milo.net", + "logo":"", + "personal":1, + "link":"https://milo.net/" + }, + { + "name":"Gab", "logo":"", - "link":"https://www.compoundmedia.com/" + "personal":0, + "link":"https://gab.com/m" + }, + { + "name":"YouTube", + "logo":"fab fa-youtube", + "personal":0, + "link":"https://www.youtube.com/user/yiannopoulosm" }, { - "name":"instagram", - "logo":"fab fa-instagram", + "name":"Telegram", + "logo":"fab fa-telegram-plane", + "personal":0, "link":"https://www.instagram.com/acumia/" } ] }, { - "image":"", - "name":"Faith Goldy", + "image":"https://images-na.ssl-images-amazon.com/images/S/sgp-catalog-images/region_US/i58bv-46HH5PPQF6K-Full-Image_GalleryBackground-en-US-1576132517878._RI_.jpg", + "name":"Owen Benjamin", "banned":[ { - "name":"facebook", + "name":"YouTube", + "logo":"fab fa-youtube" + }, + { + "name":"Facebook", "logo":"fab fa-facebook-square" }, { - "name":"instagram", + "name":"Instagram", "logo":"fab fa-instagram" + }, + { + "name":"Twitter", + "logo":"fab fa-twitter" + }, + { + "name":"Paypal", + "logo":"fab fa-paypal" + }, + { + "name":"Patreon", + "logo":"fab fa-patreon" } ], "available":[ { - "name":"YouTube", + "name":"Gab", "logo":"", - "link":"https://www.youtube.com/channel/UClMWnUHbxJKJLUgloN1mPUA" + "personal":0, + "link":"https://gab.com/OwenBenjamin" }, { - "name":"twitter", - "logo":"fab fa-twitter", - "link":"https://twitter.com/FaithGoldy" + "name":"Bitchute", + "logo":"", + "personal":0, + "link":"https://www.bitchute.com/channel/IqkVCnIJKhPk/" }, { - "name":"telegram", - "logo":"fab fa-telegram-plane", - "link":"https://t.me/FaithGoldy" + "name":"dlive", + "logo":"", + "personal":0, + "link":"https://dlive.tv/owenbenjamincomedy" } ] }, { - "image":"", + "image":"https://www.nationalobserver.com/sites/nationalobserver.com/files/img/2019/05/06/screenshot_2019-05-06_at_4.53.34_pm.png", "name":"Paul Joseph Watson", "banned":[ { - "name":"facebook", + "name":"Facebook", "logo":"fab fa-facebook-square" }, { - "name":"instagram", + "name":"Instagram", "logo":"fab fa-instagram" } ], "available":[ - { - "name":"Minds", - "logo":"", - "link":"https://www.minds.com/PaulJosephWatson/" - }, { "name":"Gab", "logo":"", - "link":"https://gab.com/RealAlexJones" + "personal":0, + "link":"https://gab.com/prisonplanet" }, { "name":"Bitchute", "logo":"", - "link":"https://www.bitchute.com/channel/pauljosephwatson/" + "personal":0, + "link":"https://www.bitchute.com/channel/9WF6N0ecQ55u/" }, { - "name":"youtube", + "name":"YouTube", "logo":"fab fa-youtube", + "personal":0, "link":"https://www.youtube.com/user/PrisonPlanetLive" }, { - "name":"twitter", + "name":"Telegram", + "logo":"fab fa-telegram-plane", + "personal":0, + "link":"https://t.me/pjwnews" + }, + { + "name":"Twitter", "logo":"fab fa-twitter", + "personal":0, "link":"https://twitter.com/PrisonPlanet" + } + + ] + }, + { + "image":"https://thumbor.forbes.com/thumbor/960x0/https%3A%2F%2Fspecials-images.forbesimg.com%2Fdam%2Fimageserve%2F9b3967e2f99a43c0a3859676d2eef6d6%2F960x0.jpg%3Ffit%3Dscale", + "name":"Tommy Robinson", + "banned":[ + { + "name":"YouTube", + "logo":"fab fa-youtube" + }, + { + "name":"Facebook", + "logo":"fab fa-facebook-square" + }, + { + "name":"Instagram", + "logo":"fab fa-instagram" + }, + { + "name":"TikTok", + "logo":"fab fa-tiktok" + }, + { + "name":"Snapchat", + "logo":"fab fa-snapchat-square" }, { - "name":"telegram", + "name":"Twitter", + "logo":"fab fa-twitter" + } + ], + "available":[ + { + "name":"Bitchute", + "logo":"", + "personal":0, + "link":"https://www.bitchute.com/channel/vztVBAlS9Iar/" + }, + { + "name":"Telegram", "logo":"fab fa-telegram-plane", - "link":"https://t.me/pjwnews" + "personal":0, + "link":"https://t.me/TommyRobinsonNews" } ] diff --git a/stats.html b/stats.html index d0a21f6..0c5c1aa 100644 --- a/stats.html +++ b/stats.html @@ -6,6 +6,7 @@ + @@ -17,55 +18,20 @@ - - - - - +
-

Most suspensions by a website:

+

Most Suspensions by a Website:

@@ -106,7 +72,7 @@

Most suspensions by a website:

-

Most open to controversial opinions:

+

Most Open to Free Speech:

@@ -150,102 +116,15 @@

Most open to controversial opinions:

-
- -
- Made with for the internet -
-

- -
- Creative Commons License -
-
+
- - - - - - \ No newline at end of file diff --git a/terms.html b/terms.html new file mode 100644 index 0000000..bc6e134 --- /dev/null +++ b/terms.html @@ -0,0 +1,117 @@ + + + + FreeSpeechList - List of Banned Personalities on Internet + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +

+ Hello, people of the Internet! This User Agreement (“Terms”) applies to your access to and use of the websites, mobile apps, widgets, APIs, emails, and other online products and services (collectively, the “Services”) provided by FreeSpeechList.com (“Free Speech List,” “we,” “us,” or “our”). +

+ + +

+ We don't believe that a 300-Page terms is ethical to publish/provide. We have simplified everything into just few points: +

+ + +

+ Privacy Policy: +

+

+ We DO NOT collect any form of data from you. Neither we sell any information (including emails) that you send us. But we highly encourage you to use blockers and browsers which block trackers. +

+ + +

+ Ads: +

+

+ We DO NOT run any types of ads. +

+ + +

+ Who we will index/list (Eligibility): +

+

+

    +
  1. A person who has been deplatformed from more than 2 platforms.
  2. +
  3. A person with 10,000+ followers in any of the platforms they have been deplatformed from.
  4. +
  5. A person who is not a listed Pedophile, Terrorist etc. in any democratic country.
  6. +
  7. A person not on the run (or wanted) from police or court of any democratic country.
  8. +
+ If you or anyone you know fulfils these 3, please send us your or the person's details on FreeSpeechList@protonmail.com (Screenshots will be appriciated) +

+ + +

+ Listed Individuals: +

+

+ We do not endorse anyone listed in our website. We do not endorse anything they speak/publish/post on other platforms or around the internet. FreeSpeechList.com is like a search engine for banned personalities. We just list people who meet our eligibility standards. +

+ + +

+ Removal: +

+

+ We list every individual who meet our eligibility standards. But if you want yourself removed from the list, please email us at FreeSpeechList@protonmail.com from own registered email address. The mail must be sent from an email address which is publicly verifiable that it belongs to you. +

+ + +

+ By visiting our website (FreeSpeechList.com) you give your consent to agree to our terms. The terms are effective from: Jan 17, 2021 +

+ +
+ + + + + + + + + +
+ +
+ + + + \ No newline at end of file