addings files + ressources tests

This commit is contained in:
Amaury Joly 2021-04-06 12:00:37 +02:00
parent 47dbc46ef5
commit 3afaee06e1
13 changed files with 2577 additions and 60 deletions

1
index.ts Normal file
View File

@ -0,0 +1 @@
export { ManageListener } from "./src/manage-listener";

View File

@ -1,19 +0,0 @@
import { ListenerRss, ListenerRSSInfos } from "listener-rss/src/";
/**
* Permit to manage a ListenerRSS array, data storage and event aggregation
*/
export class GestionListener {
listenerArray: ListenerRss[] = [];
GestionListener(path?: string): void {
if (path) {
// load a file or a bdd
} else {
// keep the class empty
}
}
addNewListener(info: ListenerRSSInfos): void {
this.listenerArray.concat(new ListenerRss(info));
}
}

View File

@ -1 +0,0 @@
export * from "./gestion-listener";

98
src/manage-listener.ts Normal file
View File

@ -0,0 +1,98 @@
import EventEmitter from "events";
import { ListenerRss, ListenerRSSInfos } from "listener-rss";
interface ManageListenerInfo {
timeloop?: number;
path?: string;
}
/**
* Permit to manage a ListenerRSS array, data storage and event aggregation
*/
export class ManageListener extends EventEmitter {
listenerArray: ListenerRss[] = [];
looprunning: boolean = false;
// manage aggregation
timeloop?: number;
buffUpdates: any[] = [];
buffNewEntries: any[] = [];
constructor(info?: ManageListenerInfo) {
super();
if (info) {
if (info.path) {
const fs = require("fs");
const tmp = fs.readFileSync(info.path);
const configs: ListenerRSSInfos[] = JSON.parse(tmp);
configs.forEach((config) => this.addNewListener(config));
}
if (info.timeloop) {
this.timeloop = info.timeloop;
this.buffUpdates = [];
}
}
}
settingEvents(newListener: ListenerRss): void {
if (this.timeloop) {
newListener.on("update", (obj) => this.buffUpdates.push(obj));
newListener.on("newEntries", (obj) => this.buffNewEntries.push(obj));
// /!\ todo /!\ threat error with aggregation
// newListener.on("error", (err) => this.emit("error", err));
} else {
newListener.on("update", (obj) => this.emit("update", obj));
newListener.on("newEntries", (obj) => this.emit("newEntries", obj));
newListener.on("error", (err) => this.emit("error", err));
}
}
addNewListener(info: ListenerRSSInfos): void {
const newListener = new ListenerRss(info);
this.listenerArray.push(newListener);
this.settingEvents(newListener);
}
save(path: string): void {
if (path.endsWith(".json")) {
const fs = require("fs");
fs.writeFileSync(
path,
JSON.stringify(
this.listenerArray.map((listener) => listener.getProperty())
)
);
}
}
startAll(): void {
if (!this.looprunning) {
this.looprunning = true;
this.listenerArray.forEach((listener) => listener.start());
if (this.timeloop) {
const fun: () => void = async () => {
this.emit("update", this.buffUpdates);
this.emit("newEntries", this.buffNewEntries);
};
(async () => {
while (this.looprunning) {
await fun();
await new Promise((res) =>
setTimeout(res, this.timeloop ? this.timeloop * 1000 : 0)
);
}
})();
}
}
}
stopAll(): void {
if (this.looprunning) {
this.looprunning = false;
this.listenerArray.forEach((listener) => listener.stop());
}
}
}

View File

@ -1,40 +0,0 @@
// external lib
import { ListenerRss, ListenerRSSInfos } from "listener-rss/src/";
// local lib
import { GestionListener } from "/src/index";
// Unit test
import * as chai from "chai";
import sinon from "ts-sinon";
import sinonChai from "sinon-chai";
import { ImportMock, InPlaceMockManager } from "ts-mock-imports";
chai.use(sinonChai);
const expect = chai.expect;
describe("test class GestionListener", function () {
const listenerInfoArray: ListenerRSSInfos[] = [
{
name: "service1",
address: "fake.rss.service1",
timeloop: 45,
},
{
name: "service2",
address: "fake.rss.service2",
timeloop: 30,
},
{
name: "service3",
address: "fake.rss.service3",
timeloop: 15,
},
{
name: "service4",
address: "fake.rss.service4",
timeloop: 60,
},
];
});

View File

@ -0,0 +1 @@
[{"address":"fake.rss.service.1","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":10},{"address":"fake.rss.service.2","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":20},{"address":"fake.rss.service.3","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":30},{"address":"fake.rss.service.4","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":40},{"address":"fake.rss.service.5","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":50},{"address":"fake.rss.service.6","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":60},{"address":"fake.rss.service.7","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":70},{"address":"fake.rss.service.8","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":80},{"address":"fake.rss.service.9","customfields":{"media:group":["media:group"]},"lastEntriesLinks":[],"timeloop":90}]

View File

