*** [[Yann Jeantet]] et [[Mélina Dessoles]] : -> Le terrorisme c'est vouloir, par son action, terroriser la population civile à des fins politiques. Forma específica de violencia política cuyo objetivo es atemorizar a una comunidad entera para conseguir fines políticos. El terrorismo se distingue de otras formas de violencia por su impacto psicológico sobre la población Definition of US -> premeditated politically motivated [[violence]], perpetrated against non-combattants targets by sub-national groups or clandestine agents[^1], usually intended to influence an audience [[Global terrorism Database]] -> The threatened or actual use of illegal force and violence by non-state actors to attain a political, economic, religious or social goal through fear coercion or intimidation however the [[concept]] of terrorism isn't neutral because it is a "[[thick concept]]" it is used by states in order to delegitimize violence that challenge their [[État wéberien|monopoly on legitimate force]] Data bases record a lot of attack in Middle East but not a lot in Africa It explain why there are mainly non-state groups that attack states Some person such as [[Alan Krueger]] want to avoid the world terrorism and use a more neutral term such as *politically motivated violence* Les États-unis établissent une liste d'[[États voyous]] accusés de soutenir le terrorisme Le terrorisme est l'arme préférée des [[État]]s et des groupes armés. En 2001, les États-Unis connaissent les attentats le plus emblématique : [[attentats du 11 septembre 2001]] [[George W. Bush]] déclare alors la [[guerre contre le terrorisme]] A common discourse is that [[Islamisme|islamist]] terrorists hate americans because of their freedom and their ideology However, [[Oussama Ben Laden]] said that it was just a matter of revenge. Same discourse from [[Salah Abdeslam]] in 2021. In very most cases the campaign of strikes began before the terrorist attacks Being involve in a campaign change the level of attacks **So it has a positive correlation between strikes and attacks** [[DÉMOCRATIE|Democracies]] have a slightly higher probability to be targeted by terrorist attacks. *The more attention you give to terrorist attack, the more you have chances of being targeted* ## Notes de bas de page ```dataviewjs // === DONNÉES === const page = dv.current(); const file = page.file; const outlinks = file.outlinks.length; const inlinks = file.inlinks.length; const qualite = Math.max(0, Math.min(100, page["qualité"] ?? 0)); // === CALCUL PROGRESSION (0–100) === const max_links = 30; const s_out = Math.min(outlinks / max_links, 1) * 40; const s_in = Math.min(inlinks / max_links, 1) * 30; const s_qual = qualite * 0.3; const total = Math.round(s_out + s_in + s_qual); // === ICÔNES === const iconEmoji = total <= 25 ? "🌱" : total <= 50 ? "🌿" : total <= 75 ? "🌳" : "🦚"; const iconLabel = total <= 25 ? "🌱 Graine" : total <= 50 ? "🌿 Jeune pousse" : total <= 75 ? "🌳 Arbre mature" : "🦚 Forêt"; // === MISE À JOUR YAML SANS CRÉER DE NOUVELLES CLÉS === const tfile = app.workspace.getActiveFile(); const cache = app.metadataCache.getFileCache(tfile); // 1. Si pas de frontmatter → on ne touche à rien if (cache?.frontmatter) { await app.fileManager.processFrontMatter(tfile, fm => { // 2. On met à jour seulement si la propriété existe déjà if (Object.prototype.hasOwnProperty.call(fm, "progression")) { fm.progression = total; } if (Object.prototype.hasOwnProperty.call(fm, "icon")) { fm.icon = iconEmoji; } }); } // === AFFICHAGE === dv.table( ["Liens sortants", "Liens entrants", "Qualité", "Progression"], [[outlinks, inlinks, `${qualite}/100`, `${iconLabel} — ${total}/100`]] ); ``` [^1]: [[rebel groups]]