@ -0,0 +1,639 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:yt="http://www.youtube.com/xml/schemas/2015" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
<link rel="self" href="http://www.youtube.com/feeds/videos.xml?channel_id=UCOuIgj0CYCXCvjWywjDbauw"/>
<id>yt:channel:UCOuIgj0CYCXCvjWywjDbauw</id>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Chat Sceptique</title>
<link rel="alternate" href="https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2018-08-17T18:48:53+00:00</published>
<entry>
<id>yt:video:CCnXUShhmEc</id>
<yt:videoId>CCnXUShhmEc</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>L'ERREUR des scientifiques débutants</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=CCnXUShhmEc"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2021-03-02T17:45:00+00:00</published>
<updated>2021-03-18T18:22:45+00:00</updated>
<media:group>
<media:title>L'ERREUR des scientifiques débutants</media:title>
<media:content url="https://www.youtube.com/v/CCnXUShhmEc?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/CCnXUShhmEc/hqdefault.jpg" width="480" height="360"/>
<media:description>Le scientifique débutant n'arrive souvent pas à analyser ses données. Pourtant, il comprend souvent très bien ce qu'est un histogramme, une moyenne ou une p-valeur. Le souci, c'est l'étape AVANT analyse, trop souvent sous-estimée.
Ressources :
L'UCLouvain, la plus grande université francophone de Belgique, qui sponsorise cette vidéo : https://uclouvain.be/fr/index.html
(j'y ai fait ma thèse !)
Le Louvain Learning Lab (LLL) :
https://uclouvain.be/fr/etudier/lll
Le livre d'Eurostat dont j'ai tiré la carte sur l'accès des ménages à l'Internet rapide en Europe :
https://www.interreg-baltic.eu/fileadmin/user_upload/News/2015_all_news/201510_October/KS-HA-15-001-EN-N.pdf
La vidéo de Scilabus : https://www.youtube.com/watch?v=pcHXm4Z4zJ4
L'étude de 2016 sur la sexualité de la jeunesse suédoise : https://sci-hub.se/https://www.tandfonline.com/doi/abs/10.1080/00224499.2016.1167814
L'internaute qui enregistre ses sessions masturbatoires :
https://www.reddit.com/r/dataisbeautiful/comments/47elmc/i_recorded_my_masturbation_habits_for_the_third/
Les musiques : https://freemusicarchive.org/music/Bio_Unit/aerostat
Vous avez aimé cet épisode ? N'oubliez pas de maintenir la gamelle du Chat Sceptique remplie !
uTip - https://utip.io/chatsceptique
Tipeee - https://fr.tipeee.com/chatsceptique
La vidéo idiote de fin de description (des chats qui jouent dans la neige !)
https://www.youtube.com/watch?v=AA78yiOygcQ</media:description>
<media:community>
<media:starRating count="5577" average="4.96" min="1" max="5"/>
<media:statistics views="60528"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:aLcfWq7t6Cw</id>
<yt:videoId>aLcfWq7t6Cw</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Vaccins et biais de la victime IDENTIFIABLE</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=aLcfWq7t6Cw"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2021-01-22T16:18:18+00:00</published>
<updated>2021-01-29T10:49:55+00:00</updated>
<media:group>
<media:title>Vaccins et biais de la victime IDENTIFIABLE</media:title>
<media:content url="https://www.youtube.com/v/aLcfWq7t6Cw?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/aLcfWq7t6Cw/hqdefault.jpg" width="480" height="360"/>
<media:description>Beaucoup de moins de 30 ans voire moins de 40 ans me disent que ce nest pas dans lintérêt de leur génération de se faire vacciner contre le coronavirus. Le virus tuant surtout &quot;les vieux&quot;, pourquoi les jeunes devraient-ils prendre le risque dun vaccin ? Voici ma réponse.
Mille mercis aux chatons sceptiques qui mont donné leur avis et conseillé dans la rédaction du script de cette (courte) vidéo.
https://www.facebook.com/groups/890137121364437
Un merci tout particulier à Pauline (alias La mal biaisée) grâce à qui jai découvert le livre « Économie du bien commun ».
https://www.youtube.com/channel/UCY2w3Jdy5e65LZUepePht0g
Ressources :
https://cress-umr1153.fr/covid_vaccines/
https://www.puf.com/content/%C3%89conomie_du_bien_commun
https://en.wikipedia.org/wiki/Jean_Tirole
Vous pensez que ce que je fais est bien ? Donnez-moi les moyens de continuer !
uTip - https://utip.io/chatsceptique
Tipeee - https://fr.tipeee.com/chatsceptique</media:description>
<media:community>
<media:starRating count="8512" average="4.82" min="1" max="5"/>
<media:statistics views="54605"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:hOWB7o6XUSU</id>
<yt:videoId>hOWB7o6XUSU</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Scénario sans vaccins VS scénario avec vaccin : qui gagne ?</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=hOWB7o6XUSU"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2021-01-06T16:19:02+00:00</published>
<updated>2021-01-29T11:04:20+00:00</updated>
<media:group>
<media:title>Scénario sans vaccins VS scénario avec vaccin : qui gagne ?</media:title>
<media:content url="https://www.youtube.com/v/hOWB7o6XUSU?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/hOWB7o6XUSU/hqdefault.jpg" width="480" height="360"/>
<media:description>Des centaines de millions de personnes dans le monde seront vaccinées en 2021. Avec quelles conséquences ?
Ressources :
L'ouverture de l'épisode m'a été inspirée par Vlanx, l'un de mes vidéastes favoris du moment :
https://www.youtube.com/watch?v=aBqQPcUtmnk
Les morts en France :
https://www.insee.fr/fr/statistiques/serie/000436394#Telechargement
Les morts dans le monde :
https://www.who.int/news-room/fact-sheets/detail/the-top-10-causes-of-death
La vidéo sur les vaccins de la chaine &quot;In a Nutshell&quot; : https://www.youtube.com/watch?v=zBkVCpbNnkU
Les effets de la COVID-19 sur l'être humain :
https://science.sciencemag.org/content/369/6500/208
https://en.wikipedia.org/wiki/Coronavirus_disease_2019#Prognosis
Le développement des vaccins contre la COVID-19 :
https://en.wikipedia.org/wiki/COVID-19_vaccine
À propos de celui de Pfizer :
https://en.wikipedia.org/wiki/Tozinameran
https://www.nejm.org/doi/full/10.1056/NEJMoa2034577
https://pubmed.ncbi.nlm.nih.gov/33301246/
https://www.rtbf.be/info/dossier/epidemie-de-coronavirus/detail_vaccin-de-pfizer-biontech-contre-le-coronavirus-que-dit-la-notice-detaillee?id=10649769
Comparaison de 10000 vaccinés versus 10000 malades par tranche d'âge, une ressource hélas découverte après la vidéo (sinon je l'aurais incluse dans la vidéo !) On peut aussi y voir les effets attendus du vaccin Moderna :
https://cress-umr1153.fr/covid_vaccines/?fbclid=IwAR3ISANgQ0qn7IXcNflpji3sseoBKIxzlNmqmrxQO8x1wAbYG8ucm3-p16s
Le livre de Muriel : http://www.editions-ulb.be/fr/book/?gcoi=74530100555340
Les musiques de la vidéo, par Ketsa :
https://freemusicarchive.org/music/Ketsa/1-of-1/whiskey-waltz
https://freemusicarchive.org/music/Ketsa/abundance/upper-levels
Autres ressources :
https://www.statnews.com/2020/12/17/calculating-our-way-to-herd-immunity/
https://www.youtube.com/watch?v=fH7rHR_dJbk
Vous avez aimé cet épisode ? N'oubliez pas de maintenir la gamelle du Chat Sceptique remplie !
uTip - https://utip.io/chatsceptique
Tipeee - https://fr.tipeee.com/chatsceptique
Tu es sérieusement allé jusqu'à la fin de la description, respect. Voici une vidéo idiote avec des chats en guise de récompense : https://www.youtube.com/watch?v=_t773h9UolY</media:description>
<media:community>
<media:starRating count="15129" average="4.83" min="1" max="5"/>
<media:statistics views="141026"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:xhxok5nZsVI</id>
<yt:videoId>xhxok5nZsVI</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>L'ULTIME méthode de comparaison en science</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=xhxok5nZsVI"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-12-01T17:30:03+00:00</published>
<updated>2020-12-14T16:53:42+00:00</updated>
<media:group>
<media:title>L'ULTIME méthode de comparaison en science</media:title>
<media:content url="https://www.youtube.com/v/xhxok5nZsVI?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/xhxok5nZsVI/hqdefault.jpg" width="480" height="360"/>
<media:description>À ressources égales, tous les scientifiques ne vont pas réussir à faire autant de découvertes. Certains vont en faire beaucoup. D'autres, moins. Et puis bien sûr, il y a ceux qui font faire de la merde malgré de parfois beaux diplômes. Un point de séparation important de tout ce monde ? Les méthodes employées.
Retrouvez toutes les sources (il en a beaucoup !) de la vidéo du jour en libre accès sur
https://fr.tipeee.com/chatsceptique/news/102286
Vous avez aimé cet épisode ? N'oubliez pas de maintenir la gamelle du Chat Sceptique remplie !
uTip - https://utip.io/chatsceptique
Tipeee - https://fr.tipeee.com/chatsceptique
Pour la vidéo idiote avec des chats que je cache toujours en fin de description, rdv sur Tipeee ;-)</media:description>
<media:community>
<media:starRating count="9030" average="4.90" min="1" max="5"/>
<media:statistics views="73057"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:y1d12A0C9tQ</id>
<yt:videoId>y1d12A0C9tQ</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Bientôt 8 milliards dhumains. Savez-vous où sur Terre ? (cest pas si simple !)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=y1d12A0C9tQ"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-10-22T18:00:07+00:00</published>
<updated>2020-12-28T10:42:04+00:00</updated>
<media:group>
<media:title>Bientôt 8 milliards dhumains. Savez-vous où sur Terre ? (cest pas si simple !)</media:title>
<media:content url="https://www.youtube.com/v/y1d12A0C9tQ?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/y1d12A0C9tQ/hqdefault.jpg" width="480" height="360"/>
<media:description>Cest un vieux problème. Où se concentrent les humains à la surface de la Terre ? On sait bien sûr quil y a davantage de gens en Asie quen Europe par exemple, mais la position en temps réel des gens, même par paquet de 1000 personnes, demeure une inconnue aussi bien en Europe qu'en Asie. Pourtant, si on veut efficacement aider les gens en cas de famine, de pandémie, de guerre ou de catastrophe naturelle, savoir où se trouvent les gens est essentiel !
À la recherche des nombreuses cartes présentées dans l'épisode du jour ? Il y a beaucoup trop pour placer tout ça en description, j'ai donc tout centralisé sur Tipeee, ainsi que des choses supplémentaires non présentées dans l'épisode. Bonne découverte !
https://fr.tipeee.com/chatsceptique/news/98259
Musiques :
1/ Tape &amp; Water (par Daniel Birch)
https://freemusicarchive.org/music/Daniel_Birch/Ambient_Experiments_With_A_Yamaha_PortaSound_PSS-140/LANDR-Tape__Water
2/ Oxygen Garden (par Chris Zabriskie)
https://www.youtube.com/watch?v=3tRFVyD51pQ
Vous avez aimé cet épisode ? N'oubliez pas de maintenir la gamelle du Chat Sceptique remplie !
uTip - https://utip.io/chatsceptique
Tipeee - https://fr.tipeee.com/chatsceptique
Mon livre (France) : https://livre.fnac.com/a14839571/Adelina-Kulmakhanova-L-Art-d-exprimer-son-desaccord-sans-se-facher
Mon livre (Belgique) : https://www.fr.fnac.be/a14839571/Adelina-Kulmakhanova-L-Art-d-exprimer-son-desaccord-sans-se-facher
Pour la vidéo avec des chats idiots que je cache toujours en fin de description, rdv sur Tipeee ;-)</media:description>
<media:community>
<media:starRating count="8811" average="4.98" min="1" max="5"/>
<media:statistics views="56255"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:AoFa59UUf-U</id>
<yt:videoId>AoFa59UUf-U</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>La distribution hypergéométrique peut-elle servir à la maison ? (OUI)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=AoFa59UUf-U"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-10-08T16:30:00+00:00</published>
<updated>2021-02-23T12:38:22+00:00</updated>
<media:group>
<media:title>La distribution hypergéométrique peut-elle servir à la maison ? (OUI)</media:title>
<media:content url="https://www.youtube.com/v/AoFa59UUf-U?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/AoFa59UUf-U/hqdefault.jpg" width="480" height="360"/>
<media:description>Savez-vous faire la différence entre des cacahuètes chères et pas chères ? Moi pas 😅 L'enjeux est moins idiot qu'il n'y paraît. Car si on ne fait pas la différence, à quoi bon acheter des cacahuètes qui sont parfois 500% plus chères que les moins chères ? Sans rendre les choses compliquées, je vous guide sur comment tester ça *scientifiquement* à la maison.
Oui, vous l'aurez compris, ce problème de cacahuètes n'est en réalité qu'un prétexte pour parler de statistiques 😁
La chaine de Viviane :
https://www.youtube.com/user/scilabus
La vidéo sur le test de Viviane :
https://youtu.be/pcHXm4Z4zJ4
Le &quot;starter kit scientifique&quot; pour mener vos expériences sous la bannière hypergéométrique : https://fr.tipeee.com/chatsceptique/news/97056
Vidéo de Thomas de la Tronche en Biais sur l'homéopathie :
https://www.youtube.com/watch?v=kGDLDljaYxg
Exemple de papier de recherche où la distribution hypergéométrique est utilisée : https://pubmed.ncbi.nlm.nih.gov/3201145/
Je vulgarise ce papier ici : https://www.youtube.com/watch?v=i330LQsGfMg
Vous avez aimé cet épisode ? N'oubliez pas de maintenir la gamelle du Chat Sceptique remplie !
uTip - https://utip.io/chatsceptique
Tipeee - https://fr.tipeee.com/chatsceptique
Comme toujours pour ceux qui vont au bas des descriptions (bravo !), une vidéo idiote avec des chats : https://www.youtube.com/watch?v=sN6hnFjBaqU</media:description>
<media:community>
<media:starRating count="8454" average="4.96" min="1" max="5"/>
<media:statistics views="74517"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:3SYC3IqKm5U</id>
<yt:videoId>3SYC3IqKm5U</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>J'ai adopté une chatonne ❤️ (mais ce n'est pas vraiment de ça dont je veux parler)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=3SYC3IqKm5U"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-09-18T15:21:36+00:00</published>
<updated>2020-11-25T05:02:42+00:00</updated>
<media:group>
<media:title>J'ai adopté une chatonne ❤️ (mais ce n'est pas vraiment de ça dont je veux parler)</media:title>
<media:content url="https://www.youtube.com/v/3SYC3IqKm5U?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/3SYC3IqKm5U/hqdefault.jpg" width="480" height="360"/>
<media:description>Elle se nomme Bambou et rencontrera Cajou pour la première fois dans quelques jours 😅
Je reviens surtout sur la vidéo la plus populaire de la chaîne et je parle des projets pour cet automne 🔬🎙️
Lien utile pour le livre :
https://www.amazon.fr/Lart-dexprimer-d%C3%A9saccord-sans-f%C3%A2cher/dp/2410017746
Si vous êtes adhérent FNAC, vous pouvez même l'avoir pour 17,10 EUR au lieu de 18 !
https://www.fr.fnac.be/a14839571/Adelina-Kulmakhanova-L-Art-d-exprimer-son-desaccord-sans-se-facher
La cible de Graham est téléchargeable sur Tipeee, mais aussi sur Wikipédia :
https://fr.tipeee.com/chatsceptique/news/60905
https://commons.wikimedia.org/wiki/File:Cible_de_Graham_02.png
Pas encore vu la vidéo consacrée à cette cible ?
C'est ici : https://www.youtube.com/watch?v=ohU1tEwxOSE
Musique par Sergey Cheremisinov - Sea &amp; Night - Crystal Echoes
https://www.youtube.com/watch?v=TJKl80T7bEM</media:description>
<media:community>
<media:starRating count="5504" average="4.97" min="1" max="5"/>
<media:statistics views="36307"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:Aox6YjA7ytA</id>
<yt:videoId>Aox6YjA7ytA</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>La SPECTACULAIRE réduction des inégalités en France (1965-1980)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=Aox6YjA7ytA"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-06-30T14:00:03+00:00</published>
<updated>2020-11-28T01:29:31+00:00</updated>
<media:group>
<media:title>La SPECTACULAIRE réduction des inégalités en France (1965-1980)</media:title>
<media:content url="https://www.youtube.com/v/Aox6YjA7ytA?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/Aox6YjA7ytA/hqdefault.jpg" width="480" height="360"/>
<media:description>Allez sur https://nordvpn.com/chatsceptique pour profiter de 70% de réduction et utilisez le code promo &quot;chatsceptique&quot; pour 1 mois gratuit supplémentaire !
Pendant longtemps, les médias ont constitué ma seule fenêtre sur le monde. Problème : le monde vu à travers leur prisme ne colle pas toujours à la réalité. Il nous faut donc aller au-delà des médias pour espérer comprendre ce qui se passe autour de nous.
TOUS les liens utiles sont ici en accès libre (il y en a une tonne) : https://en.tipeee.com/chatsceptique/news/88703
Musique de l'épisode du jour par Scott Buckley : https://www.youtube.com/watch?v=x8h50E6ekR0
Ainsi que par Tryphème :
https://freemusicarchive.org/music/Tryphme/Thanks_God_For_Air_Emotions/02_-_Pour_Olympe
(cette dernière musique a aussi déjà été utilisée dans l'épisode sur la Belgique : https://youtu.be/bunopukqiAw
Tu as aimé cet épisode ? Moi et Maxime avons envie d'en faire d'autres ! N'oublie pas de maintenir la gamelle du Chat Sceptique remplie :
Tipeee - https://fr.tipeee.com/chatsceptique
uTip - https://utip.io/chatsceptique
********************
Tu peux aussi prendre un abonnement chez NordVPN pour un soutien indirect via le code chatsceptique : https://nordvpn.com/chatsceptique
********************
Twitter : https://twitter.com/chatsceptique
Facebook : https://www.facebook.com/chatsceptique
Les Chatons Sceptiques : https://www.facebook.com/groups/890137121364437
Bien joué, tu es arrivé au bout de la description. Si tu prends la peine de cliquer sur le lien Tipeee vers les sources, sache qu'il y a une vidéo de chat idiote à la fin O:-)
#DeGaulle #Médias</media:description>
<media:community>
<media:starRating count="9287" average="4.86" min="1" max="5"/>
<media:statistics views="115825"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:i330LQsGfMg</id>
<yt:videoId>i330LQsGfMg</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Soigner par les chats : comment la félinothérapie marche-t-elle ?</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=i330LQsGfMg"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-06-17T16:00:32+00:00</published>
<updated>2021-03-29T13:54:53+00:00</updated>
<media:group>
<media:title>Soigner par les chats : comment la félinothérapie marche-t-elle ?</media:title>
<media:content url="https://www.youtube.com/v/i330LQsGfMg?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/i330LQsGfMg/hqdefault.jpg" width="480" height="360"/>
<media:description>Une thérapie ultra colorée dont les témoignages de l'efficacité s'accumulent, y compris pour soigner le Covid. Déroule !
Sources de l'épisode : https://en.tipeee.com/chatsceptique/news/87462
Merci à Mr. Sam pour son caméo dans l'épisode du jour !
https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg
Musique de l'épisode du jour par Scott Buckley : https://www.youtube.com/watch?v=nw3UHvNU0QE
Tu as aimé cet épisode ? Moi et Maxime avons envie d'en faire d'autres ! N'oublie pas de maintenir la gamelle du Chat Sceptique remplie :
Tipeee - https://fr.tipeee.com/chatsceptique
uTip - https://utip.io/chatsceptique
Twitter : https://twitter.com/chatsceptique
Facebook : https://www.facebook.com/chatsceptique
Les Chatons Sceptiques : https://www.facebook.com/groups/890137121364437
Bien joué, tu es arrivé au bout de la description. Voici une vidéo de chats idiote en récompense. Attention ! Prochaine fois, elle sera dans le lien des sources O:-)
https://www.youtube.com/watch?v=7Nn7NZI_LN4
#Homéopathie #Chromatothérapie</media:description>
<media:community>
<media:starRating count="10516" average="4.93" min="1" max="5"/>
<media:statistics views="96945"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:ig395FC2e3c</id>
<yt:videoId>ig395FC2e3c</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Savez-vous résoudre ce problème ?</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=ig395FC2e3c"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-05-26T15:45:00+00:00</published>
<updated>2020-12-01T11:31:11+00:00</updated>
<media:group>
<media:title>Savez-vous résoudre ce problème ?</media:title>
<media:content url="https://www.youtube.com/v/ig395FC2e3c?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/ig395FC2e3c/hqdefault.jpg" width="480" height="360"/>
<media:description>Pourquoi diable gagne-t-on seulement une fois sur trois au jeu de Monty Hall en restant sur son choix initial, et deux fois sur trois dans le cas contraire ?
Si on sépare d'un coté le gobelet initialement choisi et de l'autre les deux gobelets qui n'ont pas été choisis, qu'est ce qu'on constate ? Le gobelet choisi concentre une probabilité de contenir la boule égale à 1/3. Les deux autres, ensemble, concentrent 2 chances sur trois.
Lorsque le maître de jeu se débarrasse d'un des deux gobelets du coté où 2/3 de la probabilité se concentre, ça ne change rien à cette probabilité : il reste 2 chances sur trois de ce coté là... sauf que maintenant il n'y a plus qu'un seul gobelet qui concentre tout ça sur lui après que la maître de jeu soit passé à l'action. C'est donc ce gobelet qu'il faut choisir, et c'est pour ça qu'il vaut mieux changer !
Le saviez-vous ? Après quelques essais au jeu de Monty Hall, les pigeons comprennent vite que rester sur son choix initial n'est pas la meilleure stratégie. Les humains, par contre, le comprennent moins vite : https://sciencetonnante.wordpress.com/2011/04/18/le-paradoxe-de-monty-hall-disponible-egalement-en-version-pigeon/
Le problème de Monty Hall sur Wikipédia :
https://fr.wikipedia.org/wiki/Probl%C3%A8me_de_Monty_Hall
Le site random.org : https://www.random.org/
L'histoire derrière ce site : https://www.random.org/history/
A propos du bruit de fond radio dans lequel nous baignons : https://en.wikipedia.org/wiki/Atmospheric_noise
Selon la page ci-dessus, il y aurait sur Terre 40 coups de foudre à la seconde.
L'agence américaine d'observation océanique et atmosphérique (NOAA) parle de son coté de 100 coups de foudre à la seconde : https://sos.noaa.gov/datasets/lightning-flash-rate/
Dans la vidéo, nous parlons donc de 40 à 100 coups de foudre à la seconde, non pas qu'un chiffre plus précis soit si important : le fait est que le phénomène est très intense !
Les ondes radio émises par un coup de foudre sont piégées entre le sol et l'ionosphère. Cest le physicien allemand Winfried Otto Schumann qui a posé les bases de notre compréhension de ce phénomène : https://en.wikipedia.org/wiki/Schumann_resonances
Le passage le plus intéressant : &quot;Lightning discharges are considered to be the primary natural source of Schumann resonance excitation; lightning channels behave like huge antennas that radiate electromagnetic energy at frequencies below about 100 kHz.&quot;
Script et narration : Nathan Uyttendaele
Illustration, animation, sound design : Laura Maugeri
Musique : Gwenaël Grisi</media:description>
<media:community>
<media:starRating count="4189" average="4.92" min="1" max="5"/>
<media:statistics views="64351"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:NCHYDtA60-g</id>
<yt:videoId>NCHYDtA60-g</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Prédire le régime politique via une régression logistique</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=NCHYDtA60-g"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-05-15T14:00:10+00:00</published>
<updated>2020-11-22T04:10:51+00:00</updated>
<media:group>
<media:title>Prédire le régime politique via une régression logistique</media:title>
<media:content url="https://www.youtube.com/v/NCHYDtA60-g?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/NCHYDtA60-g/hqdefault.jpg" width="480" height="360"/>
<media:description>Cela choque, mais on peut prédire le régime politique d'un pays juste en regardant la hauteur du plus haut gratte-ciel dans le pays. Déroule !
Ce second live statistique, tourné en direct ce 12 mai 2020, vous propose de le vérifier par vous-même et de réaliser l'étonnante facilité avec laquelle on peut constuire des modèles prédictifs. Pourvu qu'il y ait une corrélation entre deux variables, il sera possible d'en prédire l'une en fonction de l'autre.
Ce second live a bien sûr un aspect effrayant : s'il est si simple de prédire le régime politique d'un pays, pas trop de doute qu'une variable facile d'accès devrait permettre de prédire la sexualité de quelqu'un par exemple.
Codes + base de données utilisée dans le live : https://fr.tipeee.com/chatsceptique/news/83762
Le lien vers le premier live : https://www.youtube.com/watch?v=sav3Mbe0_DM
#Régression #logistique</media:description>
<media:community>
<media:starRating count="2287" average="4.91" min="1" max="5"/>
<media:statistics views="45000"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:z_cACapt3Hc</id>
<yt:videoId>z_cACapt3Hc</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Chocolat et prix Nobel</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=z_cACapt3Hc"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-05-07T15:45:03+00:00</published>
<updated>2021-01-17T01:24:30+00:00</updated>
<media:group>
<media:title>Chocolat et prix Nobel</media:title>
<media:content url="https://www.youtube.com/v/z_cACapt3Hc?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/z_cACapt3Hc/hqdefault.jpg" width="480" height="360"/>
<media:description>2012, l'année durant laquelle il a été prouvé que manger du chocolat permet de décrocher un prix Nobel. Ou pas. Retour avec Albert sur cette histoire.
Ressources :
L'article original sur le lien entre chocolat et prix Nobel : http://www.biostat.jhsph.edu/courses/bio621/misc/Chocolate%20consumption%20cognitive%20function%20and%20nobel%20laurates%20(NEJM).pdf
Un contre-article : http://www.uclep.be/wp-content/uploads/pdf/Pub/Maurage_JN_2013.pdf
La notion de corrélation : https://goo.gl/EHWDrm
Script et narration : Nathan Uyttendaele
Illustration, animation, sound design : Laura Maugeri
Musique : Gwenaël Grisi</media:description>
<media:community>
<media:starRating count="3856" average="4.98" min="1" max="5"/>
<media:statistics views="40253"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:B9noooyh9Dk</id>
<yt:videoId>B9noooyh9Dk</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Maladies rares : l'apport de la formule de Bayes</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=B9noooyh9Dk"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-05-01T14:29:54+00:00</published>
<updated>2021-03-28T10:01:34+00:00</updated>
<media:group>
<media:title>Maladies rares : l'apport de la formule de Bayes</media:title>
<media:content url="https://www.youtube.com/v/B9noooyh9Dk?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/B9noooyh9Dk/hqdefault.jpg" width="480" height="360"/>
<media:description>Un bon test de détection dune maladie, sur papier, cest plutôt simple.
Déroule !
Malheureusement, en pratique, concevoir pareil test, c'est très difficile.
Le problème ? Si la maladie qu'on cherche à détecter est rare (on parlera d'une faible prévalence dans la population), une cruelle machinerie mathématique se met en route contre nous sans que l'on puisse rien y faire ! Une difficile réalité étonnement peu connue du grand public et souvent incomprise par de nombreux chercheurs.
Tu as aimé cet épisode ? Moi et Maxime avons envie d'en faire d'autres ! N'oublie pas de maintenir la gamelle du Chat Sceptique remplie :
Tipeee - https://fr.tipeee.com/chatsceptique
uTip - https://utip.io/chatsceptique
Les Chatons Sceptiques : https://www.facebook.com/groups/890137121364437
Twitter : https://twitter.com/chatsceptique
Facebook : https://www.facebook.com/chatsceptique
Sound design par Maxime Quetin.
Musique :
Ambiment par Kevin MacLeod
https://incompetech.filmmusic.io/song/3359-ambiment
Arrivé au bout de la description ? Voici une vidéo idiote avec des chats en récompense : https://www.youtube.com/watch?v=-2syg10o3A0
#Bayésianisme</media:description>
<media:community>
<media:starRating count="5125" average="4.97" min="1" max="5"/>
<media:statistics views="56128"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:sav3Mbe0_DM</id>
<yt:videoId>sav3Mbe0_DM</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Introduction à R et RStudio (feat : mon chat radioactif)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=sav3Mbe0_DM"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-04-16T17:34:56+00:00</published>
<updated>2021-03-28T08:35:58+00:00</updated>
<media:group>
<media:title>Introduction à R et RStudio (feat : mon chat radioactif)</media:title>
<media:content url="https://www.youtube.com/v/sav3Mbe0_DM?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/sav3Mbe0_DM/hqdefault.jpg" width="480" height="360"/>
<media:description>En un peu plus d'une heure et sans trainer autour du pot, je vous montre comment faire du R comme un pro.
Retrouvez les codes utilisés dans la vidéo et l'image de Cajou ici : https://fr.tipeee.com/chatsceptique/news/80664
Si vous avez aimé la vidéo, pensez à me laisser un petit pourboire, cela peut se faire notamment en regardant volontairement une publicité ici : https://utip.io/chatsceptique
Vive la chatistique !</media:description>
<media:community>
<media:starRating count="1572" average="4.96" min="1" max="5"/>
<media:statistics views="31884"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:paQzJCfo6Rw</id>
<yt:videoId>paQzJCfo6Rw</yt:videoId>
<yt:channelId>UCOuIgj0CYCXCvjWywjDbauw</yt:channelId>
<title>Le principe de Pareto (et ses limites)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=paQzJCfo6Rw"/>
<author>
<name>Chat Sceptique</name>
<uri>https://www.youtube.com/channel/UCOuIgj0CYCXCvjWywjDbauw</uri>
</author>
<published>2020-04-09T15:15:15+00:00</published>
<updated>2020-11-23T05:38:29+00:00</updated>
<media:group>
<media:title>Le principe de Pareto (et ses limites)</media:title>
<media:content url="https://www.youtube.com/v/paQzJCfo6Rw?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/paQzJCfo6Rw/hqdefault.jpg" width="480" height="360"/>
<media:description>Nous vivons dans un monde où une large part des effets résultent d'un nombre limité de causes. Et ça, c'est une superbe nouvelle : cela ouvre le chemin à une stratégie universelle d'impact sur le monde en faisant moins d'efforts 😻
À y regarder de plus près toutefois, la stratégie consistant à systématiquement s'attaquer aux causes ayant le plus d'effets n'est pas forcément la plus intelligente.
Quelques sources pour ceux souhaitant aller plus loin :
L'économiste Pareto : https://fr.wikipedia.org/wiki/Vilfredo_Pareto
Le principe de Pareto : https://en.wikipedia.org/wiki/Pareto_principle
Le créateur du principe (qui n'est pas Pareto lui-même) : https://en.wikipedia.org/wiki/Joseph_M._Juran
En France ou en Belgique, environ 40% des revenus vont dans la poche des 20% à gagner le plus. Retrouve ces données et les valeurs pour d'autres pays ici : https://data.worldbank.org/indicator/SI.DST.05TH.20?locations=FR
L'OMS prétend que 40% des cancers sont évitables : https://www.who.int/news-room/fact-sheets/detail/cancer
En réalité, certaines recherches avancent des chiffres encore plus impressionnants comme ici : 90 à 95% des cancers sont liés au style de vie et à l'environnement, donc évitables : https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2515569/
Pour la vidéo, j'ai identifié les plus grosses causes de cancer en France via ce papier : http://gco.iarc.fr/includes/PAF/PAF_FR_synthese.pdf
Notez que l'alimentation et le surpoids sont au coude à coude ; mon choix de faire passer l'alimentation après le surpoids/obésité est un rien arbitraire dans la vidéo.
Les trois sites proposant des conseils préventions qui sont passés dans la vidéo :
https://www.lavenir.net/cnt/dmf20200203_01439926/prise-en-charge-integrative-du-cancer
https://sosoir.lesoir.be/mieux-se-nourrir-pour-prevenir-le-cancer
https://gouvernement.lu/fr/actualites/toutes_actualites/communiques/2020/02-fevrier/03-sante-cancer.html
Tu as aimé cet épisode ? Moi et Maxime avons envie d'en faire d'autres ! N'oublie pas de maintenir la gamelle du Chat Sceptique remplie :
Tipeee - https://fr.tipeee.com/chatsceptique
uTip - https://utip.io/chatsceptique
Wow, tu as été au bout de cette description. Bien joué. Voici une vidéo mignonne en récompense :
https://www.youtube.com/watch?v=FzshsghJIE8</media:description>
<media:community>
<media:starRating count="9858" average="4.94" min="1" max="5"/>
<media:statistics views="107925"/>
</media:community>
</media:group>
</entry>
</feed>

View File

@ -0,0 +1,656 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:yt="http://www.youtube.com/xml/schemas/2015" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
<link rel="self" href="http://www.youtube.com/feeds/videos.xml?channel_id=UCY7klexd1qEqxgqYK6W7BVQ"/>
<id>yt:channel:UCY7klexd1qEqxgqYK6W7BVQ</id>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>Clément FREZE - Mentaliste</title>
<link rel="alternate" href="https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2012-11-01T11:37:03+00:00</published>
<entry>
<id>yt:video:OYDEiQTAIj8</id>
<yt:videoId>OYDEiQTAIj8</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>Je triche à Mot de Passe sur France 2 ! - Clément FREZE</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=OYDEiQTAIj8"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2021-01-17T15:05:44+00:00</published>
<updated>2021-03-29T15:06:04+00:00</updated>
<media:group>
<media:title>Je triche à Mot de Passe sur France 2 ! - Clément FREZE</media:title>
<media:content url="https://www.youtube.com/v/OYDEiQTAIj8?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/OYDEiQTAIj8/hqdefault.jpg" width="480" height="360"/>
<media:description>OUI FAKE-UP ARRIVE !
Comme vous le savez, j'ai récemment participé à l'émission « Mot de Passe » sur France 2.
Mais ce que vous ne savez pas, c'est que mes mauvaises réponses dans le jeu ont été délibérément voulues par la production afin que je ne sois pas (je cite) : « Trop bon ! »
Voilà ce qui a été coupé au montage, voilà la véritude !
Nous sachons !
Retrouvez mes passages dans l'émission ici : https://www.youtube.com/playlist?list=PLpdxyRSnvDlfeKO5rAuDrUiIGnbUf_LnE
Et merci ma Lolo ! ❤️
Amitiés
CF
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2320" average="4.91" min="1" max="5"/>
<media:statistics views="31345"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:6TcnLd0faXk</id>
<yt:videoId>6TcnLd0faXk</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>Les Maîtres de l'Imposture - Disponible en librairie - Clément FREZE</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=6TcnLd0faXk"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-09-09T14:31:28+00:00</published>
<updated>2021-03-26T08:36:28+00:00</updated>
<media:group>
<media:title>Les Maîtres de l'Imposture - Disponible en librairie - Clément FREZE</media:title>
<media:content url="https://www.youtube.com/v/6TcnLd0faXk?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/6TcnLd0faXk/hqdefault.jpg" width="480" height="360"/>
<media:description>Disponible en librairie et sur Amazon : https://www.amazon.fr/dp/2490945041/ref=cm_sw_r_tw_dp_x_GzowFbQB3VX0T
Le point de départ de notre aventure, chers lecteurs, est ici connu de vous et moi :
toutes ces histoires vraies sont de pures supercheries.
Chaque époque a vu naître son lot d'imposteurs, mais dans un monde de communication-médias-publicité-réseaux-sociaux destiné à assurer la domination du spectacle, ils sont légion.
Ce document relate 15 incroyables impostures qui vous plongent dans le cerveau de manipulateurs hors du commun. Savez-vous que la tour Eiffel a failli être vendue frauduleusement deux fois ? Qu'un faux témoignage a pu faire basculer l'opinion de toute une population jusqu'à une entrée en guerre ? Qu'une histoire émouvante totalement inventée a conduit une femme à la célébrité jusqu'à avoir son biopic au cinéma ?
Ces faussaires peuvent être vos proches, vos parents, vos amis, vos voisins ou se cacher dans la lumière de studios de télévision. Ces usurpateurs ont tous un point en commun : la volonté de vous duper et de faire prospérer le mensonge. Au cœur des récits, je vous livre leurs méthodes et les armes pour les détecter afin que vous puissiez reprendre le contrôle... Et les démasquer.
Né en 1997, sur la scène de l'Olympia dès ses vingt-deux ans, Clément Freze est mentaliste, hypnotiseur, performer et sceptique. Il démystifie des croyances majoritairement ésotériques et se sert de son art de l'illusion pour démocratiser l'esprit critique. Régulièrement en tournée dans toute la France, il possède une chaîne YouTube qui compte près de 60 000 abonnés.
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="1851" average="4.88" min="1" max="5"/>
<media:statistics views="21284"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:NsakaSVsK-I</id>
<yt:videoId>NsakaSVsK-I</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>🎼 Question de Bon Sens - PLS &amp; Clément Freze (ft. Didier Super)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=NsakaSVsK-I"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-09-03T18:29:00+00:00</published>
<updated>2021-03-26T23:34:20+00:00</updated>
<media:group>
<media:title>🎼 Question de Bon Sens - PLS &amp; Clément Freze (ft. Didier Super)</media:title>
<media:content url="https://www.youtube.com/v/NsakaSVsK-I?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/NsakaSVsK-I/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !
Aujourd'hui, c'est la rentrée...
Alors je vous propose un clip fait durant l'été pour fêter les 50 000 abonnés avec mes collègues du groupe PLS dont je vous invite à découvrir le travail.
Merci aussi à Didier Super pour son implication et sa participation dans ce clip.
J'espère que les nouveautés de cette année vous plairont, pour l'heure, n'hésitez pas à partager...
Amitiés
CF
La chanson sur Soundcloud : https://soundcloud.com/clementfreze/question-de-bon-sens
La chaîne de PLS : https://www.youtube.com/channel/UCfyG2tVnAVE2gcgFvw92_Gw
La chaîne de Didier Super : https://www.youtube.com/user/didierlevrai
La chanson a été enregistrée et mixée par Ulysse Lejeune chez Gravity Lab.
Clip réalisé par Clément Freze et Eliot Mini.
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2858" average="4.74" min="1" max="5"/>
<media:statistics views="24843"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:DR5NOWmyuI8</id>
<yt:videoId>DR5NOWmyuI8</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>MINDLIAR : Les dessous de l'affaire - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=DR5NOWmyuI8"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-05-16T21:37:36+00:00</published>
<updated>2020-11-22T13:07:11+00:00</updated>
<media:group>
<media:title>MINDLIAR : Les dessous de l'affaire - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/DR5NOWmyuI8?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/DR5NOWmyuI8/hqdefault.jpg" width="480" height="360"/>
<media:description>Ce documentaire a soulevé beaucoup de questions, spécifiquement sur la mythomanie et la nature des mensonges de Stéphane Bourgoin.
Après sa diffusion en YouTube première, accompagnée de Audrey La Psy qui Parle, Astronogeek, Defakator, Antoine Aresu et Ulysse Lejeune, j'ai décidé de répondre à la plupart d'entre-elles.
C'était mon tout premier live, et j'espère que l'occasion se représentera !
Réalisation : Jean-Pat</media:description>
<media:community>
<media:starRating count="7049" average="4.83" min="1" max="5"/>
<media:statistics views="288128"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:ttyVnyi1mRY</id>
<yt:videoId>ttyVnyi1mRY</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>MINDLIAR : L'imposture Stéphane Bourgoin - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=ttyVnyi1mRY"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-05-16T18:00:30+00:00</published>
<updated>2021-02-02T17:57:00+00:00</updated>
<media:group>
<media:title>MINDLIAR : L'imposture Stéphane Bourgoin - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/ttyVnyi1mRY?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/ttyVnyi1mRY/hqdefault.jpg" width="480" height="360"/>
<media:description>Aujourd'hui, je vous présente mon premier documentaire.
Un film YouTube sur l'imposture Stéphane Bourgoin.
Ce film a été fabriqué avec une équipe réduite, écrit et réalisé en 1 mois, monté en 100 heures seul en plein confinement.
Le site de 4ème Œil : https://4emeoeilcorporation.me/
Le site de la pétition : https://www.change.org/p/editions-gl%C3%A9nat-bd-pour-que-les-bd-sur-les-tueurs-en-s%C3%A9rie-de-st%C3%A9phane-bourgoin-soient-retir%C3%A9es-de-la-vente
La page de « Parcours de victimes » : https://www.facebook.com/parcours.de.victimes
Extraits de la Bande Originale : https://soundcloud.com/ulysse-lejeune
Cette vidéo n'est pas monétisée.
J'espère que cela vous plaira. N'hésitez pas à partager.
Amitiés
CF
---
CHAPITRAGE
00:00:00 Générique &amp; Introduction.
00:03:50 Une destinée hors du commun.
00:09:15 Mensonges ou Mythomanie ?
00:12:35 Mindhunter, qui inspire qui ?
00:18:46 Hey Charlie, une rencontre ?
00:24:45 Berkowitz, le fils de Sam.
00:27:37 Cours au FBI. Bourgoin begins.
00:40:25 Gendarmerie et magistrature.
00:45:40 Fourniret, l'ogre des ardennes.
00:53:51 Miss Eileen, a virtual victim story.
01:01:23 Schaefer le colocataire.
01:11:02 Murderabilia, descente à la cave.
01:16:11 Pistorius &amp; Affaire Stewart Wilken.
01:22:30 Des aveux, ou une parodie.
01:27:50 Conclusion
01:33:38 Générique de fin
---
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="50827" average="4.88" min="1" max="5"/>
<media:statistics views="2033898"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:t97DRTZcPYo</id>
<yt:videoId>t97DRTZcPYo</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>⛓️✉️ Une chaîne de pensées prédite ! 🤯🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=t97DRTZcPYo"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-04-06T22:02:52+00:00</published>
<updated>2021-01-15T10:30:05+00:00</updated>
<media:group>
<media:title>⛓️✉️ Une chaîne de pensées prédite ! 🤯🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/t97DRTZcPYo?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/t97DRTZcPYo/hqdefault.jpg" width="480" height="360"/>
<media:description>AVERTISSEMENT : La vidéo a été tournée en Février, avant le confinement.
Aujourd'hui, une chaîne de mots, vous savez que j'adore ça, couplée avec un numéro d'illusion du choix.
En espérant que cela vous plaise. Restez chez vous !
Amitiés
CF
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2064" average="4.95" min="1" max="5"/>
<media:statistics views="26238"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:BtLBSlbv6Rk</id>
<yt:videoId>BtLBSlbv6Rk</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>📊🧐 93% de non-verbal dans la communication ? 🔎🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=BtLBSlbv6Rk"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-04-01T15:22:25+00:00</published>
<updated>2021-03-27T01:10:46+00:00</updated>
<media:group>
<media:title>📊🧐 93% de non-verbal dans la communication ? 🔎🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/BtLBSlbv6Rk?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/BtLBSlbv6Rk/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !
Aujourd'hui, revenons sur une idée reçue, injustement rependue depuis des décennie. Voyons d'où vient cette aberration et si elle est fondée sur des études scientifiques rigoureuses ou non.
Amitiés
CF
Sources :
- Mehrabian, A., &amp; Ferris, S. R. (1967). Inference of attitudes from nonverbal communication in two channels. Journal of consulting psychology, 31(3), 248.
- Mehrabian, A., &amp; Wiener, M. (1967). Decoding of inconsistent communications. Journal of personality and social psychology, 6(1), 109.
- Mehrabian, A. (1971). Silent messages. Belmont, CA: Wadsworth.
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2934" average="4.97" min="1" max="5"/>
<media:statistics views="27730"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:RhUiF90_r88</id>
<yt:videoId>RhUiF90_r88</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>🔮 Du channeling en direct ! 🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=RhUiF90_r88"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-03-27T04:39:26+00:00</published>
<updated>2020-11-28T21:41:38+00:00</updated>
<media:group>
<media:title>🔮 Du channeling en direct ! 🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/RhUiF90_r88?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/RhUiF90_r88/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !
Aujourd'hui, je vous présente une petite vidéo improvisée tournée à l'issue du Tronche en Live du 7 Janvier, j'ai fait le choix de compter mes erreurs (même si pour la plus part j'aurais pu rebondir, l'honnêteté m'a poussé à être sévère envers moi-même) pour bien voir à quel point il est facile de valider une affirmation, et après tout, c'est l'essentiel... pas vrai ?
Amitiés à tous, Dana vous embrasse et restez chez vous !
CF
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2486" average="4.95" min="1" max="5"/>
<media:statistics views="19420"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:G-Yh1ENtnLo</id>
<yt:videoId>G-Yh1ENtnLo</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>😵 Une Définition de l'Hypnose ? 🌀🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=G-Yh1ENtnLo"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-03-20T21:26:16+00:00</published>
<updated>2020-12-04T07:17:03+00:00</updated>
<media:group>
<media:title>😵 Une Définition de l'Hypnose ? 🌀🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/G-Yh1ENtnLo?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/G-Yh1ENtnLo/hqdefault.jpg" width="480" height="360"/>
<media:description>Sources dans la description !
Salut tout le monde, aujourd'hui, je vous présente mon nouveau format : Hypnos.
Nous parlerons d'hypnose, une discipline plus vieille qu'on ne le pense, toutefois en excluant les idées reçues, les pseudosciences et autres balivernes en tout genre qui la polluent depuis pratiquement sa découverte. &#13;
Abonnez-vous et rejoignez le groupuscule malveillant, pour ne rien louper de tout ça !&#13;
&#13;
Amitiés&#13;
&#13;
CF
Sources globales pour l'épisode :
Nash, M. R., &amp; Barnier, A. J. (Eds.). (2012). The Oxford handbook of hypnosis: Theory, research, and practice. Oxford University Press.
Sources pour les multiples définitions de l'APA et la problématique sur la notion d'état :
Lynn, S. J., Green, J. P., Kirsch, I., Capafons, A., Lilienfeld, S. O., Laurence, J. R., &amp; Montgomery, G. H. (2015). Grounding hypnosis in science: The “new” APA Division 30 definition of hypnosis as a step backward. American Journal of Clinical Hypnosis, 57(4), 390-401.
Pour la méta-analyse (attention c'est costaud en Neurosciences) :
Landry, M., Lifshitz, M., &amp; Raz, A. (2017). Brain correlates of hypnosis: A systematic and meta-analytic exploration. Neuroscience &amp; Biobehavioral Reviews.
Pour l'étude de Rainville et al.:
Rainville, P., Streff, A., Chen, J. I., Houzé, B., Desmarteaux, C., &amp; Piché, M. (2019). Hypnotic automaticity in the brain at rest: An arterial spin labelling study. International Journal of Clinical and Experimental Hypnosis, 67(4), 512-542.
---&#13;
&#13;
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/&#13;
Twitter : https://twitter.com/clementfreze&#13;
Instagram : https://www.instagram.com/clementfreze&#13;
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2768" average="4.97" min="1" max="5"/>
<media:statistics views="19295"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:rHblzce7TSs</id>
<yt:videoId>rHblzce7TSs</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>❓ FREZEAQ 30k - Annonces &amp; Questions 🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=rHblzce7TSs"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-03-14T18:26:24+00:00</published>
<updated>2020-12-23T07:43:31+00:00</updated>
<media:group>
<media:title>❓ FREZEAQ 30k - Annonces &amp; Questions 🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/rHblzce7TSs?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/rHblzce7TSs/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !&#13;
&#13;
Aujourd'hui, la FAQ (ou plutôt FREZEAQ) des 30 000 abonnés, en retard, mais on ne change pas une équipe de merde...
De nouvelles choses arrivent et notamment des projets exceptionnels en cours de création. Stay tuned !
Tout ça c'est grâce à vous donc merci 30 000 fois !&#13;
&#13;
Amitiés&#13;
&#13;
CF&#13;
&#13;
---
&#13;
Tipeee : https://fr.tipeee.com/clementfreze/&#13;
Facebook : https://www.facebook.com/clementfreze/&#13;
Twitter : https://twitter.com/clementfreze&#13;
Instagram : https://www.instagram.com/clementfreze&#13;
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2402" average="4.93" min="1" max="5"/>
<media:statistics views="51019"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:t8e-784eUHI</id>
<yt:videoId>t8e-784eUHI</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>🤑✉️ 1500€ en jeu dans cette expérience. 🤯🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=t8e-784eUHI"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-03-02T20:16:04+00:00</published>
<updated>2021-01-15T12:44:11+00:00</updated>
<media:group>
<media:title>🤑✉️ 1500€ en jeu dans cette expérience. 🤯🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/t8e-784eUHI?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/t8e-784eUHI/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !
Aujourd'hui, un effet que j'apprécie tout particulièrement.
4 spectateurs ont 1 chance sur 5 de gagner 1500€, à moins que je n'arrive à les perturber.
N'hésitez pas à me donner votre avis.
Amitiés
CF
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="1467" average="4.95" min="1" max="5"/>
<media:statistics views="17069"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:QPsP0A-Iu1w</id>
<yt:videoId>QPsP0A-Iu1w</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>😶🔍 Le non-verbal 🤷🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=QPsP0A-Iu1w"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-02-28T19:13:05+00:00</published>
<updated>2021-03-29T04:40:04+00:00</updated>
<media:group>
<media:title>😶🔍 Le non-verbal 🤷🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/QPsP0A-Iu1w?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/QPsP0A-Iu1w/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !&#13;
&#13;
Aujourd'hui, nouvelle formule de Lie to Moi* ou nous parlerons de non-verbal, avec scepticisme !&#13;
Commençons par détruire quelques idées reçues sur le non-verbal. N'hésitez pas à me donner votre avis dans les commentaires sur ce nouveau format.&#13;
&#13;
Amitiés&#13;
&#13;
CF&#13;
Co-écriture : Clément FREZE &amp; Smo.6
&#13;
---&#13;
Tipeee : https://fr.tipeee.com/clementfreze&#13;
Facebook : https://www.facebook.com/clementfreze/&#13;
Twitter : https://twitter.com/clementfreze&#13;
Instagram : https://www.instagram.com/clementfreze&#13;
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="4495" average="4.98" min="1" max="5"/>
<media:statistics views="28158"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:0AXRQmA978k</id>
<yt:videoId>0AXRQmA978k</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>😱 NarkoTag et une mémoire kilométrique ? 📖🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=0AXRQmA978k"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-02-24T20:07:04+00:00</published>
<updated>2021-03-29T09:45:01+00:00</updated>
<media:group>
<media:title>😱 NarkoTag et une mémoire kilométrique ? 📖🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/0AXRQmA978k?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/0AXRQmA978k/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !&#13;
&#13;
Aujourd'hui, avec NarkoTag, l'ami de mon créateur lumières et ami d'enfance Coco, je vous invite à une expérience alliant mémoire, dictionnaire et mangas. En espérant que ça vous plaise.&#13;
&#13;
&#13;
Amitiés&#13;
&#13;
CF&#13;
La vidéo faîte avec Damien : https://www.youtube.com/watch?v=aK9tFuI375A
La chaîne de NarkoTag : https://www.youtube.com/user/NarkoTag83
&#13;
---&#13;
&#13;
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/&#13;
Twitter : https://twitter.com/clementfreze&#13;
Instagram : https://www.instagram.com/clementfreze&#13;
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="1415" average="4.91" min="1" max="5"/>
<media:statistics views="20709"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:wdl8D9SUnq8</id>
<yt:videoId>wdl8D9SUnq8</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>🧪🌳 L'appel à la nature (avec Julien LEPERS) ⚗️🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=wdl8D9SUnq8"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-02-18T18:14:04+00:00</published>
<updated>2021-03-26T14:13:09+00:00</updated>
<media:group>
<media:title>🧪🌳 L'appel à la nature (avec Julien LEPERS) ⚗️🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/wdl8D9SUnq8?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/wdl8D9SUnq8/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !&#13;
&#13;
Aujourd'hui, un épisode expliquant la différence entre &quot;Artificiel&quot; et &quot;Chimique&quot;, et la confusion faîte (parfois volontairement) au service de la vente de produits dits &quot;Naturels&quot;.
Et en prime, en guest-star dans EBBH, Julien LEPERS (oui, le vrai), un de mes héros d'enfance !
Méfions-nous du greenwashing !
Merci encore de votre soutien, n'hésitez pas à vous abonner.
Adaptation de l'épisode EBBH #53 à retrouver ici :
https://ebbh.fr/2020/01/episode-53-questions-pour-un-sceptique/
Sa page facebook : https://www.facebook.com/RoMEBBH/
Son Tipeee : https://fr.tipeee.com/evidence-based-bonne-humeur
&#13;
Amitiés&#13;
&#13;
CF&#13;
&#13;
---
&#13;
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/&#13;
Twitter : https://twitter.com/clementfreze&#13;
Instagram : https://www.instagram.com/clementfreze&#13;
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="4822" average="4.93" min="1" max="5"/>
<media:statistics views="38836"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:X19KrvmOcRM</id>
<yt:videoId>X19KrvmOcRM</yt:videoId>
<yt:channelId>UCY7klexd1qEqxgqYK6W7BVQ</yt:channelId>
<title>🤯📰 Une déduction et une étrange coïncidence ! 🕵🧠 - Clément Freze</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=X19KrvmOcRM"/>
<author>
<name>Clément FREZE - Mentaliste</name>
<uri>https://www.youtube.com/channel/UCY7klexd1qEqxgqYK6W7BVQ</uri>
</author>
<published>2020-02-04T19:59:51+00:00</published>
<updated>2021-03-27T11:43:23+00:00</updated>
<media:group>
<media:title>🤯📰 Une déduction et une étrange coïncidence ! 🕵🧠 - Clément Freze</media:title>
<media:content url="https://www.youtube.com/v/X19KrvmOcRM?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/X19KrvmOcRM/hqdefault.jpg" width="480" height="360"/>
<media:description>Salut tout le monde !&#13;
&#13;
Aujourd'hui, nouveau Mindfuck avec une routine que j'apprécie tout particulièrement, spécifiquement pour un collègue d'un groupe facebook qui m'a demandé si il était possible pour moi de faire ce que vous allez voir.
Challenge relevé !&#13;
J'espère que cela vous plaira, à très vite pour la vidéo FrezeAQ ainsi que pour le prochain Zétéclic.&#13;
&#13;
Amitiés&#13;
&#13;
CF&#13;
&#13;
---
Tipeee : https://fr.tipeee.com/clementfreze
Facebook : https://www.facebook.com/clementfreze/
Twitter : https://twitter.com/clementfreze
Instagram : https://www.instagram.com/clementfreze
Site Internet : http://clementfreze.fr/</media:description>
<media:community>
<media:starRating count="2474" average="4.98" min="1" max="5"/>
<media:statistics views="25058"/>
</media:community>
</media:group>
</entry>
</feed>

View File

@ -0,0 +1,917 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:yt="http://www.youtube.com/xml/schemas/2015" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
<link rel="self" href="http://www.youtube.com/feeds/videos.xml?channel_id=UCh2YBKhYIy-_LtfCIn2Jycg"/>
<id>yt:channel:UCh2YBKhYIy-_LtfCIn2Jycg</id>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>Mr. Sam - Point d'interrogation</title>
<link rel="alternate" href="https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2013-06-28T23:17:09+00:00</published>
<entry>
<id>yt:video:g7m5-auOUDM</id>
<yt:videoId>g7m5-auOUDM</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ Introduction à l'alternative sceptique • Méthode Z #1</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=g7m5-auOUDM"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2021-03-19T16:48:35+00:00</published>
<updated>2021-03-24T15:28:52+00:00</updated>
<media:group>
<media:title>❓ Introduction à l'alternative sceptique • Méthode Z #1</media:title>
<media:content url="https://www.youtube.com/v/g7m5-auOUDM?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/g7m5-auOUDM/hqdefault.jpg" width="480" height="360"/>
<media:description>Les médias traditionnels comme les médias alternatifs déçoivent par leur manque de fiabilité. Et s'il existait une alternative à ces deux sources d'information ?
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
0:00 Intro
0:57 État des lieux
1:58 La troisième alternative, incomprise
3:50 Définition de ce qu'est la communauté sceptique
4:33 Le sceptique idéal
5:30 Les dangers de la méthode populaire
6:08 Les informations contrôlées (illustration)
7:03 Quand on ne connait pas l'autodéfense intellectuelle
7:37 Vrai et faux sceptique ?
8:08 Les sceptiques sur les réseaux sociaux
9:05 Le scepticisme antique
10:44 C'est quoi la communauté sceptique alors ?
11:54 Aucun sceptique n'a raison
12:07 Un peu trop peu
12:59 Ce que ça change dans la vie
13:35 Ce qui intéresse le sceptique idéal
14:19 Outro
E R R A T U M&#13;
&#13;
Jusqu'ici, tout va bien :)&#13;
&#13;
S O U R C E S
Les sources potentiellement contrôlées:
https://en.wikipedia.org/wiki/Warranting_theory
https://journals.sagepub.com/doi/abs/10.1177/0093650215573862
https://doi.org/10.1016/S0306-4573(02)00032-8
Biais et heuristiques
https://fr.wikipedia.org/wiki/Heuristique_de_jugement#Exemples
&#13;
Le scepticisme philosophique
https://fr.wikipedia.org/wiki/Scepticisme_(philosophie)
&#13;
#mrsam144 #methodeZ #zetetique</media:description>
<media:community>
<media:starRating count="3485" average="4.89" min="1" max="5"/>
<media:statistics views="21634"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:2-cGksQf-w8</id>
<yt:videoId>2-cGksQf-w8</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ Comment ce complotiste a-t-il commencé à changer d'avis ? • Le Petit Point d'? - 6 janvier 2021</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=2-cGksQf-w8"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2021-01-06T17:13:32+00:00</published>
<updated>2021-01-11T20:34:58+00:00</updated>
<media:group>
<media:title>❓ Comment ce complotiste a-t-il commencé à changer d'avis ? • Le Petit Point d'? - 6 janvier 2021</media:title>
<media:content url="https://www.youtube.com/v/2-cGksQf-w8?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/2-cGksQf-w8/hqdefault.jpg" width="480" height="360"/>
<media:description>Un fervent partisant de Raoult et de France Soir a amorcé un tournant à 180° suite à une conversation particulière avec Doc Primum. Comment cela a-t-il été rendu possible ?
PENSEZ À ACTIVER LES SOUS-TITRES ZOULOU POUR VOIR LES ÉVENTUELLES CORRECTIONS EN COURS DE VIDÉO !
AIDE ET SOUTIEN
Vous souhaitez faire le point sur votre situation, être soutenu, avoir un avis neutre sur vos engagements ? N'hésitez pas à contacter ces associations, elles existent pour ça.
La véritable honte, c'est de ne pas oser demander de l'aide :
https://www.ccmm.asso.fr/
https://www.gemppi.org/
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
E R R A T U M&#13;
&#13;
La comparaison entre la virulence de l'alternosphère et la bienveillance de la comu sceptique est ici biaisée car asymétrique. La juste comparaison peut se faire plutôt en comparant le moment ou la personne a déclaré avoir changé d'avis à l'alternosphère, face au moment où le lendemain elle prétendait avoir voulu piéger les sceptiques. Dans ce cas un peu plus comparable, effectivement les sceptiques se sont montrés beaucoup moins virulents.
S O U R C E S&#13;
Un résumé par Acermendax:
https://twitter.com/Acermendax/status/1346392488504913921
Doc Primum:
https://www.youtube.com/channel/UC9BnGZLT4iPaJtDOXYwQuHQ
L'entretien épistémique, conférence:
https://www.youtube.com/watch?v=f3RNHlgsGf8
&#13;
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="3797" average="4.71" min="1" max="5"/>
<media:statistics views="46627"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:z_nA-50GVA0</id>
<yt:videoId>z_nA-50GVA0</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❗ Unboxing des vinyles du concert synthwave S-cape pour les 100k abonnés.</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=z_nA-50GVA0"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-12-15T17:57:33+00:00</published>
<updated>2020-12-15T18:23:19+00:00</updated>
<media:group>
<media:title>❗ Unboxing des vinyles du concert synthwave S-cape pour les 100k abonnés.</media:title>
<media:content url="https://www.youtube.com/v/z_nA-50GVA0?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/z_nA-50GVA0/hqdefault.jpg" width="480" height="360"/>
<media:description>Lien vers le live: https://www.youtube.com/watch?v=Fy30ZZGnZWg
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
E R R A T U M&#13;
&#13;
Jusqu'ici, tout va bien :)&#13;
&#13;
S O U R C E S&#13;
&#13;
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="579" average="4.50" min="1" max="5"/>
<media:statistics views="7497"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:U_BRQCtC44M</id>
<yt:videoId>U_BRQCtC44M</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ Bigard, l'interview qui aurait dû déraper comme ça • ON SE TUTO ? #1</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=U_BRQCtC44M"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-12-01T17:31:38+00:00</published>
<updated>2020-12-04T22:12:13+00:00</updated>
<media:group>
<media:title>❓ Bigard, l'interview qui aurait dû déraper comme ça • ON SE TUTO ? #1</media:title>
<media:content url="https://www.youtube.com/v/U_BRQCtC44M?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/U_BRQCtC44M/hqdefault.jpg" width="480" height="360"/>
<media:description>Parodie de l'interview de Jean-Marie Bigard sur France Bleu. Hey Jean-Marie, c'est pas pour vous emmerder, c'est juste parce que j'aurais aimé que les réponses d'en face soient celles-là ;)
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
E R R A T U M&#13;
&#13;
-Selon la méthode de calcul, on obtient les chiffres de JMB ou les miens (ratio infection/mortalité belge: 580.000 infectés pour 16.000 décès), j'ai donc tort de lui dire qu'il se trompe. Tout dépend si on considère les cas infectés depuis le début de la crise, si on exclu les personnes à risque, si on ne compte que les gens testés, etc...
Détails ici : https://ourworldindata.org/mortality-risk-covid
-580.000 infectés ne donne pas 580.000 personnes hospitalisées.
-Galilée a été défendu toute sa vie par le pape Urbain VIII. Cest uniquement quand il a commencé à se moquer publiquement de la hiérarchie ecclésiastique quil a été condamné. Rien à voir avec la Science. Cependant, tout porte à croire que si l'on avait appliqué les critères actuels de la &quot;méthode scientifique&quot; aux travaux de Gallillée sa théorie, qui était pleine d'hypothèses spéculatives et ne contenait au final que peu d'éléments empiriques, n'aurait probablement jamais été prise au sérieux.
En réalité, à son époque, ses thèses sont très loin d'être consensuelles, même au sein des spécialistes de la question, et il faudra de nombreuses années (et de nombreuses découvertes scientifiques) pour qu'elles finissent par être acceptées.
Le mythe d'un Gallilée précurseur (et défenseur) des sciences face à l'obscurantisme religieux ne s'est construit que bien plus tard. Merci à Sapere Aude et Alex Rochegude pour ces précisions.&#13;
&#13;
S O U R C E S&#13;
https://www.francebleu.fr/emissions/dans-le-retro/dans-le-retro-jean-marie-bigard-0
&#13;
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="6761" average="4.40" min="1" max="5"/>
<media:statistics views="64853"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:uah30aSs-GA</id>
<yt:videoId>uah30aSs-GA</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ SCOOP: Ils ont FABRIQUÉ l'opinion publique de toute pièce • Le Petit Point d'? - 27 novembre 2020</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=uah30aSs-GA"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-11-27T16:39:24+00:00</published>
<updated>2020-12-05T14:18:37+00:00</updated>
<media:group>
<media:title>❓ SCOOP: Ils ont FABRIQUÉ l'opinion publique de toute pièce • Le Petit Point d'? - 27 novembre 2020</media:title>
<media:content url="https://www.youtube.com/v/uah30aSs-GA?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/uah30aSs-GA/hqdefault.jpg" width="480" height="360"/>
<media:description>Récit d'une personne qui a réussi à s'infiltrer jusqu'aux plus hautes sphères de la communauté Raoult/Hold-Up/Reinfocovid/BonSens etc...
P O U R B O I R E
Tipeee &amp; autres plateformes (Merci à vous !!!)
http://www.s-cape.biz/mrsam/index.html
https://en.tipeee.com/mrsam
https://www.patreon.com/mrsam
https://www.utip.io/mrsam
http://s-cape.biz/mrsam/btc.html
S U I V R E
https://www.facebook.com/samuelbuisseret/
https://twitter.com/MrSam144
https://www.instagram.com/Mr.Sam144/
E R R A T U M
Jusqu'ici, tout va bien :)
S O U R C E S
Wlad Tepes
https://twitter.com/wladtepes
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="4645" average="4.30" min="1" max="5"/>
<media:statistics views="64237"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:Rkk76tM6OBk</id>
<yt:videoId>Rkk76tM6OBk</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ L'ERREUR fondamentale des JOURNALISTES • Le Petit Point d'? - 13 novembre 2020</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=Rkk76tM6OBk"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-11-13T17:33:03+00:00</published>
<updated>2021-04-01T03:17:25+00:00</updated>
<media:group>
<media:title>❓ L'ERREUR fondamentale des JOURNALISTES • Le Petit Point d'? - 13 novembre 2020</media:title>
<media:content url="https://www.youtube.com/v/Rkk76tM6OBk?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/Rkk76tM6OBk/hqdefault.jpg" width="480" height="360"/>
<media:description>Un documentaire choc, un livre plein de révélations, une vidéo présentant des preuves... Tous contenant le même ingrédient fondamental : des experts. Mais qui a mis ces ingrédients sous les projecteurs en premier ?
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
R E C O M M A N D A T I O N
Hygiène Mentale &quot;Avoir raison pour de mauvaises raisons&quot;
https://www.youtube.com/watch?v=VnbhrwNXry0
E R R A T U M&#13;
&#13;
Le glyphosathe est bien un pesticide, je voulais dire insecticide (rapport aux abeilles tout ça...)
C'est le mot &quot;empire&quot; et non pas &quot;empirique&quot; qui a pour étymologie imperium/impero. Le mot empirique n'a donc pas la même origine qu'empire. &#13;
&#13;
S O U R C E S
HOLD UP DEBUNK
https://captainfact.io/videos/4Y7d
https://docs.google.com/document/d/1UU2Gp_YH4NnJ2tRYPD1-pFli-F7TM1PtO_Ll95J2LQI/edit?fbclid=IwAR1V8r82ozqq-YGs_T1drGW8USeBPfbfeZc75tskbXUjGISXJB6ndSVt5dw
Le bio
https://www.youtube.com/watch?v=2P4Pw1V_ou0
https://docs.google.com/document/d/1CyYikPhQKvjWn1sPIaMuQST4dc8TqEkiOu-nenD5RF8/edit
Sondage IPSOS vaccin
https://www.ipsos.com/en/global-attitudes-covid-19-vaccine-october-2020
Michel Onfray
https://twitter.com/MonsieurPhi/status/1325733310333657089?s=20
L'AFIS
https://www.pseudo-sciences.org/
Le livre Foucard/Horel/Laurens
https://www.pseudo-sciences.org/Le-livre-Les-gardiens-de-la-raison-fausses-affirmations-cherry-picking
https://twitter.com/fmbreon/status/1325013988481052672?s=20
https://blogs.mediapart.fr/yann-kindo/blog/301020/les-gardiens-de-la-deraison
https://www.lemonde.fr/idees/article/2019/04/13/l-affaire-du-levothyrox-illustre-une-confusion-entre-consensus-scientifique-et-consensus-reglementaire_5449630_3232.html
http://www.festivaldeslibertes.be/2019/fase6?event=19021&amp;_Debat__Quest-ce-quun-fait-?-__#19021
https://www.youtube.com/watch?v=pC4ptlfqS5E
Seralini
https://fr.wikipedia.org/wiki/Affaire_S%C3%A9ralini
Louis Fouché
https://twitter.com/Tipuncho/status/1326176991276634115
https://twitter.com/tristanmf/status/1326101311377510400
https://twitter.com/WhatsUpDoc_mag/status/1324630731289743360
Raoult poursuivi:
https://www.leparisien.fr/societe/sante/le-professeur-didier-raoult-poursuivi-par-l-ordre-des-medecins-12-11-2020-8407949.php
9 mois de prédictions correctes sur Raoult:
https://www.youtube.com/watch?v=h18tSEYukqE&amp;list=PLHvR7ldCNjytFrViu2V79qVuiWNjViv_6
Raoult recommande c19study
https://www.youtube.com/watch?v=ngaRgZDENOg
C19study, source de fake:
https://www.newsguardtech.com/fr/coronavirus-misinformation-tracking-center/
https://fr.wikipedia.org/wiki/Discussion:Hydroxychloroquine
https://www.newsguardtech.com/wp-content/uploads/2020/09/CovidAnalysis.pdf
Etymologie du mot empire :
https://fr.m.wiktionary.org/wiki/empire&#13;
&#13;
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="6627" average="4.67" min="1" max="5"/>
<media:statistics views="64842"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:aYJphssoEUE</id>
<yt:videoId>aYJphssoEUE</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓IL FAUT ENSEIGNER LA MÉTHODE SCIENTIFIQUE À L'ÉCOLE • Le Grand Procès de la Science • ép.7</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=aYJphssoEUE"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-11-02T16:57:57+00:00</published>
<updated>2020-11-17T22:11:45+00:00</updated>
<media:group>
<media:title>❓IL FAUT ENSEIGNER LA MÉTHODE SCIENTIFIQUE À L'ÉCOLE • Le Grand Procès de la Science • ép.7</media:title>
<media:content url="https://www.youtube.com/v/aYJphssoEUE?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/aYJphssoEUE/hqdefault.jpg" width="480" height="360"/>
<media:description>LE GRAND PROCÈS DE LA SCIENCE, épisode 7. #LGPScience
Invité: Pleen le Jeune de la chaîne EduKey, abonnez-vous en suivant ce lien: https://www.youtube.com/channel/UC6wF0stG_iXMO4mIXM9g3YQ
REGARDEZ CETTE VIDÉO: https://www.youtube.com/watch?v=6KCGT1cn-E8
L'association Ephiscience et ma boite de prod Sunday Pistols Studio s'associent pour produire une vraie série-documentaire. Mais tout ceci n'est peut-être que la première étape d'un complot gigantesque...
Rendez-vous sur https://edukey.fr avec le code #MRSAM pour participer à une soirée débat EXCLUSIVE à ce code promo, avec des membres de l'équipe, des chercheurs et moi-même !
Offre valable jusqu'au 6 novembre 2020.
R E C O M M A N D A T I O N S
M.Phi - Merci Captain Ad Hoc ! | Grain de philo #23
https://www.youtube.com/watch?v=meNQnNqHjes
M.Phi - La théorie peut-elle réfuter l'expérience ? | Grain de philo #22
https://www.youtube.com/watch?v=SXLHijQeYok
Billes de sciences #0 : David Louapre - La mise en évidence de l'air
https://www.youtube.com/watch?v=Fxfv0Yb37XA
S O U R C E S
Fasce, A., &amp; Picó, A. (2019). Science as a Vaccine: The Relation between Scientific Literacy and Unwarranted Beliefs. Science &amp; Education, 28(12), 109125.
https://doi.org/10.1007/s11191-018-00022-0
Johnson, M., &amp; Pigliucci, M. (2004). Is Knowledge of Science Associated with Higher Skepticism of Pseudoscientific Claims? 10.
Lederman, J., Lederman, N., Bartels, S., Jimenez, J., Akubo, M., Aly, S., Bao, C., Blanquet, E., Blonder, R., Bologna Soares de Andrade, M., Buntting, C., Cakir, M., EL-Deghaidy, H., ElZorkani, A., Gaigher, E., Guo, S., Hakanen, A., Hamed Al-Lal, S., Han-Tosunoglu, C., … Zhou, Q. (2019). An international collaborative investigation of beginning seventh grade students understandings of scientific inquiry: Establishing a baseline. Journal of Research in Science Teaching, 56(4), 486515. https://doi.org/10.1002/tea.21512
Walker, W. R., Hoekstra, S. J., &amp; Vogl, R. J. (2002). Science education is no guarantee of skepticism. Skeptic (Altadena, CA), 9(3), 24-29.
P O U R B O I R E
Tipeee &amp; autres plateformes (Merci à vous !!!)
http://www.s-cape.biz/mrsam/index.html
https://en.tipeee.com/mrsam
https://www.patreon.com/mrsam
https://www.utip.io/mrsam
http://s-cape.biz/mrsam/btc.html
S U I V R E
https://www.facebook.com/samuelbuisseret/
https://twitter.com/MrSam144
https://www.instagram.com/Mr.Sam144/
#LGPScience #edukey #mrsam</media:description>
<media:community>
<media:starRating count="2335" average="4.82" min="1" max="5"/>
<media:statistics views="23670"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:L7QKQT7gfNo</id>
<yt:videoId>L7QKQT7gfNo</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ Qu'est-ce que c'est que ce CIRQUE • Le Petit Point d'? - 30 octobre 2020</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=L7QKQT7gfNo"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-10-30T17:21:58+00:00</published>
<updated>2020-11-24T14:16:35+00:00</updated>
<media:group>
<media:title>❓ Qu'est-ce que c'est que ce CIRQUE • Le Petit Point d'? - 30 octobre 2020</media:title>
<media:content url="https://www.youtube.com/v/L7QKQT7gfNo?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/L7QKQT7gfNo/hqdefault.jpg" width="480" height="360"/>
<media:description>Le bilan du professeur, le point sur un nouveau remède, les avengers du bon sens, pas de doute, #lepetitpoint est de retour et il sort les canines !
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
E R R A T U M&#13;
&#13;
Jusqu'ici, tout va bien :)&#13;
P R O M O
N'oubliez pas d'aller jeter un coup d'oeil au crowdfunding https://edukey.fr ! Un grand projet qui cartonne dont j'ai la chance de faire partie :)
&#13;
S O U R C E S
Le grand bêtisier de Didier Raoult
https://www.youtube.com/watch?v=BvwnuO2Eg0A
Pas de réanimation à l'IHU
https://actu.orange.fr/france/marseille-l-ihu-de-didier-raoult-ne-dispose-pas-de-lits-de-reanimation-pour-les-patients-atteints-d-une-forme-grave-du-covid-19-magic-CNT000001tUzB0.html
Allocution complète de Macron
https://www.youtube.com/watch?v=A5QXbo0a8wQ
Étienne Klein
https://www.youtube.com/watch?v=LOLhjRdK1Pg
À propos de France Soir
https://www.franceinter.fr/emissions/l-edito-m/l-edito-m-21-octobre-2019
Le doigt dans le nez
https://www.sciencesetavenir.fr/sante/question-du-jour-pourquoi-se-cure-t-on-le-nez_28511
Bon sens
https://bonsens.info/
Gérard Guillaume et la seconde vague
https://www.youtube.com/watch?v=9Mi5n2YR7Hs
Martine Wonner
https://www.liberation.fr/france/2020/10/16/la-deputee-martine-wonner-quitte-l-association-bonsens-qu-elle-venait-de-cofonder_1802627
https://www.bfmtv.com/replay-emissions/22h-max/le-choix-de-max-les-affirmations-de-martine-wonner-sur-l-hydroxychloroquine-et-le-masque-sont-erronees-06-10_VN-202010070005.html
https://www.tf1.fr/tmc/quotidien-avec-yann-barthes/videos/quotidien-deuxieme-partie-3-mai-2019.html&#13;
&#13;
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="5721" average="4.73" min="1" max="5"/>
<media:statistics views="53684"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:3B6ITwGcLNA</id>
<yt:videoId>3B6ITwGcLNA</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ VLOG: Éduquer à l'Esprit Critique • Le Petit Point d'? - 9 octobre 2020</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=3B6ITwGcLNA"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-10-09T16:32:35+00:00</published>
<updated>2021-03-29T20:20:04+00:00</updated>
<media:group>
<media:title>❓ VLOG: Éduquer à l'Esprit Critique • Le Petit Point d'? - 9 octobre 2020</media:title>
<media:content url="https://www.youtube.com/v/3B6ITwGcLNA?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/3B6ITwGcLNA/hqdefault.jpg" width="480" height="360"/>
<media:description>L'association Ephiscience et ma boite de prod Sunday Pistols Studio s'associent pour produire une série-documentaire. Mais tout ceci n'est peut-être que la première étape d'un complot gigantesque...
Rendez-vous sur https://edukey.fr avec le code #MRSAM !
Offre valable jusqu'au 16 octobre 2020.
P O U R B O I R E
Tipeee &amp; autres plateformes (Merci à vous !!!)
http://www.s-cape.biz/mrsam/index.html
https://en.tipeee.com/mrsam
https://www.patreon.com/mrsam
https://www.utip.io/mrsam
http://s-cape.biz/mrsam/btc.html
S U I V R E
https://www.facebook.com/samuelbuisseret/
https://twitter.com/MrSam144
https://www.instagram.com/Mr.Sam144/
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="1661" average="4.70" min="1" max="5"/>
<media:statistics views="21521"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:j5jLkW54JlQ</id>
<yt:videoId>j5jLkW54JlQ</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ Une incroyable escroquerie scientifique • Le Petit Point d'? - 28 août 2020</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=j5jLkW54JlQ"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-08-28T15:54:16+00:00</published>
<updated>2020-12-24T00:54:05+00:00</updated>
<media:group>
<media:title>❓ Une incroyable escroquerie scientifique • Le Petit Point d'? - 28 août 2020</media:title>
<media:content url="https://www.youtube.com/v/j5jLkW54JlQ?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/j5jLkW54JlQ/hqdefault.jpg" width="480" height="360"/>
<media:description>Le port du masque, l'escroquerie d'une publication scientifique, un test pour mesurer son honnêteté et des recommandations 3 étoiles.
POUR LA BD DER FALL DES ADLERS:
1: commandez votre exemplaire sur https://www.sundaypistols.be/derfall
2: envoyez vos noms, prénoms, adresse de livraison et le code &quot;#MRSAM&quot; par email à derfall[at]herosenstock.fr (remplacez [at] par @)
RECOMMANDATION &quot;SILENT SPRING&quot;
Partie 1:
https://www.youtube.com/watch?v=J2HfJGB79hQ
Partie 2:
https://www.youtube.com/watch?v=fW9vRgjZXHw
Abonnez-vous à Lablouse, on s'y sent bien !
https://www.youtube.com/channel/UCZnVzAaoJu37Tkz6YJn4EUQ
P O U R B O I R E
Tipeee &amp; autres plateformes (Merci à vous !!!)
http://www.s-cape.biz/mrsam/index.html
https://en.tipeee.com/mrsam
https://www.patreon.com/mrsam
https://www.utip.io/mrsam
http://s-cape.biz/mrsam/btc.html
S U I V R E
https://www.facebook.com/samuelbuisseret/
https://twitter.com/MrSam144
https://www.instagram.com/Mr.Sam144/
E R R A T U M
Bien qu'il soit également un virus à ARN, le sarscov2 n'est pas un rétrovirus. Mais rien ne garantit pour autant qu'un vaccin sera trouvé très prochainement.
S O U R C E S
Etude sur le masque (merci les Vaxxeuses !)
https://pubmed.ncbi.nlm.nih.gov/32663849/
https://jamanetwork.com/journals/jama/fullarticle/2768533
https://pubmed.ncbi.nlm.nih.gov/32576336/
Un médecin teste l'oxygénation à travers le masque
https://lactualite.com/sante-et-science/donnez-moi-de-loxygene-2/
Éternuement en slow motion
https://www.youtube.com/watch?v=N-gZSKV9koQ
L'étude de Violaine Guérin publié dans l'AJMH
https://www.journalajmah.com/index.php/AJMAH/article/view/30224
L'historique de l'étude du groupe &quot;laissons les vendeurs de trottinette prescrire&quot;
http://www.mimiryudo.com/blog/2020/08/le-meilleur-article-de-tous-les-temps/
La publication factice en français:
http://www.mimiryudo.com/blog/wp-content/uploads/2020/08/test.pdf
L'article anti-protocole Raoult de Futura Science
https://www.futura-sciences.com/sante/actualites/coronavirus-fin-partie-chloroquine-80151/
L'article pro-protocole Raoult de France Soir
http://www.francesoir.fr/opinions-entretiens/interview-exclusive-une-etude-italienne-sur-3-451-patients-confirme-lefficacite
L'épistémologie selon Raoult analysée par Florian Cova
https://medium.com/@florian.cova/l%C3%A9pist%C3%A9mologie-opportuniste-de-didier-raoult-7359ec4a3006
Version augmentée par la Tronche en Biais:
https://menace-theoriste.fr/lepistemologie-opportuniste-de-didier-raoult/
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="4214" average="4.45" min="1" max="5"/>
<media:statistics views="50722"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:thSR2fQLmEA</id>
<yt:videoId>thSR2fQLmEA</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ Voici la pépite de l'été • Le Petit Point d'? - 6 août 2020</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=thSR2fQLmEA"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-08-06T15:47:18+00:00</published>
<updated>2020-12-22T23:27:36+00:00</updated>
<media:group>
<media:title>❓ Voici la pépite de l'été • Le Petit Point d'? - 6 août 2020</media:title>
<media:content url="https://www.youtube.com/v/thSR2fQLmEA?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/thSR2fQLmEA/hqdefault.jpg" width="480" height="360"/>
<media:description>Étienne Klein, qu'on ne présente plus (rassurez-moi, vous connaissez ?), nous gratifie de son premier ...oserais-je dire pamphlet ? 100% zététique, sans jamais le dire (et probablement sans jamais avoir eu l'intention de se rattacher à ce terme en souffrance il faut bien le dire). Le tube de l'été est un tract de 60 pages mesdames et messieurs.
Acheter &quot;LE GOÛT DU VRAI&quot; :
http://www.gallimard.fr/Catalogue/GALLIMARD/Tracts/Le-gout-du-vrai
https://www.amazon.fr/go%C3%BBt-du-vrai-%C3%89tienne-Klein/dp/2072916712
https://livre.fnac.com/a14857494/Etienne-Klein-Le-gout-du-vrai
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
E R R A T U M&#13;
&#13;
Jusqu'ici, tout va bien :)&#13;
&#13;
S O U R C E S
La conférence &quot;Comment faire comprendre à quelqu'un qu'il a tort...&quot;
https://www.youtube.com/watch?v=f3RNHlgsGf8
Le live de la Tronche en Biais (et non pas Primum)
https://www.youtube.com/watch?v=a6oW35QKC-Q
Le groupe Facebook pour le jeu vidéo:
https://www.facebook.com/groups/309123867103253/&#13;
&#13;
#mrsam144 #lepetitpoint #zetetique</media:description>
<media:community>
<media:starRating count="3143" average="4.70" min="1" max="5"/>
<media:statistics views="37380"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:RTsySAeTgEs</id>
<yt:videoId>RTsySAeTgEs</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❓ VLOG : Votre job d'été + actu de la chaîne • Le Petit Point d'? - 31 juillet 2020</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=RTsySAeTgEs"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-07-31T15:05:36+00:00</published>
<updated>2021-03-27T03:03:10+00:00</updated>
<media:group>
<media:title>❓ VLOG : Votre job d'été + actu de la chaîne • Le Petit Point d'? - 31 juillet 2020</media:title>
<media:content url="https://www.youtube.com/v/RTsySAeTgEs?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/RTsySAeTgEs/hqdefault.jpg" width="480" height="360"/>
<media:description>Le job d'été le plus geek du monde:
Rejoignez-nous pour créer les stages d'un jeu vidéo sur Nintendo NES ! Dead line: 15 septembre 2020 !
LA VIDÉO TUTORIEL (et tous les liens dans sa description)
https://www.youtube.com/watch?v=-AXmJQr39bg
LA DÉMO DU JEU NES
http://www.saturdayman.be
Les vinyles sont toujours en vente ici
https://www.sundaypistols.be/?post_type=product
Et on peut écouter ce que c'est ici
https://www.youtube.com/watch?v=Fy30ZZGnZWg
P O U R B O I R E&#13;
Tipeee &amp; autres plateformes (Merci à vous !!!) &#13;
http://www.s-cape.biz/mrsam/index.html&#13;
https://en.tipeee.com/mrsam&#13;
https://www.patreon.com/mrsam&#13;
https://www.utip.io/mrsam&#13;
http://s-cape.biz/mrsam/btc.html&#13;
&#13;
S U I V R E&#13;
https://www.facebook.com/samuelbuisseret/&#13;
https://twitter.com/MrSam144&#13;
https://www.instagram.com/Mr.Sam144/&#13;
&#13;
#mrsam144 #lepetitpoint #geek</media:description>
<media:community>
<media:starRating count="1477" average="4.62" min="1" max="5"/>
<media:statistics views="15627"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:912_rNE1xmc</id>
<yt:videoId>912_rNE1xmc</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>❗Petit live entre amis 0% zététique autour de Final Fantasy 7R • LIVE!</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=912_rNE1xmc"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-07-07T20:33:04+00:00</published>
<updated>2021-03-28T12:43:56+00:00</updated>
<media:group>
<media:title>❗Petit live entre amis 0% zététique autour de Final Fantasy 7R • LIVE!</media:title>
<media:content url="https://www.youtube.com/v/912_rNE1xmc?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/912_rNE1xmc/hqdefault.jpg" width="480" height="360"/>
<media:description>Sans aucune autre prétention que l'envie de partager leur passion pour ce grand jeu vidéo qu'est Final Fantasy VII et son remake, Primum Non Nocere et Mr.Sam vous invite à une soirée détente entre ami•e•s.
Ce n'est ni pour les vues, ni pour les pourboires, ni pour quoi que ce soit d'autre que le plaisir d'avoir une simple discussion de comptoir autour d'une passion commune. Assoiffés d'érudition scientifique s'abstenir !
P O U R B O I R E
Tipeee &amp; autres plateformes (Merci à vous !!!)
http://www.s-cape.biz/mrsam/index.html
https://en.tipeee.com/mrsam
https://www.patreon.com/mrsam
https://www.utip.io/mrsam
http://s-cape.biz/mrsam/btc.html
S U I V R E
https://www.facebook.com/samuelbuisseret/
https://twitter.com/MrSam144
https://www.instagram.com/Mr.Sam144/
#mrsam144 #primumnonnocere #ff7</media:description>
<media:community>
<media:starRating count="466" average="3.92" min="1" max="5"/>
<media:statistics views="12104"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:zYbQFDJOH6Y</id>
<yt:videoId>zYbQFDJOH6Y</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>⏪ OPINION OU FAIT ? • vprq #9</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=zYbQFDJOH6Y"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-06-26T11:48:09+00:00</published>
<updated>2021-03-31T23:09:40+00:00</updated>
<media:group>
<media:title>⏪ OPINION OU FAIT ? • vprq #9</media:title>
<media:content url="https://www.youtube.com/v/zYbQFDJOH6Y?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/zYbQFDJOH6Y/hqdefault.jpg" width="480" height="360"/>
<media:description>Comment faire la différence entre une opinion et un fait ?
Pourquoi la vérité échappe-t-elle à nos sens ?
Extrait de Fake 11.1
https://www.youtube.com/watch?v=U44YkyQ51pw
P O U R B O I R E
Tipeee &amp; autres plateformes (Merci à vous !!!)
http://www.s-cape.biz/mrsam/index.html
https://en.tipeee.com/mrsam
https://www.patreon.com/mrsam
https://www.utip.io/mrsam
http://s-cape.biz/mrsam/btc.html
S U I V R E
https://www.facebook.com/samuelbuisseret/
https://twitter.com/MrSam144
https://www.instagram.com/Mr.Sam144/
E R R A T U M
Jusqu'ici, tout va bien :)
S O U R C E S
Veuillez consulter les sources de la vidéo d'origine:
https://www.youtube.com/watch?v=U44YkyQ51pw
Mr.Sam est membre du https://www.cafe-sciences.org/ et du https://comitepara.be/
#mrsam144 #vprq #zetetique</media:description>
<media:community>
<media:starRating count="2054" average="4.65" min="1" max="5"/>
<media:statistics views="23914"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:fA_re7PdERI</id>
<yt:videoId>fA_re7PdERI</yt:videoId>
<yt:channelId>UCh2YBKhYIy-_LtfCIn2Jycg</yt:channelId>
<title>⏪ LES ARGUMENTS CYCLIQUES - vprq #8</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=fA_re7PdERI"/>
<author>
<name>Mr. Sam - Point d'interrogation</name>
<uri>https://www.youtube.com/channel/UCh2YBKhYIy-_LtfCIn2Jycg</uri>
</author>
<published>2020-06-26T11:48:05+00:00</published>
<updated>2021-03-30T05:57:27+00:00</updated>
<media:group>
<media:title>⏪ LES ARGUMENTS CYCLIQUES - vprq #8</media:title>
<media:content url="https://www.youtube.com/v/fA_re7PdERI?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/fA_re7PdERI/hqdefault.jpg" width="480" height="360"/>
<media:description>Une des illusions logiques les plus dangereuses !
Extrait de Fake 11.2
https://www.youtube.com/watch?v=7N0e3loWeZQ
P O U R B O I R E
Tipeee &amp; autres plateformes (Merci à vous !!!)
http://www.s-cape.biz/mrsam/index.html
https://en.tipeee.com/mrsam
https://www.patreon.com/mrsam
https://www.utip.io/mrsam
http://s-cape.biz/mrsam/btc.html
S U I V R E
https://www.facebook.com/samuelbuisseret/
https://twitter.com/MrSam144
https://www.instagram.com/Mr.Sam144/
E R R A T U M
Jusqu'ici, tout va bien :)
S O U R C E S
Veuillez consulter les sources de la vidéo d'origine:
https://www.youtube.com/watch?v=7N0e3loWeZQ
Mr.Sam est membre du https://www.cafe-sciences.org/ et du https://comitepara.be/
#mrsam144 #vprq #zetetique</media:description>
<media:community>
<media:starRating count="1607" average="4.72" min="1" max="5"/>
<media:statistics views="17377"/>
</media:community>
</media:group>
</entry>
</feed>

View File

@ -0,0 +1,68 @@
[
{
"address": "https://www.youtube.com/feeds/videos.xml?channel_id=UCOuIgj0CYCXCvjWywjDbauw",
"customfields": { "media:group": ["media:group"] },
"lastEntriesLinks": [
"https://www.youtube.com/watch?v=CCnXUShhmEc",
"https://www.youtube.com/watch?v=aLcfWq7t6Cw",
"https://www.youtube.com/watch?v=hOWB7o6XUSU",
"https://www.youtube.com/watch?v=xhxok5nZsVI",
"https://www.youtube.com/watch?v=y1d12A0C9tQ",
"https://www.youtube.com/watch?v=AoFa59UUf-U",
"https://www.youtube.com/watch?v=3SYC3IqKm5U",
"https://www.youtube.com/watch?v=Aox6YjA7ytA",
"https://www.youtube.com/watch?v=i330LQsGfMg",
"https://www.youtube.com/watch?v=ig395FC2e3c",
"https://www.youtube.com/watch?v=NCHYDtA60-g",
"https://www.youtube.com/watch?v=z_cACapt3Hc",
"https://www.youtube.com/watch?v=B9noooyh9Dk",
"https://www.youtube.com/watch?v=sav3Mbe0_DM",
"https://www.youtube.com/watch?v=paQzJCfo6Rw"
],
"timeloop": 10
},
{
"address": "https://www.youtube.com/feeds/videos.xml?channel_id=UCh2YBKhYIy-_LtfCIn2Jycg",
"customfields": { "media:group": ["media:group"] },
"lastEntriesLinks": [
"https://www.youtube.com/watch?v=g7m5-auOUDM",
"https://www.youtube.com/watch?v=2-cGksQf-w8",
"https://www.youtube.com/watch?v=z_nA-50GVA0",
"https://www.youtube.com/watch?v=U_BRQCtC44M",
"https://www.youtube.com/watch?v=uah30aSs-GA",
"https://www.youtube.com/watch?v=Rkk76tM6OBk",
"https://www.youtube.com/watch?v=aYJphssoEUE",
"https://www.youtube.com/watch?v=L7QKQT7gfNo",
"https://www.youtube.com/watch?v=3B6ITwGcLNA",
"https://www.youtube.com/watch?v=j5jLkW54JlQ",
"https://www.youtube.com/watch?v=thSR2fQLmEA",
"https://www.youtube.com/watch?v=RTsySAeTgEs",
"https://www.youtube.com/watch?v=912_rNE1xmc",
"https://www.youtube.com/watch?v=zYbQFDJOH6Y",
"https://www.youtube.com/watch?v=fA_re7PdERI"
],
"timeloop": 20
},
{
"address": "https://www.youtube.com/feeds/videos.xml?channel_id=UCY7klexd1qEqxgqYK6W7BVQ",
"customfields": { "media:group": ["media:group"] },
"lastEntriesLinks": [
"https://www.youtube.com/watch?v=OYDEiQTAIj8",
"https://www.youtube.com/watch?v=6TcnLd0faXk",
"https://www.youtube.com/watch?v=NsakaSVsK-I",
"https://www.youtube.com/watch?v=DR5NOWmyuI8",
"https://www.youtube.com/watch?v=ttyVnyi1mRY",
"https://www.youtube.com/watch?v=t97DRTZcPYo",
"https://www.youtube.com/watch?v=BtLBSlbv6Rk",
"https://www.youtube.com/watch?v=RhUiF90_r88",
"https://www.youtube.com/watch?v=G-Yh1ENtnLo",
"https://www.youtube.com/watch?v=rHblzce7TSs",
"https://www.youtube.com/watch?v=t8e-784eUHI",
"https://www.youtube.com/watch?v=QPsP0A-Iu1w",
"https://www.youtube.com/watch?v=0AXRQmA978k",
"https://www.youtube.com/watch?v=wdl8D9SUnq8",
"https://www.youtube.com/watch?v=X19KrvmOcRM"
],
"timeloop": 30
}
]

View File

@ -0,0 +1,20 @@
[
{
"address": "https://www.youtube.com/feeds/videos.xml?channel_id=UCOuIgj0CYCXCvjWywjDbauw",
"customfields": { "media:group": ["media:group"] },
"lastEntriesLinks": [],
"timeloop": 10
},
{
"address": "https://www.youtube.com/feeds/videos.xml?channel_id=UCh2YBKhYIy-_LtfCIn2Jycg",
"customfields": { "media:group": ["media:group"] },
"lastEntriesLinks": [],
"timeloop": 20
},
{
"address": "https://www.youtube.com/feeds/videos.xml?channel_id=UCY7klexd1qEqxgqYK6W7BVQ",
"customfields": { "media:group": ["media:group"] },
"lastEntriesLinks": [],
"timeloop": 30
}
]

170
tests/index-spec.ts Normal file
View File

@ -0,0 +1,170 @@
// external lib
import { ListenerRss, ListenerRSSInfos } from "listener-rss";
// local lib
import { ManageListener } from "../";
// Unit test
import path from "path";
import events from "events";
import nock from "nock";
import * as chai from "chai";
import sinon from "ts-sinon";
import sinonChai from "sinon-chai";
chai.use(sinonChai);
const expect = chai.expect;
const premakeInfo: ListenerRSSInfos[] = [
{
address:
"https://www.youtube.com/feeds/videos.xml?channel_id=UCOuIgj0CYCXCvjWywjDbauw",
timeloop: 10,
customfields: {
"media:group": ["media:group"],
},
},
{
address:
"https://www.youtube.com/feeds/videos.xml?channel_id=UCh2YBKhYIy-_LtfCIn2Jycg",
timeloop: 20,
customfields: {
"media:group": ["media:group"],
},
},
{
address:
"https://www.youtube.com/feeds/videos.xml?channel_id=UCY7klexd1qEqxgqYK6W7BVQ",
timeloop: 30,
customfields: { "media:group": ["media:group"] },
},
];
describe("test class GestionListener", function () {
describe("test constructor", function () {
it("should create a new manageListener object without params", function () {
// when
const ml = new ManageListener();
// expect
expect(ml.listenerArray).to.be.empty;
});
it("should create a new manageListener object with a param file", function () {
// given
const tmp = require("./RessourcesTest/FakeRessources/save.json");
// when
const ml = new ManageListener({
path: "tests/RessourcesTest/FakeRessources/save.json",
});
// expect
expect(tmp).to.be.eql(ml.listenerArray.map((item) => item.getProperty()));
});
});
describe("test saving", function () {
beforeEach("Clean old files if exist", function () {
const fs = require("fs");
if (fs.existsSync("tests/RessourcesTest/FakeRessources/fake_save.json"))
fs.unlinkSync("tests/RessourcesTest/FakeRessources/fake_save.json");
});
afterEach("Clean old files if exist", function () {
const fs = require("fs");
if (fs.existsSync("tests/RessourcesTest/FakeRessources/fake_save.json"))
fs.unlinkSync("tests/RessourcesTest/FakeRessources/fake_save.json");
});
it("should save the inserted objects", function (): void {
// given
const ml = new ManageListener();
let expectedObj: ListenerRss[] = [];
for (let i = 1; i < 10; i++) {
const generatedInfo = {
address: `fake.rss.service.${i}`,
customfields: {
"media:group": ["media:group"],
},
timeloop: i * 10,
};
expectedObj.push(new ListenerRss(generatedInfo));
ml.addNewListener(generatedInfo);
}
// when
ml.save("tests/RessourcesTest/FakeRessources/fake_save.json");
const tmp = require("./RessourcesTest/FakeRessources/save.json");
// expect
expect(expectedObj.map((item) => item.getProperty())).to.be.eql(tmp);
});
});
describe("test events", function () {
beforeEach(function () {
nock.disableNetConnect();
});
afterEach(function () {
nock.cleanAll();
});
it.skip("should call correctly the events (no aggregation)", async function () {
// given
const clock = sinon.useFakeTimers();
const ml = new ManageListener({
path: "tests/RessourcesTest/RealRessources/save_no_history.json",
});
const fileConfig = require("./RessourcesTest/RealRessources/save_no_history.json");
const spy = sinon.spy();
const tabChannelId = [
"UCOuIgj0CYCXCvjWywjDbauw",
"UCh2YBKhYIy-_LtfCIn2Jycg",
"UCY7klexd1qEqxgqYK6W7BVQ",
];
ml.on("update", spy);
fileConfig.forEach((_: any, i: number) => {
nock("https://www.youtube.com")
.get(`/feeds/videos.xml?channel_id=${tabChannelId[i]}`)
.replyWithFile(
200,
path.join(
__dirname,
`RessourcesTest/RealRessources/${tabChannelId[i]}.rss`
),
{ "content-type": "text/xml", charset: "utf-8" }
);
});
// when
ml.startAll();
await events.once(ml, "update");
//expect
expect(spy).to.have.been.calledThrice;
console.log("first assertion pass");
// given
spy.resetHistory();
// when
await clock.tickAsync(10000);
await events.once(ml, "update");
ml.stopAll();
//expect
// expect(spy).to.have.been.calledOnce;
});
it("should call correctly the events with a new entry (no aggregation)", function () {});
});
});

7
tests/tsconfig.json Normal file
View File

@ -0,0 +1,7 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true
}
}